salix/front/core/components/autocomplete/style.scss

31 lines
615 B
SCSS
Raw Permalink Normal View History

2018-05-31 11:34:48 +00:00
@import "effects";
2018-03-09 13:15:30 +00:00
.vn-autocomplete {
2019-10-09 22:47:29 +00:00
overflow: hidden;
2019-01-27 23:26:01 +00:00
2019-10-09 22:47:29 +00:00
& > .container {
cursor: pointer;
& > .infix > .control {
2019-01-27 23:26:01 +00:00
overflow: hidden;
2019-10-09 22:47:29 +00:00
& > input {
cursor: pointer;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
text-align: left;
padding-left: 0;
padding-right: 0;
}
2019-01-27 23:26:01 +00:00
}
& > .icons.pre {
min-width: 22px
}
2019-06-17 06:14:48 +00:00
}
2019-10-15 14:19:35 +00:00
&.readonly > .container > .icons.post {
display: none;
}
2018-03-09 13:15:30 +00:00
}