2018-01-21 21:17:42 +00:00
|
|
|
/*! Alters the webextension Brief
|
|
|
|
IMPORTANT: change the Internal UUID */
|
|
|
|
|
|
|
|
@-moz-document url-prefix("moz-extension://e0561760-8efe-b747-9e3b-ffcd6a3f29bc/") {
|
|
|
|
h2 {
|
|
|
|
color: var(--primary-accent-color) !important;
|
|
|
|
}
|
|
|
|
label {
|
|
|
|
color: var(--primary-light-color) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#custom-style-textbox,
|
|
|
|
input[type="number"],
|
|
|
|
#clear-all-entries {
|
|
|
|
-moz-appearance: none !important;
|
2018-02-15 01:46:15 +00:00
|
|
|
background: var(--mid-way-color) !important;
|
2018-01-21 21:17:42 +00:00
|
|
|
color: var(--primary-light-color) !important;
|
2018-02-15 01:46:15 +00:00
|
|
|
border: 1px solid var(--light-accent-color) !important;
|
2018-01-21 21:17:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#clear-all-entries {
|
|
|
|
border-radius: 3px !important;
|
|
|
|
-moz-appearance: none !important;
|
2018-02-15 01:46:15 +00:00
|
|
|
background: var(--dark-accent) !important;
|
2018-01-21 21:17:42 +00:00
|
|
|
color: var(--primary-light-color) !important;
|
2018-02-15 01:46:15 +00:00
|
|
|
border: 1px solid var(--mid-way-color) !important;
|
2018-01-21 21:17:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|