1
Fork 0
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:
Stefano Pigozzi 2021-04-22 18:26:45 +02:00
parent 04024634c8
commit df117585e5
Signed by untrusted user who does not match committer: steffo
GPG key ID: 6965406171929D01
4 changed files with 13 additions and 1 deletions

View file

@ -11,6 +11,10 @@
cursor: pointer;
}
.Button:focus-visible {
outline: 2px solid var(--outline);
}
.ButtonGreen {
color: var(--fg-green);
background-color: var(--bg-green);

View file

@ -34,6 +34,10 @@
color: var(--fg-button-on);
}
.ButtonLink:focus-visible .ButtonSidebar {
outline: 2px solid var(--outline);
}
.ButtonIcon {
font-size: x-large;

View file

@ -19,4 +19,4 @@
color: var(--fg-field-on);
background-color: var(--bg-field-on);
}
}

View file

@ -43,6 +43,8 @@ body {
--bg-red: #863821;
--fg-red: #FFFFFF;
--outline: white;
}
.ThemeLight {
@ -68,4 +70,6 @@ body {
--bg-red: #FF8866;
--fg-red: #863821;
--outline: black;
}