2020-01-03 13:39:36 +00:00
|
|
|
/* Show bookmarks toolbar only when cursor is on top of toolbar area or urlbar is focused */
|
2019-05-31 21:14:17 +00:00
|
|
|
|
2019-05-31 21:22:40 +00:00
|
|
|
#PersonalToolbar:not([customizing]){
|
2019-05-31 21:14:17 +00:00
|
|
|
margin-bottom: -22px;
|
|
|
|
transform: rotateX(90deg);
|
|
|
|
transform-origin: top;
|
|
|
|
transition: transform 135ms linear 48ms !important;
|
2019-11-14 15:48:20 +00:00
|
|
|
z-index: 1;
|
2019-05-31 21:14:17 +00:00
|
|
|
}
|
2019-11-11 15:23:33 +00:00
|
|
|
:root[uidensity="compact"] #navigator-toolbox > #PersonalToolbar:not([customizing]){ margin-bottom: -20px }
|
|
|
|
:root[uidensity="touch"] #navigator-toolbox > #PersonalToolbar:not([customizing]){ margin-bottom: -26px }
|
2019-05-31 21:14:17 +00:00
|
|
|
|
2020-01-03 13:39:36 +00:00
|
|
|
/* SELECT BOOKMARKS TOOLBAR BEHAVIOR */
|
|
|
|
/* Comment out to disable either one of these */
|
|
|
|
|
|
|
|
#nav-bar:focus-within + #PersonalToolbar, /* Show when urlbar is focused */
|
|
|
|
#navigator-toolbox:hover > #PersonalToolbar /* Show when cursor is over the toolbar area */
|
|
|
|
{ transform: rotateX(0) }
|