Expands the sidebar folder tree view to unlimited height. Simple but extremely useful.
dropbox.com - Unrestricted tree view height by denilsonsa
Details
Authordenilsonsa
LicensePublic Domain
Categorydropbox
Created
Updated
Size619 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name dropbox.com - Unrestricted tree view height
@namespace github.com/openstyles/stylus
@version 1.1.0
@description Expands the sidebar folder tree view to unlimited height at the sidebar.
@author Denilson
==/UserStyle== */
@-moz-document domain("dropbox.com") {
/* Outer panel, the whole sidebar. It's child of .maestro-nav__container */
html div[class^="_navPanel_"] {
overflow-y: auto;
}
/* Folders sub-panel, child of _navPanel_ */
html div[class^="_navPanel_"] div[class^="_navFolderExplorer_"] {
overflow-y: visible;
}
}