mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 11:58:27 +00:00
Category badge changes based on the `category style` site setting so we do not want to forcing all category names to the same color. Follow-up to 3266350e80da4508243f667a39fd9d07e031adf1
33 lines
618 B
SCSS
33 lines
618 B
SCSS
.select-kit {
|
|
.select-kit-row.category-row {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
|
|
.category-status {
|
|
display: flex;
|
|
align-items: center;
|
|
max-width: 100%;
|
|
-webkit-box-flex: 0;
|
|
-ms-flex: 1 1 auto;
|
|
flex: 1 1 auto;
|
|
}
|
|
.category-desc p {
|
|
margin: 0;
|
|
}
|
|
.category-status {
|
|
.badge-wrapper.box {
|
|
margin-bottom: 1px;
|
|
margin-top: 1px;
|
|
}
|
|
}
|
|
.category-desc {
|
|
margin: 0;
|
|
font-size: var(--font-down-1);
|
|
color: var(--primary-medium);
|
|
}
|
|
.topic-count {
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
}
|