mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 05:13:39 +08:00
41 lines
689 B
SCSS
41 lines
689 B
SCSS
.select-kit {
|
|
&.combo-box {
|
|
&.topic-footer-mobile-dropdown {
|
|
.select-kit-row {
|
|
padding: 0.75em 0.5em;
|
|
border-bottom: 1px solid rgba($primary-low, 0.5);
|
|
|
|
.name {
|
|
line-height: $line-height-medium;
|
|
}
|
|
|
|
&:last-child {
|
|
border: none;
|
|
}
|
|
|
|
.d-icon {
|
|
color: $primary-medium;
|
|
}
|
|
|
|
&.is-highlighted {
|
|
background: $tertiary-low;
|
|
|
|
.name {
|
|
color: $primary;
|
|
}
|
|
}
|
|
|
|
&.bookmarked {
|
|
.d-icon {
|
|
color: $tertiary;
|
|
}
|
|
}
|
|
}
|
|
|
|
.select-kit-collection {
|
|
max-height: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|