mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
76 lines
No EOL
2.5 KiB
CSS
76 lines
No EOL
2.5 KiB
CSS
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/vertical_bookmarks_toolbar.css made available under Mozilla Public License v. 2.0
|
|
See the above repository for updates as well as full license text. */
|
|
|
|
/* Makes bookmarks toolbar appear vertically at the left side of the window */
|
|
|
|
@-moz-document url(chrome://browser/content/browser.xhtml){
|
|
|
|
:root:not([inDOMFullscreen]){
|
|
--uc-vertical-toolbar-width: 60px;
|
|
}
|
|
#navigator-toolbox{ position: relative }
|
|
#PersonalToolbar{
|
|
position: absolute;
|
|
display: flex;
|
|
flex-direction: column;
|
|
top: 100%;
|
|
left: 0;
|
|
width: var(--uc-vertical-toolbar-width,0);
|
|
min-width: unset !important;
|
|
/* These create a empty area to the bottom of the toolbar, which is to mask a fact that we don't know exactly how high the toolbar should be */
|
|
height: 100vh;
|
|
max-height: 100vh !important;
|
|
padding-bottom: 120px !important;
|
|
}
|
|
#PersonalToolbar #PlacesChevron{
|
|
display: none;
|
|
}
|
|
#PersonalToolbar > #personal-bookmarks{
|
|
overflow-y: auto;
|
|
scrollbar-width: none;
|
|
height: 100vh;
|
|
}
|
|
|
|
#PlacesToolbar,
|
|
#PlacesToolbarDropIndicatorHolder{
|
|
-moz-box-orient: vertical !important; /* Can be removed with Firefox 112 */
|
|
}
|
|
|
|
#PersonalToolbar #PlacesToolbarItems{
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-y: auto;
|
|
scrollbar-width: none;
|
|
}
|
|
#PersonalToolbar #PlacesToolbarItems > toolbarseparator{
|
|
height: 7px;
|
|
background-color: currentColor;
|
|
background-clip: padding-box;
|
|
border-block: 3px solid transparent !important;
|
|
}
|
|
#PersonalToolbar .toolbarbutton-1{ padding-block: 10px !important }
|
|
#PersonalToolbar #PlacesToolbarItems > .bookmark-item{
|
|
padding-block: 4px !important;
|
|
margin-inline: 0 !important;
|
|
}
|
|
|
|
#browser,
|
|
#browser-bottombox,
|
|
#main-window > body::after, /* This selector is for compatibility with tabs_below_content.css */
|
|
#customization-container{
|
|
margin-left: var(--uc-vertical-toolbar-width,0);
|
|
}
|
|
:root:is([chromehidden~="toolbar"],[sizemode="fullscreen"]) > body > #browser,
|
|
:root:is([chromehidden~="toolbar"],[sizemode="fullscreen"]) > body > #browser-bottombox,
|
|
#main-window:is([chromehidden~="toolbar"],[sizemode="fullscreen"]) > body::after,
|
|
:root:is([chromehidden~="toolbar"],[sizemode="fullscreen"]) > body > #customization-container{
|
|
margin-left: 0;
|
|
}
|
|
/* Workaround for Firefox > 112 */
|
|
/*
|
|
#PersonalToolbar #PlacesToolbarItems{
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical !important;
|
|
}
|
|
*/
|
|
} |