fix search box css in dark theme
This commit is contained in:
parent
cf294d8bb2
commit
1c85d898b7
|
@ -1,11 +1,13 @@
|
||||||
.search-bar input {
|
#root .search-bar input {
|
||||||
border-top-right-radius: 0;
|
border-top-right-radius: 0;
|
||||||
border-bottom-right-radius: 0;
|
border-bottom-right-radius: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
outline: none;
|
outline: none;
|
||||||
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-bar button {
|
#root .search-bar button {
|
||||||
border-top-left-radius: 0;
|
border-top-left-radius: 0;
|
||||||
border-bottom-left-radius: 0;
|
border-bottom-left-radius: 0;
|
||||||
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -141,3 +141,8 @@ input[type="button"] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.search-bar button {
|
||||||
|
background-color: $gray-500;
|
||||||
|
border-color: $gray-500;
|
||||||
|
}
|
||||||
|
|
|
@ -65,7 +65,7 @@ article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
|
||||||
background-color: $body-bg; // 2
|
background-color: $body-bg; // 2
|
||||||
}
|
}
|
||||||
|
|
||||||
span.fa {
|
.dropdown-item span.fa {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
|
Loading…
Reference in New Issue