2020-05-22 05:13:58 +00:00
|
|
|
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/multi-row_bookmarks.css made available under Mozilla Public License v. 2.0
|
|
|
|
See the above repository for updates as well as full license text. */
|
|
|
|
|
2019-04-30 17:20:47 +00:00
|
|
|
/* Makes bookmarks toolbar span multiple rows */
|
|
|
|
|
|
|
|
#PersonalToolbar{
|
|
|
|
--multirow-bmb-n-rows: 3; /* Control how many rows are shown before scrolling */
|
|
|
|
--multirow-bmb-row-margin: 2px; /* Control how much spacing is between rows */
|
|
|
|
max-height: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#PlacesToolbar > hbox{
|
|
|
|
display: block;
|
|
|
|
width: 100vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
#PlacesToolbarItems{
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2020-01-18 20:04:18 +00:00
|
|
|
/* --uc-bm-padding is defined in autohide_bookmarks_toolbar.css */
|
2021-03-21 08:53:44 +00:00
|
|
|
max-height: calc(var(--multirow-bmb-n-rows) * (5px + 1em + (2 * (var(--multirow-bmb-row-margin) + var(--uc-bm-padding,4px))))) !important;
|
2019-04-30 17:20:47 +00:00
|
|
|
overflow-y:auto;
|
|
|
|
scrollbar-color: var(--lwt-accent-color) var(--toolbar-bgcolor) ;
|
|
|
|
scrollbar-width: thin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hide the all-bookmarks button */
|
|
|
|
#PlacesChevron{ display: none }
|
|
|
|
|
|
|
|
/* Add some spacing between rows */
|
|
|
|
#PlacesToolbarItems > .bookmark-item{ margin: var(--multirow-bmb-row-margin) 3px !important; }
|