UX: anon solved label color should match logged in button

This commit is contained in:
Joe 2020-06-09 10:41:57 +08:00
parent b2cf82fc3b
commit 5dd60d5511
1 changed files with 11 additions and 3 deletions

View File

@ -22,14 +22,22 @@ $solved-color: green;
margin-left: 7px; margin-left: 7px;
} }
} }
}
.post-controls .extra-buttons {
// anon text
.accepted-text {
.d-icon,
.accepted-label {
color: $solved-color;
}
}
// logged in button
.accepted { .accepted {
.d-icon, .d-icon,
.d-button-label { .d-button-label {
color: $solved-color; color: $solved-color;
.discourse-no-touch & {
color: $solved-color;
}
} }
} }
} }