2021-11-28 13:17:56 +00:00
|
|
|
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/urlbar_info_icons_on_hover.css made available under Mozilla Public License v. 2.0
|
|
|
|
See the above repository for updates as well as full license text. */
|
|
|
|
|
2021-11-28 13:20:35 +00:00
|
|
|
/* Hides info icons (except remote control icon) on the left side of urlbar and shows them when urlbar is hovered. */
|
2021-11-28 13:17:56 +00:00
|
|
|
|
|
|
|
#urlbar-search-button,
|
|
|
|
#tracking-protection-icon-container,
|
|
|
|
#identity-box,
|
|
|
|
#identity-box.extensionPage #identity-icon-label{
|
|
|
|
max-width: 0px;
|
2021-11-29 06:22:40 +00:00
|
|
|
transition: max-width 100ms linear !important;
|
2021-11-28 13:17:56 +00:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#identity-box.extensionPage{ max-width: 32px }
|
|
|
|
|
|
|
|
#urlbar:hover #urlbar-input-container > box,
|
|
|
|
#urlbar:hover #identity-box.extensionPage #identity-icon-label{
|
|
|
|
max-width: 300px;
|
|
|
|
}
|