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.
63 lines
1005 B
63 lines
1005 B
@import '_mixins';
|
|
@import '_vars';
|
|
|
|
$color-input-disabled: #eef1f4;
|
|
|
|
.form-control {
|
|
& {
|
|
width: 100%;
|
|
}
|
|
|
|
&[readonly] {
|
|
background: $color-input-background;
|
|
}
|
|
|
|
&:disabled {
|
|
background: $color-input-disabled;
|
|
}
|
|
}
|
|
|
|
.search-form {
|
|
padding: .5rem;
|
|
}
|
|
|
|
.control-dropdown {
|
|
max-height: none;
|
|
max-width: 40rem;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
.control-dropdown-items {
|
|
max-height: 15rem;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.selection {
|
|
& {
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.control-dropdown-item {
|
|
@include absolute(0, 1rem, 0, 0);
|
|
line-height: 1.2rem;
|
|
padding-bottom: 0;
|
|
pointer-events: none;
|
|
position: absolute;
|
|
}
|
|
|
|
.icon-caret-down {
|
|
@include absolute(30%, 5px, null, null);
|
|
font-size: .9rem;
|
|
font-weight: normal;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.truncate {
|
|
min-height: 1.2rem;
|
|
}
|
|
|
|
.form-control {
|
|
cursor: default;
|
|
}
|
|
}
|