Define searchbox label color in scss

This commit is contained in:
RealStickman 2022-11-19 17:02:08 +01:00
parent 524f116863
commit 6c672e3243
4 changed files with 9 additions and 3 deletions

View File

@ -948,6 +948,8 @@ body {
border: 2px solid #b07eb5;
background: #7d4b82;
border-radius: 4px; }
.searchbox label {
color: rgba(200, 200, 200, 0.8); }
#sidebar {
background-color: #47314f; }

File diff suppressed because one or more lines are too long

View File

@ -30,9 +30,9 @@ Put your custom CSS in this file.
}*/
/* magnifying glass in search box */
#sidebar #header .searchbox label {
/*#sidebar #header .searchbox label {
color: rgba(200, 200, 200, 0.8);
}
}*/
/* search box entered text */
#sidebar #header .searchbox input {

View File

@ -6,4 +6,8 @@
border: 2px solid lighten($header-bg, 10%);
background: darken($header-bg, 10%);
border-radius: 4px;
label {
color: rgba(200, 200, 200, 0.8)
}
}