bootstrap form input box-shadow removed

This commit is contained in:
Arvind Tiwari 2017-09-19 13:54:27 +05:30
parent 787ff6b6d3
commit 4787276afe

View file

@ -854,6 +854,8 @@ a.list-group-item-danger:focus,
color: #eb4d5c; color: #eb4d5c;
} }
.has-error .form-control, .has-error .form-control,
.has-error .form-control:focus,
.has-error .form-control:active,
.has-error .input-group-addon { .has-error .input-group-addon {
color: #eb4d5c; color: #eb4d5c;
border-color: #eb4d5c; border-color: #eb4d5c;
@ -866,4 +868,12 @@ a.list-group-item-danger.active:focus {
} }
.panel-danger > .panel-heading .badge { .panel-danger > .panel-heading .badge {
background-color: #eb4d5c; background-color: #eb4d5c;
}
/* bootstrap input box-shadom disable */
.has-error .form-control:focus,
.has-error .form-control:active,
.has-success .form-control:focus,
.has-success .form-control:active {
box-shadow: inset 0 0 1px rgba(0,0,0,0.25);
} }