Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions themes/ea1a5ace-f698-4b45-ab88-6e8bd3a563f0/chrome.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ menuitem.bookmark-item[label*="github"] .menu-icon {

/* Only apply hiding when bookmarks toolbar is actually enabled */
#PersonalToolbar:not([collapsed]):not([customizing]) {
height: 4px !important;
min-height: 4px !important;
margin-bottom: -4px !important;
overflow: visible !important;
position: relative;
margin-bottom: calc(0px - var(--urlbar-min-height));
transform: rotateX(90deg) !important;
Expand All @@ -120,6 +124,18 @@ menuitem.bookmark-item[label*="github"] .menu-icon {
@media (-moz-bool-pref: "uc.bookmarks.expand-on-hover") {
#zen-appcontent-navbar-container:hover #PersonalToolbar:not([collapsed]) {
transform: rotateX(0deg) !important;
/* position: absolute to float over webpage without pushing layout */
position: absolute !important;
height: unset !important;
min-height: unset !important;
margin-bottom: 0px !important;
width: 100% !important;
}

/* Constrain width so overflow chevron appears correctly */
#zen-appcontent-navbar-container:hover #PlacesToolbarItems {
max-width: 100% !important;
overflow: hidden !important;
}
}

Expand Down