dark theme fixes
Overrides bootstrap input colors for dark theme and more chosen
This commit is contained in:
parent
88a1e3eb4d
commit
a6b136ed40
|
@ -90,14 +90,14 @@ label {
|
||||||
}
|
}
|
||||||
|
|
||||||
input,textarea,select,button,.btn-primary {
|
input,textarea,select,button,.btn-primary {
|
||||||
border: 1px #8f8fc2 solid;
|
border: 1px #8f8fc2 solid !important;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 100%;
|
font-size: 100%;
|
||||||
color: #eeeeee;
|
color: #eeeeee !important;
|
||||||
background-color: #444444;
|
background-color: #444444 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text], input[type=password], input[type="url"], textarea, select {
|
input[type=text], input[type=password], input[type="url"], textarea, select {
|
||||||
|
@ -560,7 +560,14 @@ input[type=submit]:disabled,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Override chosen for dark theme */
|
/* Override chosen for dark theme */
|
||||||
.chosen-single, .chosen-container {
|
.chosen-single,
|
||||||
|
.chosen-container,
|
||||||
|
.chosen-container-multi,
|
||||||
|
.chosen-results,
|
||||||
|
.chosen-search,
|
||||||
|
.chosen-drop,
|
||||||
|
.chosen-choices,
|
||||||
|
li.search-choice {
|
||||||
font-size: inherit !important;
|
font-size: inherit !important;
|
||||||
background: -webkit-gradient(linear,left top,left bottom,color-stop(20%,#555),color-stop(50%,#464646),color-stop(52%,#444),to(#545454)) !important;
|
background: -webkit-gradient(linear,left top,left bottom,color-stop(20%,#555),color-stop(50%,#464646),color-stop(52%,#444),to(#545454)) !important;
|
||||||
background: linear-gradient(#555 20%,#464646 50%,#444 52%,#545454 100%) !important;
|
background: linear-gradient(#555 20%,#464646 50%,#444 52%,#545454 100%) !important;
|
||||||
|
@ -568,12 +575,7 @@ input[type=submit]:disabled,
|
||||||
color: #eee !important;
|
color: #eee !important;
|
||||||
border-color: #8f8fc2 !important;
|
border-color: #8f8fc2 !important;
|
||||||
-webkit-box-shadow: none !important;
|
-webkit-box-shadow: none !important;
|
||||||
|
background-image: none !important;
|
||||||
}
|
|
||||||
|
|
||||||
.chosen-results, .chosen-search, .chosen-drop, .chosen-choices {
|
|
||||||
color: #eee !important;
|
|
||||||
background-color: #444444 !important;
|
|
||||||
}
|
}
|
||||||
/* end chosen override */
|
/* end chosen override */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue