mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
227 lines
4.3 KiB
SCSS
227 lines
4.3 KiB
SCSS
// --------------------------------------------------
|
|
// Badges
|
|
// --------------------------------------------------
|
|
|
|
// Base
|
|
// --------------------------------------------------
|
|
|
|
%badge {
|
|
display: inline-block;
|
|
font-weight: normal;
|
|
white-space: nowrap;
|
|
@include border-radius-all(10px);
|
|
}
|
|
|
|
// Category badges
|
|
// --------------------------------------------------
|
|
|
|
.badge-wrapper {
|
|
font-size: $font-down-1;
|
|
font-weight: bold;
|
|
white-space: nowrap;
|
|
position: relative;
|
|
display: inline-flex;
|
|
align-items: baseline;
|
|
|
|
.badge-category {
|
|
display: inline-flex;
|
|
align-items: baseline;
|
|
.category-name {
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
.d-icon {
|
|
margin-right: 3px;
|
|
}
|
|
}
|
|
|
|
// ----- Bullet
|
|
|
|
&.bullet {
|
|
margin-right: 12px;
|
|
span.badge-category {
|
|
color: $primary;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
.extra-info-wrapper & {
|
|
color: $header-primary;
|
|
}
|
|
}
|
|
.badge-category-parent-bg, .badge-category-bg {
|
|
width: 9px;
|
|
height: 9px;
|
|
margin-right: 5px;
|
|
display: inline-block;
|
|
}
|
|
.badge-category-parent-bg { // Subcategories
|
|
width: 5px;
|
|
margin-right: 0;
|
|
+.badge-category-bg {
|
|
width: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
// ----- Box
|
|
|
|
&.box {
|
|
margin-right: 5px;
|
|
padding: 2px 4px 2px 4px;
|
|
display: inline-flex;
|
|
span {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
&.badge-category-bg, &.badge-category-parent-bg {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
&.badge-category-parent-bg { // Subcategories
|
|
width: calc(100% - 5px);
|
|
& + .badge-category-bg {
|
|
left: 5px;
|
|
width: calc(100% - 5px);
|
|
& + .badge-category {
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.badge-category {
|
|
position: relative;
|
|
}
|
|
}
|
|
+ .topic-header-extra {
|
|
padding: 2px 4px 2px 4px;
|
|
}
|
|
}
|
|
|
|
// ----- Bar
|
|
|
|
&.bar {
|
|
margin-right: 5px;
|
|
|
|
span.badge-category {
|
|
color: $primary;
|
|
padding: 1px 3px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
|
|
.extra-info-wrapper & {
|
|
color: $header-primary;
|
|
}
|
|
}
|
|
|
|
.badge-category-parent-bg, .badge-category-bg { // Subcategories
|
|
display: inline-block;
|
|
padding: 0 1px;
|
|
|
|
&:before {
|
|
content: "\a0";
|
|
}
|
|
}
|
|
}
|
|
|
|
// ----- No category style
|
|
|
|
&.none {
|
|
color: $primary;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
// Category badge dropdown
|
|
// --------------------------------------------------
|
|
|
|
.list-controls {
|
|
.category-breadcrumb {
|
|
a.badge-category {
|
|
display: inline-block;
|
|
padding: 6px 8px;
|
|
line-height: $line-height-medium;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Notification badge
|
|
// --------------------------------------------------
|
|
|
|
.badge-notification {
|
|
@extend %badge;
|
|
padding: 3px 5px;
|
|
min-width: 8px;
|
|
vertical-align: middle;
|
|
color: $secondary;
|
|
font-size: $font-down-2;
|
|
line-height: $line-height-small;
|
|
text-align: center;
|
|
background-color: dark-light-choose($primary-low-mid, $secondary-low);
|
|
&[href] {
|
|
color: $secondary;
|
|
}
|
|
|
|
&:hover {
|
|
color: $secondary;
|
|
}
|
|
|
|
// New posts
|
|
|
|
&.new-posts, &.unread-posts {
|
|
background-color: dark-light-choose($tertiary-medium, $tertiary);
|
|
color: dark-light-choose($secondary, $secondary);
|
|
font-weight: dark-light-choose(normal, bold);
|
|
}
|
|
|
|
&.new-topic {
|
|
background-color: transparent;
|
|
color: $tertiary-high;
|
|
font-weight: normal;
|
|
font-size: $font-down-1;
|
|
}
|
|
|
|
&.new-topic::before {
|
|
content: "●";
|
|
margin-right: 2px;
|
|
}
|
|
|
|
// Click count
|
|
|
|
&.clicks {
|
|
font-weight: normal;
|
|
background-color: $primary-low;
|
|
top: -1px;
|
|
color: $primary-medium;
|
|
position: relative;
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
// Posts badge
|
|
// --------------------------------------------------
|
|
|
|
.badge-posts {
|
|
font-weight: normal;
|
|
font-size: $font-0;
|
|
line-height: $line-height-small;
|
|
&[href] {
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
}
|
|
}
|
|
|
|
// Group badge
|
|
// --------------------------------------------------
|
|
|
|
.badge-group {
|
|
@extend %badge;
|
|
padding: 2px 5px;
|
|
color: $primary;
|
|
background-color: $primary-low;
|
|
border-color: $primary-low;
|
|
font-size: $font-down-1;
|
|
}
|