63 lines
1.2 KiB
SCSS
63 lines
1.2 KiB
SCSS
#badgePlugin {
|
|
#contentContainer {
|
|
display: flex;
|
|
align-content: flex-end;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
#showMoreButton {
|
|
background-color: var(--center-channel-bg);
|
|
color: rgba(var(--center-channel-color), 0.56);
|
|
border: 0;
|
|
border-radius: 4px;
|
|
font-weight: 600;
|
|
height: 24px;
|
|
width: 24px;
|
|
font-size: 18px;
|
|
margin-left: 6px;
|
|
padding: 0;
|
|
|
|
&:hover {
|
|
background: rgba(var(--center-channel-color), 0.08);
|
|
color: rgba(var(--center-channel-color), 0.72);
|
|
}
|
|
}
|
|
|
|
.badge-stacked {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.badge-stack-count {
|
|
position: absolute;
|
|
bottom: -2px;
|
|
right: -4px;
|
|
background: var(--button-bg, #166de0);
|
|
color: #fff;
|
|
font-size: 9px;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
padding: 1px 3px;
|
|
border-radius: 6px;
|
|
min-width: 14px;
|
|
text-align: center;
|
|
pointer-events: none;
|
|
}
|
|
|
|
#grantBadgeButton {
|
|
margin-top: 4px;
|
|
padding-left: 0;
|
|
border: 0;
|
|
background-color: var(--center-channel-bg);
|
|
color: var(--button-bg);
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
gap: 6px;
|
|
line-height: 10px;
|
|
|
|
.fa-plus-circle {
|
|
margin-right: 4px;
|
|
}
|
|
}
|
|
} |