mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 05:08:00 +02:00
Add focused outline to a, button, input, select
This commit is contained in:
parent
4d8d7dbfc5
commit
ce8c189fde
4 changed files with 39 additions and 6 deletions
|
@ -95,15 +95,25 @@ watch(show, n => {
|
|||
}
|
||||
.modal-buttons button:first-child {
|
||||
color: indianred;
|
||||
}
|
||||
.modal-buttons button:first-child,
|
||||
.modal-buttons button:first-child:focus {
|
||||
border-bottom-left-radius: 0.5rem;
|
||||
}
|
||||
.modal-buttons button:last-child {
|
||||
border: none;
|
||||
}
|
||||
.modal-buttons button:last-child,
|
||||
.modal-buttons button:last-child:focus {
|
||||
border-bottom-right-radius: 0.5rem;
|
||||
}
|
||||
.modal-buttons button:hover {
|
||||
background-color: var(--color-background-mute);
|
||||
}
|
||||
.modal-buttons button:focus {
|
||||
background-color: var(--color-background-mute);
|
||||
border-radius: 0;
|
||||
}
|
||||
.modal-buttons button:active {
|
||||
background-color: var(--color-border);
|
||||
}
|
||||
|
|
|
@ -279,7 +279,6 @@ input {
|
|||
font-size: 1rem;
|
||||
margin: 1rem auto;
|
||||
padding: 0.5rem 0.75rem;
|
||||
outline: none;
|
||||
border: none;
|
||||
color: var(--color-text);
|
||||
max-width: 20rem;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue