New .plain6

I honestly need better naming sense
This commit is contained in:
Lim Chee Aun 2024-03-05 19:11:50 +08:00
parent c0ad216227
commit c9a48cf482
2 changed files with 9 additions and 1 deletions

View file

@ -267,6 +267,14 @@ button[hidden] {
:is(button, .button).plain5:not(:disabled, .disabled):is(:hover, :focus) {
text-decoration: underline;
}
:is(button, .button).plain6 {
background-color: var(--bg-blur-color);
color: var(--link-color);
border: 1px solid var(--link-color);
}
:is(button, .button).plain6:not(:disabled, .disabled):is(:hover, :focus) {
background-color: var(--link-bg-color);
}
:is(button, .button).light {
background-color: var(--bg-faded-color);
color: var(--text-color);

View file

@ -1210,7 +1210,7 @@ function Catchup() {
selectedAuthor && authorCountsList.length > 1 ? (
<button
type="button"
class="plain small"
class="plain6 small"
onClick={() => {
setSelectedAuthor(null);
}}