diff --git a/userChrome-files/dark_context_menus.css b/userChrome-files/dark_context_menus.css index dfc9788..864b2e8 100644 --- a/userChrome-files/dark_context_menus.css +++ b/userChrome-files/dark_context_menus.css @@ -41,42 +41,33 @@ menupopup menu:hover, menuitem:hover { } -/* Sidebar Header Context Menu */ +/* Sidebar Header Context Menue */ .panel-arrowcontent { color: var(--grey-10) !important; background: var(--grey-60) !important; } +/* The following snippets are designed to fix promblems + * only noticed on Windows computers. Thank you to u/markdarkness! + * for helping me with these issues. */ -/* Windows Specific Changes */ -@media screen and (-moz-windows-theme) { - - /* Increase height between menu items */ - menupopup menu, menuitem { - padding-top: 5px !important; - padding-bottom: 5px !important; - } - - /* Removes white bar between icons and menu items */ - #context-navigation, #context-sep-navigation { - padding: 0px !important; - } - - /* Remove white separators between menu items */ - menupopup menuseparator { - -moz-appearance: none !important; - background: rgba(0, 0, 0, 0) !important; - /* If you want to see the separators, use this instead */ - /* background: var(--primary-light-color) !important; */ - border: 0px !important; - } - - +/* 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; } - - - diff --git a/userChrome.css b/userChrome.css index 4243fdb..165c8c5 100644 --- a/userChrome.css +++ b/userChrome.css @@ -233,40 +233,37 @@ menuitem:hover { background-color: var(--grey-80) !important; } -/* Sidebar Header Context Menu */ +/* Sidebar Header Context Menue */ .panel-arrowcontent { color: var(--grey-10) !important; background: var(--grey-60) !important; } -/* Windows Specific Changes */ +/* The following snippets are designed to fix promblems + * only noticed on Windows computers. Thank you to u/markdarkness! + * for helping me with these issues. */ -@media screen and (-moz-windows-theme) { - /* Increase height between menu items */ +/* Remove white separators between menu items */ - menupopup menu, - menuitem { - padding-top: 5px !important; - padding-bottom: 5px !important; - } +menupopup menuseparator { + -moz-appearance: none !important; + background: rgba(0, 0, 0, 0) !important; + border: 0px !important; +} - /* Removes white bar between icons and menu items */ +/* Increase height between menu items */ - #context-navigation, - #context-sep-navigation { - padding: 0px !important; - } +menupopup menu, +menuitem { + padding-top: .5px !important; +} - /* Remove white separators between menu items */ +/* Removes white bar between icons and menu items */ - menupopup menuseparator { - -moz-appearance: none !important; - background: rgba(0, 0, 0, 0) !important; - /* If you want to see the separators, use this instead */ - /* background: var(--primary-light-color) !important; */ - border: 0px !important; - } +#context-navigation, +#context-sep-navigation { + padding: 0px !important; } #customization-done-button { color: var(--primary-light-color);