mirror of
https://github.com/discourse/discourse.git
synced 2025-02-10 05:14:59 +00:00
40 lines
781 B
SCSS
40 lines
781 B
SCSS
.select-kit {
|
|
&.combo-box {
|
|
&.category-chooser {
|
|
width: 300px;
|
|
|
|
.select-kit-row {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
|
|
&.none {
|
|
.topic-count {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.topic-count {
|
|
font-size: $font-down-1;
|
|
color: var(--primary-medium);
|
|
white-space: nowrap;
|
|
margin-left: 0.5em;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.category-status {
|
|
color: var(--primary);
|
|
line-height: $line-height-large;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.category-desc {
|
|
flex: 1 1 auto;
|
|
font-size: $font-down-1;
|
|
line-height: $line-height-large;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|