mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
24 lines
No EOL
1.2 KiB
CSS
24 lines
No EOL
1.2 KiB
CSS
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/iconized_menubar_items.css made available under Mozilla Public License v. 2.0
|
|
See the above repository for updates as well as full license text. */
|
|
|
|
/* Replaces menubar items text ("File Edit etc.") with icons */
|
|
|
|
#main-menubar > menu{
|
|
fill: currentColor;
|
|
height: var(--uc-menubaritem-height,28px);
|
|
width: var(--uc-menubaritem-width,30px);
|
|
-moz-context-properties: fill;
|
|
padding: 3px !important;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
border-radius: var(--toolbarbutton-border-radius)
|
|
}
|
|
#main-menubar > menu > .menubar-text{ display: none }
|
|
|
|
#file-menu{ background-image: url("chrome://devtools/skin/images/tool-storage.svg") }
|
|
#edit-menu{ background-image: url("chrome://browser/skin/customize.svg") }
|
|
#view-menu{ background-image: url("chrome://devtools/skin/images/command-frames.svg") }
|
|
#history-menu{ background-image: url("chrome://browser/skin/history.svg") }
|
|
#bookmarksMenu{ background-image: url("chrome://browser/skin/bookmark.svg") }
|
|
#tools-menu{ background-image: url("chrome://global/skin/icons/developer.svg") }
|
|
#helpMenu{ background-image: url("chrome://global/skin/icons/help.svg") } |