ShadowFox/userChrome-files/dark_context_menus.css

74 lines
1.7 KiB
CSS
Raw Normal View History

2017-11-30 22:34:27 +00:00
/* Main context menu */
menupopup, popup, popup > menu > menupopup, menupopup > menu > menupopup, menupopup scrollbox {
2017-11-30 22:34:27 +00:00
-moz-appearance: none !important;
2017-12-01 05:11:24 +00:00
background: var(--grey-60) !important;
border: none !important;
padding: 0px 0px 0px 0px !important;
2017-11-30 22:34:27 +00:00
}
/* More options right arrow */
.menu-right {
filter: invert(95%)!important;
}
/* Top Row of Navigation Options */
#context-navigation menuitem {
color: var(--grey-10) !important;
2017-12-01 05:11:24 +00:00
background: var(--grey-70) !important;
2017-11-30 22:34:27 +00:00
}
#context-navigation menuitem:hover {
2017-12-01 05:11:24 +00:00
background: var(--grey-80) !important;
2017-11-30 22:34:27 +00:00
}
/* Menu items */
menupopup menu, menuitem {
-moz-appearance: none !important;
color: var(--grey-10) !important;
}
/* Menu Separators - removed */
menupopup menuseparator {
padding: 0 !important;
border-top: none !important;
margin: 2px 6px 2px 6px !important;
2017-11-30 22:34:27 +00:00
}
menupopup menu:hover, menuitem:hover {
color: var(--grey-10) !important;
background-color: var(--grey-80) !important;
}
/* Sidebar Header Context Menue */
.panel-arrowcontent {
color: var(--grey-10) !important;
2017-12-01 05:11:24 +00:00
background: var(--grey-60) !important;
}
/* The following snippets are designed to fix promblems
* only noticed on Windows computers. Thank you to u/u/markdarkness!
* for helping me with these issues. */
/* Remove white separators between menu items */
menupopup menuseparator {
-moz-appearance:none !important;
background: rgba(0, 0, 0, 0) !important;
border: 0px !important;
}
/* Increase height between menu items */
menupopup menu, menuitem {
padding-top: .5px !important;
}
/* Removes white bar between icons and menu items */
#context-navigation, #context-sep-navigation {
padding: 0px !important;
}