31 lines
618 B
SCSS
31 lines
618 B
SCSS
|
@import "effects";
|
||
|
|
||
|
.vn-worker-autocomplete {
|
||
|
overflow: hidden;
|
||
|
|
||
|
& > .container {
|
||
|
cursor: pointer;
|
||
|
|
||
|
& > .infix > .control {
|
||
|
overflow: hidden;
|
||
|
|
||
|
& > input {
|
||
|
cursor: pointer;
|
||
|
text-overflow: ellipsis;
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-align: left;
|
||
|
padding-left: 0;
|
||
|
padding-right: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
& > .icons.pre {
|
||
|
min-width: 22px
|
||
|
}
|
||
|
}
|
||
|
&.readonly > .container > .icons.post {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|