mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-22 09:15:33 +03:00
New .plain6
I honestly need better naming sense
This commit is contained in:
parent
c0ad216227
commit
c9a48cf482
2 changed files with 9 additions and 1 deletions
|
@ -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);
|
||||
|
|
|
@ -1210,7 +1210,7 @@ function Catchup() {
|
|||
selectedAuthor && authorCountsList.length > 1 ? (
|
||||
<button
|
||||
type="button"
|
||||
class="plain small"
|
||||
class="plain6 small"
|
||||
onClick={() => {
|
||||
setSelectedAuthor(null);
|
||||
}}
|
||||
|
|
Loading…
Reference in a new issue