mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-10 03:40:14 +00:00
21 lines
738 B
CSS
21 lines
738 B
CSS
|
/* 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. */
|
||
|
|
||
|
/* Hides info icons on the left side of urlbar and shows them when urlbar is hovered. */
|
||
|
|
||
|
#remote-control-box,
|
||
|
#urlbar-search-button,
|
||
|
#tracking-protection-icon-container,
|
||
|
#identity-box,
|
||
|
#identity-box.extensionPage #identity-icon-label{
|
||
|
max-width: 0px;
|
||
|
transition: max-width 300ms linear !important;
|
||
|
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;
|
||
|
}
|