2017-12-13 17:49:32 +08:00
|
|
|
.select-kit {
|
|
|
|
&.dropdown-select-box {
|
|
|
|
&.toolbar-popup-menu-options {
|
|
|
|
.select-kit-body {
|
|
|
|
box-shadow: none;
|
|
|
|
width: 230px;
|
2020-05-29 14:05:21 +08:00
|
|
|
border-radius: 0;
|
2020-02-03 21:22:14 +08:00
|
|
|
}
|
|
|
|
|
2021-04-28 22:22:30 +08:00
|
|
|
.select-kit-header {
|
2021-08-23 16:44:19 +08:00
|
|
|
width: 30px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
border-color: var(--tertiary);
|
|
|
|
}
|
|
|
|
|
2021-04-28 22:22:30 +08:00
|
|
|
.d-icon {
|
|
|
|
color: var(--primary-medium);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.d-icon {
|
|
|
|
color: var(--primary-low);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 17:49:32 +08:00
|
|
|
.select-kit-row {
|
2020-05-29 14:05:21 +08:00
|
|
|
padding: 0.75em 0.5em;
|
2020-08-04 10:57:10 +08:00
|
|
|
border-bottom: 1px solid rgba(var(--primary-low-rgb), 0.5);
|
2020-05-29 14:05:21 +08:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border: none;
|
|
|
|
}
|
2017-12-13 17:49:32 +08:00
|
|
|
|
2020-02-15 02:44:38 +08:00
|
|
|
.texts .name,
|
|
|
|
.icons .d-icon {
|
2018-01-13 06:27:38 +08:00
|
|
|
font-size: $font-0;
|
2017-12-13 17:49:32 +08:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.d-icon {
|
2020-08-04 10:57:10 +08:00
|
|
|
color: var(--primary-medium);
|
2017-12-13 17:49:32 +08:00
|
|
|
}
|
|
|
|
|
2020-05-29 14:05:21 +08:00
|
|
|
&.is-highlighted,
|
|
|
|
&.is-selected,
|
2017-12-13 17:49:32 +08:00
|
|
|
&:hover {
|
2020-08-04 10:57:10 +08:00
|
|
|
background: var(--tertiary-low);
|
|
|
|
color: var(--primary);
|
2017-12-13 17:49:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|