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.
27 lines
451 B
27 lines
451 B
@import '_vars';
|
|
@import '_mixins';
|
|
|
|
.dashed {
|
|
border-style: dashed;
|
|
border-width: 1px;
|
|
}
|
|
|
|
.select-placeholder {
|
|
@include absolute(0, 0, 0, 0);
|
|
color: $color-theme-secondary;
|
|
padding: .5rem .75rem;
|
|
pointer-events: none;
|
|
line-height: 1.2rem;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.form-control {
|
|
&:disabled,
|
|
&.disabled {
|
|
background: $panel-light-background;
|
|
}
|
|
}
|
|
|
|
.transition-to {
|
|
@include truncate;
|
|
}
|