enable font awesome in form controls

the form controls are preconfigured to use glyhicons but lack the support for FA icons
pull/540/head
Florian Schaeffer 2015-06-25 07:17:51 +02:00
parent e5771daaf5
commit 17fbe16151
1 changed files with 17 additions and 1 deletions

View File

@ -79,4 +79,20 @@
.icheck > label {
padding-left: 0;
}
}
/* support Font Awesome icons in form-control */
.form-control-feedback.fa {
line-height: @input-height-base;
}
.input-lg + .form-control-feedback.fa,
.input-group-lg + .form-control-feedback.fa,
.form-group-lg .form-control + .form-control-feedback.fa {
line-height: @input-height-large;
}
.input-sm + .form-control-feedback.fa,
.input-group-sm + .form-control-feedback.fa,
.form-group-sm .form-control + .form-control-feedback.fa {
line-height: @input-height-small;
}