mobile-config-firefox/chrome/autohide_bookmarks_toolbar.css

47 lines
1.7 KiB
CSS
Raw Normal View History

2020-05-22 07:13:58 +02:00
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/autohide_bookmarks_toolbar.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
#PersonalToolbar{
--uc-bm-height: 20px; /* Might need to adjust if the toolbar has other buttons */
--uc-bm-padding: 2px; /* Vertical padding to be applied to bookmarks */
2020-07-06 19:29:51 +02:00
--uc-autohide-toolbar-delay: 600ms; /* The toolbar is hidden after 0.6s */
}
:root[uidensity="compact"] #PersonalToolbar{ --uc-bm-padding: 1px }
:root[uidensity="touch"] #PersonalToolbar{ --uc-bm-padding: 6px }
2019-05-31 23:14:17 +02:00
2019-05-31 23:22:40 +02:00
#PersonalToolbar:not([customizing]){
2020-07-06 19:29:51 +02:00
position: relative;
margin-bottom: calc(0px - var(--uc-bm-height) - 2 * var(--uc-bm-padding));
transform: rotateX(90deg);
transform-origin: top;
2020-07-06 19:29:51 +02:00
transition: transform 135ms linear var(--uc-autohide-toolbar-delay) !important;
z-index: 1;
2019-05-31 23:14:17 +02:00
}
#PlacesToolbarItems > .bookmark-item{ padding-block: var(--uc-bm-padding) !important; }
2019-05-31 23:14:17 +02:00
/* SELECT BOOKMARKS TOOLBAR BEHAVIOR */
2020-01-08 22:51:11 +01:00
/* Comment out or delete either one of these to disable that behavior */
2020-01-08 22:51:11 +01:00
/* Show when urlbar is focused */
#nav-bar:focus-within + #PersonalToolbar{
transition-delay: 100ms !important;
transform: rotateX(0);
}
2020-01-08 22:51:11 +01:00
/* Show when cursor is over the toolbar area */
#navigator-toolbox:hover > #PersonalToolbar{
transition-delay: 100ms !important;
transform: rotateX(0);
}
/* Uncomment to enable compatibility for multi-row_bookmarks.css */
/* This would break buttons placed in the toolbar but that is likely not happening if you are using multi-row setup */
/*
#PersonalToolbar:not([customizing]){
position: fixed;
display: block;
margin-bottom: 0px !important;
}
*/