123456789101112131415161718192021222324252627282930313233343536 |
- @import "mixins/mixins";
- @import "common/var";
- @include b(select-dropdown) {
- @include e(item) {
- font-size: $--select-font-size;
- padding: 0 20px;
- position: relative;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- color: $--select-option-color;
- height: $--select-option-height;
- line-height: $--select-option-height;
- box-sizing: border-box;
- cursor: pointer;
- @include when(disabled) {
- color: $--select-option-disabled-color;
- cursor: not-allowed;
- &:hover {
- background-color: $--color-white;
- }
- }
- &.hover, &:hover {
- background-color: $--select-option-hover-background;
- }
- &.selected {
- color: $--select-option-selected-font-color;
- font-weight: bold;
- }
- }
- }
|