open-consul/ui/styles/_forms.scss

27 lines
550 B
SCSS
Raw Normal View History

2014-04-30 16:15:54 +00:00
.form-group {
.form-control {
@include transition(border-color .2s ease-in-out);
@include transition(box-shadow .2s ease-in-out);
@include transition(border-color .2s ease-in-out);
&.form-control-mini {
font-size: 12px;
}
2014-04-30 16:15:54 +00:00
}
&.valid {
.form-control {
border-color: $green-faded;
box-shadow: 0 0 5px $green-faded;
}
}
.input-group-addon {
background-color: $gray-background;
}
}
2014-08-22 23:46:32 +00:00
textarea.form-control {
height: 130px;
}