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 {
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;
}

View File

@ -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);