mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 13:38:49 +08:00
ba5e17a7a9
IE11 requires a unit on the third parameter (flex-basis) of the flex property
53 lines
933 B
SCSS
53 lines
933 B
SCSS
.latest-topic-list,
|
|
.top-topic-list {
|
|
@extend .topic-list-icons;
|
|
|
|
.table-heading {
|
|
padding: 12px 5px;
|
|
color: dark-light-choose($primary-medium, $secondary-high);
|
|
}
|
|
|
|
.no-topics,
|
|
.more-topics {
|
|
margin-top: 1em;
|
|
}
|
|
}
|
|
|
|
.latest-topic-list-item {
|
|
padding: 1em;
|
|
border-bottom: 1px solid $primary-low;
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
.topic-poster {
|
|
width: 60px;
|
|
}
|
|
.main-link {
|
|
@extend .topic-list-main-link;
|
|
flex: 0 1 auto;
|
|
max-width: 65%;
|
|
font-size: $font-0;
|
|
.badge-wrapper {
|
|
max-width: 100%;
|
|
.badge-category-bg {
|
|
flex-shrink: 0;
|
|
}
|
|
}
|
|
|
|
.top-row {
|
|
margin-bottom: 0.1em;
|
|
font-size: $font-up-1;
|
|
}
|
|
}
|
|
.topic-stats {
|
|
flex: 1 0 0px;
|
|
text-align: right;
|
|
color: dark-light-choose($primary-medium, $secondary-high);
|
|
}
|
|
|
|
.topic-last-activity a {
|
|
color: dark-light-choose($primary-medium, $secondary-high);
|
|
}
|
|
}
|