Revert Windows context menu fixes until a better solution is found 19494d7

This commit is contained in:
overdodactyl 2017-12-15 10:04:45 -07:00
parent 5a3e5dcc05
commit 9bb72fd58a
2 changed files with 38 additions and 50 deletions

View File

@ -41,42 +41,33 @@ menupopup menu:hover, menuitem:hover {
} }
/* Sidebar Header Context Menu */ /* Sidebar Header Context Menue */
.panel-arrowcontent { .panel-arrowcontent {
color: var(--grey-10) !important; color: var(--grey-10) !important;
background: var(--grey-60) !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 */ /* Remove white separators between menu items */
@media screen and (-moz-windows-theme) { menupopup menuseparator {
-moz-appearance:none !important;
/* Increase height between menu items */ background: rgba(0, 0, 0, 0) !important;
menupopup menu, menuitem { border: 0px !important;
padding-top: 5px !important; }
padding-bottom: 5px !important;
} /* Increase height between menu items */
menupopup menu, menuitem {
/* Removes white bar between icons and menu items */ padding-top: .5px !important;
#context-navigation, #context-sep-navigation { }
padding: 0px !important;
} /* Removes white bar between icons and menu items */
#context-navigation, #context-sep-navigation {
/* Remove white separators between menu items */ padding: 0px !important;
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;
}
} }

View File

@ -233,40 +233,37 @@ menuitem:hover {
background-color: var(--grey-80) !important; background-color: var(--grey-80) !important;
} }
/* Sidebar Header Context Menu */ /* Sidebar Header Context Menue */
.panel-arrowcontent { .panel-arrowcontent {
color: var(--grey-10) !important; color: var(--grey-10) !important;
background: var(--grey-60) !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) { /* Remove white separators between menu items */
/* Increase height between menu items */
menupopup menu, menupopup menuseparator {
menuitem { -moz-appearance: none !important;
padding-top: 5px !important; background: rgba(0, 0, 0, 0) !important;
padding-bottom: 5px !important; border: 0px !important;
} }
/* Removes white bar between icons and menu items */ /* Increase height between menu items */
#context-navigation, menupopup menu,
#context-sep-navigation { menuitem {
padding: 0px !important; padding-top: .5px !important;
} }
/* Remove white separators between menu items */ /* Removes white bar between icons and menu items */
menupopup menuseparator { #context-navigation,
-moz-appearance: none !important; #context-sep-navigation {
background: rgba(0, 0, 0, 0) !important; padding: 0px !important;
/* If you want to see the separators, use this instead */
/* background: var(--primary-light-color) !important; */
border: 0px !important;
}
} }
#customization-done-button { #customization-done-button {
color: var(--primary-light-color); color: var(--primary-light-color);