mobile-config-firefox/chrome/iconized_menubar_items.css

23 lines
1.1 KiB
CSS
Raw Normal View History

2020-06-30 15:29:40 +02:00
/* 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;
2020-07-23 08:20:02 +02:00
height: var(--uc-menubaritem-height,22px);
width: var(--uc-menubaritem-width,32px);
2020-06-30 15:29:40 +02:00
-moz-context-properties: fill;
padding: 3px !important;
background-repeat: no-repeat;
background-position: center;
}
.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://browser/skin/developer.svg") }
#helpMenu{ background-image: url("chrome://global/skin/icons/help.svg") }