46 lines
1.1 KiB
SCSS
46 lines
1.1 KiB
SCSS
![]() |
// <!-- #region multiselect styles -->
|
||
|
// <style lang="scss">
|
||
|
.multiselect__option--selected.multiselect__option--highlight:after {
|
||
|
content: "\e940";
|
||
|
font-family: "tavasi" !important;
|
||
|
speak: never;
|
||
|
font-style: normal;
|
||
|
font-weight: normal;
|
||
|
font-variant: normal;
|
||
|
text-transform: none;
|
||
|
color: #fff !important;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
font-size: 1.2rem;
|
||
|
}
|
||
|
.multiselect__option--highlight:after {
|
||
|
content: "\e994";
|
||
|
font-family: "tavasi" !important;
|
||
|
speak: never;
|
||
|
font-style: normal;
|
||
|
font-weight: normal;
|
||
|
font-variant: normal;
|
||
|
text-transform: none;
|
||
|
color: #fff !important;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
}
|
||
|
|
||
|
.multiselect__option--selected:after {
|
||
|
content: "\e994";
|
||
|
font-family: "tavasi" !important;
|
||
|
speak: never;
|
||
|
font-style: normal;
|
||
|
font-weight: normal;
|
||
|
font-variant: normal;
|
||
|
text-transform: none;
|
||
|
color: green !important;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
|
||
|
color: #aaa;
|
||
|
background: inherit;
|
||
|
}
|
||
|
// </style>
|
||
|
// <!-- #endregion -->
|