mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-27 13:45:29 +08:00
For increased clarity when scanning the topic list | Before | After | |--------|--------| | <img width="678" height="243" alt="CleanShot 2025-08-05 at 09 57 01" src="https://github.com/user-attachments/assets/72e25e99-40a2-4b3b-94c8-6cdedb006fef" /> | <img width="678" height="243" alt="CleanShot 2025-08-05 at 09 56 41" src="https://github.com/user-attachments/assets/b31c1b87-8620-4db2-9c4e-b1f1be038f73" /> |
116 lines
1.8 KiB
SCSS
Vendored
116 lines
1.8 KiB
SCSS
Vendored
$solved-color: var(--success);
|
|
|
|
.select-kit {
|
|
&.solved-status-filter {
|
|
min-width: auto;
|
|
margin-right: 0.5em;
|
|
|
|
.select-kit-header {
|
|
color: var(--primary-high);
|
|
}
|
|
}
|
|
}
|
|
|
|
.fa.accepted {
|
|
color: $solved-color;
|
|
}
|
|
|
|
.post-controls .extra-buttons {
|
|
// anon text
|
|
.accepted-text {
|
|
white-space: nowrap;
|
|
|
|
.d-icon,
|
|
.accepted-label {
|
|
color: $solved-color;
|
|
}
|
|
}
|
|
|
|
// logged in button
|
|
.accepted {
|
|
.d-icon,
|
|
.d-button-label {
|
|
color: $solved-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.post-controls span.accepted-text {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.25em;
|
|
padding: 0 0.5rem;
|
|
font-size: var(--font-up-1);
|
|
height: 100%;
|
|
}
|
|
|
|
.mobile-view .solved-panel {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.solved-panel {
|
|
.by {
|
|
display: none;
|
|
}
|
|
margin-top: 20px;
|
|
margin-bottom: 0;
|
|
font-size: 13px;
|
|
}
|
|
|
|
aside.quote.accepted-answer {
|
|
> .title {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
&:not(.accepted-answer--has-excerpt) {
|
|
> .title {
|
|
padding: 0.8em;
|
|
}
|
|
|
|
> blockquote {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.accepted-answer--solver-accepter {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex: 1;
|
|
min-width: 0;
|
|
gap: 0.25em;
|
|
}
|
|
|
|
.accepted-answer--solver {
|
|
margin-right: auto;
|
|
}
|
|
|
|
.accepted-answer--accepter {
|
|
font-size: var(--font-down-1);
|
|
width: 100%;
|
|
flex-basis: auto;
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
margin-right: 0.25em;
|
|
|
|
@media (width >= 480px) {
|
|
width: auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
.user-card-metadata-outlet.accepted-answers {
|
|
display: inline-block;
|
|
}
|
|
|
|
.post-action-menu__solved-accepted-tooltip-content
|
|
.fk-d-tooltip__inner-content {
|
|
display: block;
|
|
}
|
|
|
|
.topic-statuses .topic-status.solved {
|
|
.d-icon {
|
|
color: $solved-color;
|
|
}
|
|
}
|