Have different gb colors for disabled inputs

This commit is contained in:
Jeremy Mahieu 2019-12-16 14:39:46 +01:00
parent 9dbd55443a
commit 8779e66900
3 changed files with 13 additions and 0 deletions

View File

@ -65,6 +65,10 @@ a:visited:hover, a:visited:active, a:visited:focus {
border: 0px none;
}
.form-control[disabled] {
background: var(--base03);
}
.form-control:focus {
color: var(--base06);
box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.1), 0px 1px 7px 0px rgba(0, 0, 0, 0.2) inset;

View File

@ -10,6 +10,10 @@ body {
border: 0px none;
}
.form-control[disabled] {
background: none repeat scroll 0% 0% rgba(63, 63, 63, 0.3);
}
.form-control option {
color: #eee;
background: #282828;

View File

@ -68,6 +68,11 @@ select.form-control, select option, input[type=text], input[type=password], #sen
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1), 0px 1px 7px 0px rgba(255, 255, 255, 0.8) inset;
background: none repeat scroll 0% 0% rgba(255, 255, 255, 0.3);
}
.form-control[disabled] {
background: none repeat scroll 0% 0% rgba(134, 134, 134, 0.3);
}
input[type=text].is-invalid{
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1), 0px 1px 7px 0px rgba(255, 0, 0, 0.8) inset;
}