dark theme fixes

Overrides bootstrap input colors for dark theme and more chosen
This commit is contained in:
digital-gnome 2017-12-18 09:18:36 -05:00
parent 88a1e3eb4d
commit a6b136ed40
1 changed files with 12 additions and 10 deletions

View File

@ -90,14 +90,14 @@ label {
}
input,textarea,select,button,.btn-primary {
border: 1px #8f8fc2 solid;
border: 1px #8f8fc2 solid !important;
padding: 10px;
border-radius: 2px;
font-family: inherit;
font-weight: 400;
font-size: 100%;
color: #eeeeee;
background-color: #444444;
color: #eeeeee !important;
background-color: #444444 !important;
}
input[type=text], input[type=password], input[type="url"], textarea, select {
@ -560,7 +560,14 @@ input[type=submit]:disabled,
}
/* 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;
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;
@ -568,12 +575,7 @@ input[type=submit]:disabled,
color: #eee !important;
border-color: #8f8fc2 !important;
-webkit-box-shadow: none !important;
}
.chosen-results, .chosen-search, .chosen-drop, .chosen-choices {
color: #eee !important;
background-color: #444444 !important;
background-image: none !important;
}
/* end chosen override */