mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 10:44:14 +08:00
78 lines
1.5 KiB
SCSS
Vendored
78 lines
1.5 KiB
SCSS
Vendored
.topic-list-layout-content {
|
|
.btn.--with-description {
|
|
display: grid;
|
|
grid-template-areas: "icon title" "icon description";
|
|
grid-template-columns: auto 1fr;
|
|
text-align: left;
|
|
|
|
.btn__description {
|
|
grid-area: description;
|
|
width: 100%;
|
|
font-size: var(--font-down-1);
|
|
color: var(--primary-high);
|
|
}
|
|
}
|
|
|
|
.btn:focus {
|
|
background: transparent;
|
|
}
|
|
|
|
.btn:focus-visible {
|
|
outline: 2px solid var(--tertiary);
|
|
background: transparent;
|
|
outline-offset: -2px;
|
|
}
|
|
}
|
|
|
|
.topic-list-layout-table-ai {
|
|
.topic-list-item {
|
|
.link-bottom-line {
|
|
font-size: var(--font-down-1);
|
|
margin-top: 0.25em;
|
|
line-height: var(--line-height-medium);
|
|
}
|
|
|
|
.excerpt {
|
|
width: 100%;
|
|
line-height: var(--line-height-large);
|
|
margin-bottom: var(--space-2);
|
|
color: currentcolor;
|
|
|
|
&__contents {
|
|
max-width: 70ch;
|
|
overflow-wrap: break-word;
|
|
}
|
|
}
|
|
|
|
&:not(.visited) {
|
|
.excerpt {
|
|
color: var(--primary-high);
|
|
}
|
|
}
|
|
}
|
|
|
|
.topic-excerpt {
|
|
display: none;
|
|
}
|
|
|
|
.mobile-view & {
|
|
.topic-list-item .excerpt {
|
|
display: block;
|
|
margin-top: 0.5em;
|
|
margin-bottom: 0;
|
|
font-size: var(--font-down-1);
|
|
}
|
|
|
|
.topic-item-stats .num.activity {
|
|
align-self: end;
|
|
margin-bottom: -0.15em; // vertical alignment
|
|
}
|
|
}
|
|
}
|
|
|
|
.user-navigation-secondary {
|
|
.topic-list-layout-trigger {
|
|
// put PM toggle before new PM button
|
|
order: -1;
|
|
}
|
|
}
|