mirror of
https://github.com/tabler/tabler.git
synced 2026-07-17 02:51:41 +04:00
51 lines
676 B
SCSS
51 lines
676 B
SCSS
textarea {
|
|
&[cols] {
|
|
height: auto;
|
|
}
|
|
}
|
|
|
|
.form-label {
|
|
display: block;
|
|
margin-bottom: .375rem;
|
|
font-size: $h5-font-size;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.form-group {
|
|
display: block;
|
|
}
|
|
|
|
.form-control {
|
|
&:disabled,
|
|
&.disabled {
|
|
color: $text-muted;
|
|
user-select: none;
|
|
}
|
|
}
|
|
|
|
.form-control-light {
|
|
background-color: $min-black;
|
|
border-color: $min-black;
|
|
}
|
|
|
|
.form-footer {
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.form-fieldset {
|
|
padding: 1rem;
|
|
background: $gray-100;
|
|
border: 1px solid $border-color;
|
|
border-radius: $border-radius;
|
|
}
|
|
|
|
.form-required {
|
|
color: $red;
|
|
}
|
|
|
|
.custom-control-label::before {
|
|
background: transparent;
|
|
border: 1px solid $border-color;
|
|
}
|
|
|