32 lines
713 B
CSS
32 lines
713 B
CSS
/*! Alters the webextension Brief
|
|
IMPORTANT: change the Internal UUID */
|
|
|
|
@-moz-document url-prefix("moz-extension://brief_UUID/") {
|
|
h2 {
|
|
color: var(--accent-1) !important;
|
|
}
|
|
label {
|
|
color: var(--tone-4) !important;
|
|
}
|
|
|
|
#custom-style-textbox,
|
|
input[type="number"],
|
|
#clear-all-entries {
|
|
-moz-appearance: none !important;
|
|
background: var(--tone-6) !important;
|
|
color: var(--tone-4) !important;
|
|
border: 1px solid var(--tone-5) !important;
|
|
}
|
|
|
|
#clear-all-entries {
|
|
border-radius: 3px !important;
|
|
-moz-appearance: none !important;
|
|
background: var(--tone-8) !important;
|
|
color: var(--tone-4) !important;
|
|
border: 1px solid var(--tone-6) !important;
|
|
}
|
|
|
|
|
|
|
|
}
|