mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-23 09:06:23 +01: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) {
|
:is(button, .button).plain5:not(:disabled, .disabled):is(:hover, :focus) {
|
||||||
text-decoration: underline;
|
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 {
|
:is(button, .button).light {
|
||||||
background-color: var(--bg-faded-color);
|
background-color: var(--bg-faded-color);
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
|
|
|
@ -1210,7 +1210,7 @@ function Catchup() {
|
||||||
selectedAuthor && authorCountsList.length > 1 ? (
|
selectedAuthor && authorCountsList.length > 1 ? (
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="plain small"
|
class="plain6 small"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setSelectedAuthor(null);
|
setSelectedAuthor(null);
|
||||||
}}
|
}}
|
||||||
|
|
Loading…
Reference in a new issue