diff options
author | Geoffrey Eisenbarth <geoffrey.eisenbarth@gmail.com> | 2024-08-21 12:27:15 -0500 |
---|---|---|
committer | Geoffrey Eisenbarth <geoffrey.eisenbarth@gmail.com> | 2024-08-21 12:27:15 -0500 |
commit | f4e06ac8fe66a2d1021fb36b3f31852de826080d (patch) | |
tree | 83a315216011450827465728b2ddcd19032e3ebb | |
parent | f4821b3150bbd58acb2b7dc8363ca13fd0c602f2 (diff) | |
download | missing-f4e06ac8fe66a2d1021fb36b3f31852de826080d.tar.gz missing-f4e06ac8fe66a2d1021fb36b3f31852de826080d.zip |
Remove pointer cursor from button masquerade.
-rw-r--r-- | src/components.css | 2 | ||||
-rw-r--r-- | src/main.css | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/components.css b/src/components.css index a30ec34..92c5326 100644 --- a/src/components.css +++ b/src/components.css @@ -183,7 +183,7 @@ details, padding-inline-start: 0; } - & :where(a, .\<a\>) { + & :where(a:not(.\<button\>), .\<a\>) { font-weight: bold; text-decoration: none; padding-inline: .2em; diff --git a/src/main.css b/src/main.css index 1328e23..ff48a27 100644 --- a/src/main.css +++ b/src/main.css @@ -25,7 +25,7 @@ header, footer, section + section { } nav { - & :where(a, .\<a\>) { + & :where(a:not(.\<button\>), .\<a\>) { text-decoration: none; color: var(--accent); } @@ -284,7 +284,7 @@ main { /* Text-level semantics */ -a, .\<a\> { +a:not(.\<button\>), .\<a\> { color: var(--link-fg, var(--accent)); border-radius: var(--border-radius); outline-offset: 1px; @@ -511,6 +511,7 @@ input::file-selector-button { /* a-specific resets */ color: var(--fg); + cursor: default; text-decoration: none; display: inline-flex; justify-content: center; |