| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 | /* * Component: Form * --------------- */.form-control {  .border-radius(@input-radius);  box-shadow: none;  border-color: @gray-lte;  &:focus {    border-color: @light-blue;    box-shadow: none;  }  &::-moz-placeholder,  &:-ms-input-placeholder,  &::-webkit-input-placeholder {    color: #bbb;    opacity: 1;  }  &:not(select) {    -webkit-appearance: none;    -moz-appearance: none;    appearance: none;  }}.form-group {  &.has-success {    label {      color: @green;    }    .form-control,    .input-group-addon {      border-color: @green;      box-shadow: none;    }    .help-block {      color: @green;    }  }  &.has-warning {    label {      color: @yellow;    }    .form-control,    .input-group-addon {      border-color: @yellow;      box-shadow: none;    }    .help-block {      color: @yellow;    }  }  &.has-error {    label {      color: @red;    }    .form-control,    .input-group-addon {      border-color: @red;      box-shadow: none;    }    .help-block {      color: @red;    }  }}/* Input group */.input-group {  .input-group-addon {    .border-radius(@input-radius);    border-color: @gray-lte;    background-color: #fff;  }}/* button groups */.btn-group-vertical {  .btn {    &.btn-flat:first-of-type, &.btn-flat:last-of-type {      .border-radius(0);    }  }}.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;}
 |