Skip to content

Commit

Permalink
Remove invalid label type
Browse files Browse the repository at this point in the history
Fixes #217
  • Loading branch information
lkhrs committed Nov 1, 2024
1 parent 91d827c commit f225af9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions simple.css
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,7 @@ button,
a.button, /* extra specificity to override a */
input[type="submit"],
input[type="reset"],
input[type="button"],
label[type="button"] {
input[type="button"] {
border: 1px solid var(--accent);
background-color: var(--accent);
color: var(--accent-text);
Expand Down Expand Up @@ -229,8 +228,7 @@ button:enabled:hover,
.button:not([aria-disabled="true"]):hover,
input[type="submit"]:enabled:hover,
input[type="reset"]:enabled:hover,
input[type="button"]:enabled:hover,
label[type="button"]:hover {
input[type="button"]:enabled:hover {
background-color: var(--accent-hover);
border-color: var(--accent-hover);
cursor: pointer;
Expand Down

0 comments on commit f225af9

Please sign in to comment.