discourse/app/assets/stylesheets/common/select-kit/category-chooser.scss

50 lines
1.1 KiB
SCSS
Raw Normal View History

.select-kit {
2017-10-19 15:51:08 -04:00
&.combo-box {
&.category-chooser {
width: 300px;
.select-kit-row {
2017-10-19 15:51:08 -04:00
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: flex-start;
-ms-flex-align: flex-start;
align-items: flex-start;
2017-10-19 15:51:08 -04:00
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
2017-10-19 15:51:08 -04:00
&.none {
.topic-count {
display: none;
}
}
.topic-count {
2018-01-12 17:27:38 -05:00
font-size: $font-down-2;
2017-10-19 15:51:08 -04:00
color: $primary;
white-space: nowrap;
2017-10-19 15:51:08 -04:00
}
2018-01-12 17:27:38 -05:00
.category-status {
color: $primary;
line-height: $line-height-large;
2018-01-12 17:27:38 -05:00
-webkit-box-flex: 0;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
2018-01-12 17:27:38 -05:00
}
2017-10-19 15:51:08 -04:00
.category-desc {
-webkit-box-flex: 0;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
2017-10-19 15:51:08 -04:00
color: #919191;
2018-01-12 17:27:38 -05:00
font-size: $font-down-1;
line-height: $line-height-large;
2017-10-19 15:51:08 -04:00
}
}
}
}
}