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,20 +41,26 @@ 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) {
/* 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;
padding-bottom: 5px !important;
padding-top: .5px !important;
}
/* Removes white bar between icons and menu items */
@ -62,21 +68,6 @@ menupopup menu:hover, menuitem:hover {
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;
}
}

View File

@ -233,22 +233,30 @@ 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. */
/* Remove white separators between menu items */
menupopup menuseparator {
-moz-appearance: none !important;
background: rgba(0, 0, 0, 0) !important;
border: 0px !important;
}
@media screen and (-moz-windows-theme) {
/* Increase height between menu items */
menupopup menu,
menuitem {
padding-top: 5px !important;
padding-bottom: 5px !important;
padding-top: .5px !important;
}
/* Removes white bar between icons and menu items */
@ -257,17 +265,6 @@ menuitem:hover {
#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;
}
}
#customization-done-button {
color: var(--primary-light-color);
font-weight: 700;