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

87 lines
1.6 KiB
SCSS
Raw Normal View History

2013-02-05 14:16:51 -05:00
@import "foundation/variables";
@import "foundation/mixins";
// --------------------------------------------------
// Badges
// --------------------------------------------------
// Base
// --------------------------------------------------
%badge {
display: inline-block;
font-weight: bold;
line-height: 1;
white-space: nowrap;
2013-08-02 06:46:36 -04:00
@include border-radius-all(10px);
2013-02-05 14:16:51 -05:00
}
// Category badge
// --------------------------------------------------
.badge-category {
padding: 4px 6px;
2013-02-05 14:16:51 -05:00
color: $white;
font-size: 12px;
font-weight: bold;
white-space: nowrap;
2013-02-05 14:16:51 -05:00
&[href] {
color: $white;
}
}
// Notification badge
// --------------------------------------------------
.badge-notification {
@extend %badge;
2013-08-02 06:46:36 -04:00
margin-left: 3px;
padding: 3px 5px;
2013-02-05 14:16:51 -05:00
color: $white;
font-size: 11px;
background-color: $badge-notification-background-color;
&[href] {
color: $white;
}
// New posts
&.new-posts {
background-color: $blue;
}
// Click count
&.clicks {
font-weight: normal;
background-color: rgba($black, 0.15)
}
}
// Posts badge
// --------------------------------------------------
.badge-posts {
color: $badge-posts-color;
font-weight: bold;
font-size: 14px;
line-height: 1;
&[href] {
color: $badge-posts-color;
}
}
// Group badge
// --------------------------------------------------
.badge-group {
@extend %badge;
padding: 3px 5px;
color: $black;
text-shadow: 0 1px 0 rgba($white, 0.2);
background-color: #ddd;
border-color: #aaa;
font-size: 12px;
@include box-shadow(inset 0 1px 0 rgba($white, 0.52));
}