Move searchbox to scss

This commit is contained in:
RealStickman 2022-11-19 16:58:10 +01:00
parent cfc01dc857
commit 06e257b5e9
4 changed files with 16 additions and 5 deletions

View File

@ -944,6 +944,11 @@ body {
#header {
background: #9c5ea2; }
.searchbox {
border: 2px solid #a66eab;
background: #8d5492;
border-radius: 4px; }
#sidebar {
background-color: #47314f; }
#sidebar ul.topics > li.parent, #sidebar ul.topics > li.active {

File diff suppressed because one or more lines are too long

View File

@ -20,14 +20,14 @@ Put your custom CSS in this file.
}*/
/* search box in sidebar */
#sidebar #header .searchbox {
/*background: #262c31;*/
/*#sidebar #header .searchbox {
background: #262c31;
background: #222222;
/*border-color: #530e64;*/
border-color: #530e64;
border-color: #2e2333;
border-radius: 0px;
border-width: 2px;
}
}*/
/* magnifying glass in search box */
#sidebar #header .searchbox label {

View File

@ -1,3 +1,9 @@
#header {
background: $header-bg;
}
.searchbox {
border: 2px solid lighten($header-bg, 5%);
background: darken($header-bg,5%);
border-radius: 4px;
}