Style inputs and links hover/focus consistently

This commit is contained in:
cryptogopher 2023-04-10 19:00:25 +02:00
parent a46c41197c
commit c524a20005

View File

@ -17,25 +17,43 @@
* { * {
font-family: system-ui; font-family: system-ui;
} }
::selection {
background-color: #006c9b;
color: white;
}
// TODO: convert em to rem // TODO: convert em to rem
body { body {
margin: 0 0.5em; margin: 0 0.5rem;
} }
input { input {
background-color: #ffffff;
border: 1px solid; border: 1px solid;
border-radius: 0.2em; border-radius: 0.2rem;
border-color: #cccccc; border-color: #cccccc;
font-size: 0.9em; }
padding: 0.1em 0.4em; input:not([type=checkbox]) {
font-size: 0.9rem;
padding: 0.1rem 0.4rem;
} }
input[type=checkbox] { input[type=checkbox] {
height: 1em; accent-color: #009ade;
margin: 0; appearance: none;
width: 1em; display: flex;
height: 1.1rem;
margin: 0rem;
width: 1.1rem;
-webkit-appearance: none;
} }
input:focus:not([type=checkbox]) { input:focus, input:hover {
accent-color: #006c9b;
outline: none; outline: none;
background-color: #f3f3f3;
}
input[type=checkbox]:checked {
appearance: checkbox;
-webkit-appearance: checkbox;
} }
.application-menu { .application-menu {
@ -56,6 +74,7 @@ input:focus:not([type=checkbox]) {
font-weight: bold; font-weight: bold;
margin-left: 1em; margin-left: 1em;
padding: 0.6em; padding: 0.6em;
text-decoration: none;
} }
.application-menu a svg { .application-menu a svg {
height: 1.3rem; height: 1.3rem;
@ -64,19 +83,20 @@ input:focus:not([type=checkbox]) {
} }
.application-menu a.active, .application-menu a.active,
.application-menu a:hover, .application-menu a:hover,
.application-menu a:focus-visible, input[type=submit]:hover {
input[type=submit]:hover,
input[type=submit]:focus-visible {
background-color: #009ade; background-color: #009ade;
border-color: #009ade; border-color: #009ade;
color: white; color: white;
cursor: pointer; cursor: pointer;
fill: white; fill: white;
text-decoration: none;
} }
.application-menu a:focus-visible,
a:not(:hover) { input[type=submit]:focus-visible {
text-decoration: none; background-color: #006c9b;
border-color: #006c9b;
color: white;
fill: white;
outline: none;
} }
.flashes { .flashes {
@ -135,6 +155,7 @@ form {
} }
.form-label, .form-field { .form-label, .form-field {
display: table-cell; display: table-cell;
vertical-align: middle;
} }
.form-label { .form-label {
font-size: 0.9em; font-size: 0.9em;