discourse/app/assets/stylesheets/common/components/badges.css.scss

128 lines
2.3 KiB
SCSS
Raw Normal View History

2013-02-06 03:16:51 +08:00
// --------------------------------------------------
// Badges
// --------------------------------------------------
// Base
// --------------------------------------------------
%badge {
display: inline-block;
font-weight: normal;
2013-02-06 03:16:51 +08:00
white-space: nowrap;
2013-08-02 18:46:36 +08:00
@include border-radius-all(10px);
2013-02-06 03:16:51 +08:00
}
// Category badge
// --------------------------------------------------
.badge-category, .badge-category-parent {
2013-02-06 03:16:51 +08:00
font-size: 12px;
font-weight: bold;
white-space: nowrap;
display: inline-block;
line-height: 1;
2014-03-22 03:33:30 +08:00
}
.badge-wrapper {
white-space: nowrap;
}
.badge-category {
padding: 6px;
color: $secondary;
2013-02-06 03:16:51 +08:00
&[href] {
color: $secondary;
2013-02-06 03:16:51 +08:00
}
}
.badge-category-parent {
padding: 6px 2px;
width: 2px;
.category-name {
display: none;
}
&:before {
content: "\a0";
}
2013-02-06 03:16:51 +08:00
}
.d-dropdown .badge-category {
&.restricted {
div {
display: inline-block;
margin: 0;
}
}}
h1 a.badge-category div {vertical-align: top;}
2013-02-06 03:16:51 +08:00
// Notification badge
// --------------------------------------------------
.badge-notification {
@extend %badge;
padding: 3px;
2014-07-26 11:06:14 +08:00
color: $secondary;
2013-02-06 03:16:51 +08:00
font-size: 11px;
2014-03-13 11:17:18 +08:00
line-height: 1;
min-width: 11px;
2013-08-03 03:41:02 +08:00
text-align: center;
2014-07-26 11:06:14 +08:00
background-color: scale-color($primary, $lightness: 70%);
2013-02-06 03:16:51 +08:00
&[href] {
2014-07-26 11:06:14 +08:00
color: $secondary;
2013-02-06 03:16:51 +08:00
}
2014-09-03 14:48:37 +08:00
&.new-posts {
background-color: transparent;
color: scale-color($tertiary, $lightness: 50%);
font-weight: normal;
}
&.unread-posts {
2014-07-26 11:06:14 +08:00
background-color: scale-color($tertiary, $lightness: 50%);
color: $secondary;
font-weight: normal;
2013-02-06 03:16:51 +08:00
}
2014-03-13 11:17:18 +08:00
2013-02-06 03:16:51 +08:00
// Click count
&.clicks {
font-weight: normal;
background-color: #ddd;
top: -1px;
2013-11-18 11:32:58 +08:00
color: #888;
position: relative;
margin-left: 2px;
2014-07-26 00:22:55 +08:00
border: none;
2013-02-06 03:16:51 +08:00
}
}
// Posts badge
// --------------------------------------------------
.badge-posts {
font-weight: normal;
2013-02-06 03:16:51 +08:00
font-size: 14px;
line-height: 1;
&[href] {
color: scale-color($primary, $lightness: 40%);
2013-02-06 03:16:51 +08:00
}
}
// Group badge
// --------------------------------------------------
.badge-group {
@extend %badge;
padding: 3px 5px;
color: $primary;
text-shadow: 0 1px 0 rgba($primary, 0.1);
2014-08-06 21:31:13 +08:00
background-color: dark-light-diff($primary, $secondary, 90%, -65%);
border-color: dark-light-diff($primary, $secondary, 90%, -65%);
font-size: 12px;
2014-08-06 21:31:13 +08:00
@include box-shadow(inset 0 1px 0 rgba(0,0,0, 0.22));
}