mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
760 B
52 lines
760 B
@import '_mixins';
|
|
@import '_vars';
|
|
|
|
:host(.ng-invalid) {
|
|
&.ng-dirty {
|
|
.form-control {
|
|
& {
|
|
border-color: $color-theme-error;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus {
|
|
border-color: $color-theme-error-dark;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.form-group {
|
|
position: relative;
|
|
}
|
|
|
|
.input-group {
|
|
.form-control {
|
|
&:last-child {
|
|
padding-right: 2rem;
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
.form-date {
|
|
width: 7rem;
|
|
}
|
|
|
|
.form-date-only {
|
|
width: 8.5rem;
|
|
}
|
|
|
|
.form-time {
|
|
width: 7rem;
|
|
}
|
|
}
|
|
|
|
.btn-clear {
|
|
& {
|
|
@include absolute(auto, 4px, 3px, auto);
|
|
}
|
|
|
|
&:focus {
|
|
box-shadow: none;
|
|
}
|
|
}
|