23 lines
424 B
CSS
23 lines
424 B
CSS
/* TEMPORARY FIX
|
|
* Apply template color placeholders to all form controls.
|
|
* Remove this file once the template provides proper input styling.
|
|
*/
|
|
|
|
input,
|
|
textarea,
|
|
select,
|
|
button {
|
|
color: @ini_text;
|
|
background-color: @ini_background;
|
|
border: 1px solid @ini_border;
|
|
}
|
|
|
|
button:not(.toolbutton) {
|
|
background: @ini_background;
|
|
}
|
|
|
|
select option {
|
|
color: @ini_text;
|
|
background-color: @ini_background;
|
|
}
|