mirror of
https://github.com/discourse/discourse.git
synced 2025-03-08 04:09:53 +00:00
41 lines
842 B
SCSS
41 lines
842 B
SCSS
.select-box.category-select-box {
|
|
.select-box-row {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-align: flex-start;
|
|
-ms-flex-align: flex-start;
|
|
align-items: flex-start;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
|
|
&.is-uncategorized {
|
|
.topic-count {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.topic-count {
|
|
font-size: 11px;
|
|
color: $primary;
|
|
}
|
|
|
|
.category-status {
|
|
-webkit-box-flex: 0;
|
|
-ms-flex: 1 1 auto;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.category-desc {
|
|
-webkit-box-flex: 0;
|
|
-ms-flex: 1 1 auto;
|
|
flex: 1 1 auto;
|
|
color: $primary;
|
|
font-size: 0.857em;
|
|
line-height: 16px;
|
|
}
|
|
}
|
|
}
|