mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-25 06:24:19 +00:00
🔧 Improve accessibility
This commit is contained in:
parent
04024634c8
commit
df117585e5
4 changed files with 13 additions and 1 deletions
|
@ -11,6 +11,10 @@
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.Button:focus-visible {
|
||||||
|
outline: 2px solid var(--outline);
|
||||||
|
}
|
||||||
|
|
||||||
.ButtonGreen {
|
.ButtonGreen {
|
||||||
color: var(--fg-green);
|
color: var(--fg-green);
|
||||||
background-color: var(--bg-green);
|
background-color: var(--bg-green);
|
||||||
|
|
|
@ -34,6 +34,10 @@
|
||||||
color: var(--fg-button-on);
|
color: var(--fg-button-on);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ButtonLink:focus-visible .ButtonSidebar {
|
||||||
|
outline: 2px solid var(--outline);
|
||||||
|
}
|
||||||
|
|
||||||
.ButtonIcon {
|
.ButtonIcon {
|
||||||
font-size: x-large;
|
font-size: x-large;
|
||||||
|
|
||||||
|
|
|
@ -19,4 +19,4 @@
|
||||||
|
|
||||||
color: var(--fg-field-on);
|
color: var(--fg-field-on);
|
||||||
background-color: var(--bg-field-on);
|
background-color: var(--bg-field-on);
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,6 +43,8 @@ body {
|
||||||
|
|
||||||
--bg-red: #863821;
|
--bg-red: #863821;
|
||||||
--fg-red: #FFFFFF;
|
--fg-red: #FFFFFF;
|
||||||
|
|
||||||
|
--outline: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ThemeLight {
|
.ThemeLight {
|
||||||
|
@ -68,4 +70,6 @@ body {
|
||||||
|
|
||||||
--bg-red: #FF8866;
|
--bg-red: #FF8866;
|
||||||
--fg-red: #863821;
|
--fg-red: #863821;
|
||||||
|
|
||||||
|
--outline: black;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue