Also style natively styled buttons

This commit is contained in:
MrOtherGuy 2019-06-30 10:51:41 +03:00
parent 3e2fc449d6
commit 07cec64235

View file

@ -1,3 +1,7 @@
/* Change the appearance of natively styled widgets including radios, checkboxes, buttons and expender "dropdown" arrows */
/* Their background will be transparent instead of white so they will appear fitting to whatever is on the background */
/* As such, this might cause a small issue if the background happens to be same color as the border of these buttons or the checkbox-image */
#editBMPanel_tagsSelector > richlistitem > image,
radio > .radio-check,
checkbox > .checkbox-check{
@ -35,3 +39,16 @@ radio[selected] > .radio-check{ list-style-image: url("chrome://global/skin/in-c
#editBMPanel_tagsSelector > richlistitem[disabled] > image,
radio[disabled] > .radio-check,
checkbox[disabled] > .checkbox-check{ fill: graytext !important; }
/*Buttons*/
/* This only applies to natively-ish styled buttons, not the buttons in toolbars */
button{
-moz-appearance: none !important;
color: inherit !important;
background-color: rgba(255,255,255,0.2) !important;
}
button.panel-button{ padding: 2px 2px 1px 2px !important; }
#customization-done-button{ background-color: #0a84ff !important; }
#customization-done-button:hover{ background-color: #0a64df !important; }