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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

238 lines
4.4 KiB
SCSS
Raw Normal View History

2013-02-05 14:16:51 -05:00
// --------------------------------------------------
// Badges
// --------------------------------------------------
// Base
// --------------------------------------------------
%badge {
display: inline-block;
font-weight: normal;
2013-02-05 14:16:51 -05:00
white-space: nowrap;
2018-07-12 16:38:51 -04:00
border-radius: 10px;
2013-02-05 14:16:51 -05:00
}
2015-03-04 22:15:21 -05:00
// Category badges
2013-02-05 14:16:51 -05:00
// --------------------------------------------------
2015-03-04 22:15:21 -05:00
.badge-wrapper {
2018-01-12 17:27:38 -05:00
font-size: $font-down-1;
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;
width: 0.74em;
height: 0.74em;
color: inherit;
}
}
2015-01-29 01:34:05 -05:00
// ----- Bullet
&.bullet {
margin-right: 12px;
2015-03-09 12:25:27 -04:00
span.badge-category {
color: var(--primary-high);
overflow: hidden;
text-overflow: ellipsis;
2015-03-09 12:25:27 -04:00
.extra-info-wrapper & {
color: var(--header-primary);
2015-03-09 12:25:27 -04:00
}
}
.badge-category-parent-bg,
.badge-category-bg {
flex: 0 0 auto;
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;
}
}
.d-icon {
color: var(--primary-medium);
}
}
2015-03-09 12:25:27 -04:00
// ----- Box
2015-03-09 12:25:27 -04:00
&.box {
2015-04-14 15:54:17 -04:00
margin-right: 5px;
2018-02-02 21:29:51 -05:00
padding: 2px 4px 2px 4px;
display: inline-flex;
span {
overflow: hidden;
text-overflow: ellipsis;
&.badge-category-bg,
&.badge-category-parent-bg {
2015-03-04 22:15:21 -05:00
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
2015-03-04 22:15:21 -05:00
}
&.badge-category-parent-bg {
// Subcategories
2015-03-04 22:15:21 -05:00
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: var(--primary-high);
padding: 1px 3px;
overflow: hidden;
text-overflow: ellipsis;
.extra-info-wrapper & {
color: var(--header-primary);
}
}
.badge-category-parent-bg,
.badge-category-bg {
// Subcategories
display: inline-block;
padding: 0 1px;
&:before {
content: "\a0";
2015-03-04 22:15:21 -05:00
}
}
}
2015-01-30 01:57:46 -05:00
// ----- No category style
&.none {
color: var(--primary-high);
margin-right: 5px;
}
}
2015-03-04 22:15:21 -05:00
// Category badge dropdown
// --------------------------------------------------
2015-03-04 22:15:21 -05:00
.list-controls {
.category-breadcrumb {
a.badge-category {
2015-03-04 22:15:21 -05:00
display: inline-block;
2018-01-12 17:27:38 -05:00
padding: 6px 8px;
line-height: $line-height-medium;
2015-03-04 22:15:21 -05:00
}
2015-01-29 01:48:55 -05:00
}
}
2013-02-05 14:16:51 -05:00
// Notification badge
// --------------------------------------------------
.badge-notification {
@extend %badge;
2019-01-17 15:46:55 -05:00
padding: 0.21em 0.42em;
min-width: 0.5em;
color: var(--secondary);
2018-01-12 17:27:38 -05:00
font-size: $font-down-2;
line-height: $line-height-small;
2013-08-02 15:41:02 -04:00
text-align: center;
background-color: var(--primary-low-mid-or-secondary-low);
2013-02-05 14:16:51 -05:00
&[href] {
color: var(--secondary);
2013-02-05 14:16:51 -05:00
}
&:hover {
color: var(--secondary);
}
// New posts
2013-02-05 14:16:51 -05:00
&.new-posts,
&.unread-posts {
background-color: var(--tertiary-med-or-tertiary);
color: var(--secondary);
2015-08-18 15:28:58 -04:00
font-weight: dark-light-choose(normal, bold);
2013-02-05 14:16:51 -05:00
}
&.new-topic {
background-color: transparent;
}
2014-09-03 16:33:56 -04:00
&.new-topic::before {
content: "";
background: var(--tertiary-high);
display: inline-block;
height: 0.4em;
width: 0.4em;
border-radius: 50%;
2014-09-03 16:33:56 -04:00
}
2013-02-05 14:16:51 -05:00
// Click count
&.clicks {
font-weight: normal;
background-color: var(--primary-low);
top: -1px;
color: var(--primary-medium);
2013-11-17 22:32:58 -05:00
position: relative;
2014-07-25 12:22:55 -04:00
border: none;
2013-02-05 14:16:51 -05:00
}
}
// Posts badge
// --------------------------------------------------
.badge-posts {
font-weight: normal;
2018-01-12 17:27:38 -05:00
font-size: $font-0;
line-height: $line-height-small;
2013-02-05 14:16:51 -05:00
&[href] {
color: var(--primary-med-or-secondary-med);
2013-02-05 14:16:51 -05:00
}
}
// Group badge
// --------------------------------------------------
.badge-group {
@extend %badge;
padding: 2px 5px;
color: var(--primary);
background-color: var(--primary-low);
border-color: var(--primary-low);
2018-01-12 17:27:38 -05:00
font-size: $font-down-1;
}