53 lines
782 B
SCSS
53 lines
782 B
SCSS
.root {
|
|
display: flex !important;
|
|
gap: 0.25rem;
|
|
align-items: center;
|
|
|
|
.statusTransition {
|
|
width: 1.5em !important;
|
|
height: 1.5em !important;
|
|
}
|
|
}
|
|
|
|
.fullName {
|
|
overflow: hidden;
|
|
|
|
margin-bottom: 0;
|
|
|
|
font-size: 1em;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
|
|
&.canCopy {
|
|
pointer-events: all;
|
|
}
|
|
}
|
|
|
|
.statusTransitionSlide {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.monoforumBadge {
|
|
padding: 0.125rem 0.25rem;
|
|
border-radius: 0.25rem;
|
|
|
|
font-size: 0.625rem;
|
|
font-weight: 500;
|
|
line-height: 1;
|
|
color: var(--color-white);
|
|
|
|
background-color: var(--color-gray);
|
|
}
|
|
|
|
.statusPrimaryColor {
|
|
color: var(--color-primary);
|
|
|
|
:global(.statusSparkles) {
|
|
color: var(--accent-color);
|
|
:global(.selected) & {
|
|
color: white;
|
|
}
|
|
}
|
|
}
|