1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-25 20:44:38 +04:00
Files
tabler/scss/vendor/_selectize.scss
T
2020-01-12 19:37:36 +01:00

57 lines
1.1 KiB
SCSS

.selectize-control {
padding: 0;
border: 0;
&.multi .selectize-input > div {
font-size: $h5-font-size;
margin: 0 8px 2px 0;
padding: 2px 8px;
border-radius: $border-radius;
background-color: $gray-200;
color: inherit;
}
}
.selectize-input {
display: flex !important;
height: 100%;
border: 1px solid $border-color;
padding: $input-padding-y $input-padding-x;
font-size: $input-font-size;
box-shadow: none;
line-height: $input-line-height;
background-color: inherit !important;
color: inherit !important;
.selectize-control.single & {
background: $form-select-bg escape-svg($form-select-indicator) $form-select-background;
}
&.focus {
border-color: $form-select-focus-border-color;
box-shadow: $form-select-focus-box-shadow;
}
&:after {
content: none !important;
}
}
.selectize-dropdown {
height: auto;
background: $form-select-bg;
padding: $input-padding-y 0;
margin-top: 1px;
.option,
.option-header {
padding: .25rem $input-padding-x;
}
.active {
background: $hover-bg;
color: inherit;
cursor: pointer;
}
}