Focused style improvements

This commit is contained in:
James Lyne 2021-05-25 23:27:25 +01:00
parent 0690b3d500
commit 7250ffed05
4 changed files with 12 additions and 11 deletions

View File

@ -125,7 +125,7 @@
--background-hover: #cccccc; /* Button :hover/selected */
--background-active: #eeeeee; /* Button :active */
--outline-focus: #222222; /* Button :focus outline */
--outline-focus: #cccccc; /* Button :focus outline */
--border-radius: 1rem;
--border-color: #333333; /* Control borders */

View File

@ -37,10 +37,9 @@
}
@include focus {
outline-color: var(--outline-focus);
outline-width: 0.2rem;
background-color: var(--background-hover);
color: var(--text-hover);
outline: var(--outline-focus) auto thick !important;
background-color: var(--background-base);
color: var(--text-base);
z-index: 1;
}

View File

@ -20,7 +20,7 @@
box-shadow: var(--box-shadow);
margin: 0;
box-sizing: border-box;
overflow: hidden;
overflow: visible;
font-size: 1.5rem;
a, button {

View File

@ -60,7 +60,7 @@ a {
color: var(--text-base);
}
button {
button, [type=button] {
@extend %button;
}
@ -86,7 +86,7 @@ input {
}
}
.js-focus-visible :focus:not(.focus-visible) {
.js-focus-visible :focus:not(.focus-visible):not(:focus-visible) {
outline: none;
}
@ -204,6 +204,7 @@ input {
flex-direction: column;
align-items: center;
padding: 0.5rem 2rem;
overflow: hidden;
.clock__time {
text-align: center;
@ -365,9 +366,10 @@ input {
line-height: 1;
/* Workaround for focus outlines until https://github.com/Leaflet/Leaflet/pull/7259 gets released */
* {
@include focus {
outline: -webkit-focus-ring-color auto thin !important;
outline: revert !important;
outline-style: auto !important;
}
}
}