mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
d4b5627473
This patch also adds a few more color variables to optional settings
72 lines
No EOL
2.6 KiB
CSS
72 lines
No EOL
2.6 KiB
CSS
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/context_menus_more_proton.css made available under Mozilla Public License v. 2.0
|
|
See the above repository for updates as well as full license text. */
|
|
|
|
/* Adds more proton-like styling to context menus. Rounded rows, and more consistent padding. This is only going to work on Win10+ */
|
|
|
|
:root{
|
|
--arrowpanel-menuitem-margin: 0 8px;
|
|
--arrowpanel-menuitem-padding-block: 8px;
|
|
--arrowpanel-menuitem-padding-inline: 8px;
|
|
--arrowpanel-menuitem-border-radius: 4px;
|
|
--panel-separator-margin-vertical: 4px;
|
|
--button-hover-bgcolor: rgb(82, 82, 94);
|
|
}
|
|
:root[uidensity="compact"] menupopup:not(.in-menulist){
|
|
--panel-padding: 4px 0 !important;
|
|
--arrowpanel-menuitem-padding-block: 8px;
|
|
}
|
|
/* OPTIONAL Set custom context menu colors below */
|
|
/*
|
|
menupopup:not(.in-menulist){
|
|
--panel-background: #eb2a33 !important;
|
|
--panel-color: #4aa !important;
|
|
--panel-separator-color: #f00 !important;
|
|
--panel-border-color: ThreeDShadow !important;
|
|
}
|
|
menupopup > menuseparator{
|
|
border-color: var(--panel-separator-color,ThreeDShadow) !important;
|
|
}
|
|
*/
|
|
menupopup{
|
|
--panel-item-hover-bgcolor: var(--button-hover-bgcolor);
|
|
--panel-border-radius: var(--arrowpanel-border-radius) !important;
|
|
}
|
|
menupopup > menuitem,
|
|
menupopup > menu{
|
|
appearance: none !important;
|
|
margin: var(--arrowpanel-menuitem-margin) !important;
|
|
min-height: 24px !important;
|
|
padding: var(--arrowpanel-menuitem-padding-block) var(--arrowpanel-menuitem-padding-inline) !important;
|
|
border-radius: var(--arrowpanel-menuitem-border-radius) !important;
|
|
background-color: transparent !important;
|
|
}
|
|
#context-navigation{
|
|
padding-inline: var(--arrowpanel-menuitem-padding-inline) !important;
|
|
}
|
|
.menu-right{
|
|
margin-inline-end: initial !important;
|
|
}
|
|
menupopup:not(.in-menulist){
|
|
--panel-padding: var(--arrowpanel-menuitem-padding-block) 0 !important;
|
|
}
|
|
|
|
:root[uidensity="compact"] #context-navigation{
|
|
padding-block: 0 !important;
|
|
}
|
|
menuseparator:not(.in-menulist){
|
|
margin-block: var(--panel-separator-margin-vertical) !important;
|
|
}
|
|
|
|
#context-navigation > menuitem[_moz-menuactive] .menu-iconic-icon{
|
|
border-radius: var(--arrowpanel-menuitem-border-radius) !important;
|
|
}
|
|
#context-navigation > menuitem[_moz-menuactive]:not([disabled]) .menu-iconic-icon,
|
|
menupopup > menuitem[_moz-menuactive],
|
|
menupopup > menu[_moz-menuactive]{
|
|
background-color: var(--panel-item-hover-bgcolor) !important;
|
|
color: var(--panel-color,inherit) !important;
|
|
}
|
|
menupopup > menuitem[disabled][_moz-menuactive],
|
|
menupopup > menu[disabled][_moz-menuactive]{
|
|
background-color: var(--menuitem-disabled-hover-background-color) !important;
|
|
} |