This commit is contained in:
rickysang 2016-08-19 18:19:40 +08:00
parent be11566d95
commit 87cba5d352
3 changed files with 13 additions and 7 deletions

View file

@ -29,7 +29,8 @@
label { label {
color: @green; color: @green;
} }
.form-control { .form-control,
.input-group-addon {
border-color: @green; border-color: @green;
box-shadow: none; box-shadow: none;
} }
@ -42,7 +43,8 @@
label { label {
color: @yellow; color: @yellow;
} }
.form-control { .form-control,
.input-group-addon {
border-color: @yellow; border-color: @yellow;
box-shadow: none; box-shadow: none;
} }
@ -55,7 +57,8 @@
label { label {
color: @red; color: @red;
} }
.form-control { .form-control,
.input-group-addon {
border-color: @red; border-color: @red;
box-shadow: none; box-shadow: none;
} }

View file

@ -1269,7 +1269,8 @@ a:focus {
.form-group.has-success label { .form-group.has-success label {
color: #00a65a; color: #00a65a;
} }
.form-group.has-success .form-control { .form-group.has-success .form-control,
.form-group.has-success .input-group-addon {
border-color: #00a65a; border-color: #00a65a;
box-shadow: none; box-shadow: none;
} }
@ -1279,7 +1280,8 @@ a:focus {
.form-group.has-warning label { .form-group.has-warning label {
color: #f39c12; color: #f39c12;
} }
.form-group.has-warning .form-control { .form-group.has-warning .form-control,
.form-group.has-warning .input-group-addon {
border-color: #f39c12; border-color: #f39c12;
box-shadow: none; box-shadow: none;
} }
@ -1289,7 +1291,8 @@ a:focus {
.form-group.has-error label { .form-group.has-error label {
color: #dd4b39; color: #dd4b39;
} }
.form-group.has-error .form-control { .form-group.has-error .form-control,
.form-group.has-error .input-group-addon {
border-color: #dd4b39; border-color: #dd4b39;
box-shadow: none; box-shadow: none;
} }

File diff suppressed because one or more lines are too long