mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 07:03:42 +08:00
45 lines
832 B
SCSS
Vendored
45 lines
832 B
SCSS
Vendored
.pinned-options-btn,
|
|
.notifications-tracking-btn,
|
|
.composer-actions-btn,
|
|
.composer-toggle-item {
|
|
display: flex;
|
|
flex: 1 0 auto;
|
|
box-sizing: border-box;
|
|
align-items: center;
|
|
|
|
&__icons {
|
|
display: flex;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
&__texts {
|
|
line-height: var(--line-height-medium);
|
|
flex: 1 1 0%;
|
|
align-items: flex-start;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-direction: column;
|
|
}
|
|
|
|
&__label {
|
|
flex: 1 1 auto;
|
|
font-weight: bold;
|
|
font-size: var(--font-0);
|
|
color: var(--primary);
|
|
max-width: 100%;
|
|
|
|
@include ellipsis;
|
|
}
|
|
|
|
&__description {
|
|
flex: 1 1 auto;
|
|
font-size: var(--font-down-1);
|
|
color: var(--primary-medium);
|
|
white-space: normal;
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
.topic-timeline-notifications-tracking-content {
|
|
z-index: z("fullscreen") + 1;
|
|
}
|