31 lines
No EOL
480 B
SCSS
31 lines
No EOL
480 B
SCSS
.has-error {
|
|
&.list-button,
|
|
&.list-card,
|
|
&.list-button-horizontal {
|
|
color: $red;
|
|
label {
|
|
border: 1px solid $red;
|
|
}
|
|
}
|
|
}
|
|
|
|
.form-test-error {
|
|
color: $red;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.form-test-invalid {
|
|
&.btn.btn-primary {
|
|
color: $gray;
|
|
background: $gray-200;
|
|
cursor: default;
|
|
}
|
|
&.btn.btn-primary:hover,
|
|
&.btn.btn-primary:focus,
|
|
&.btn.btn-primary:focus-visible {
|
|
color: $gray;
|
|
background: $gray-200;
|
|
box-shadow: none;
|
|
}
|
|
|
|
} |