colors and focusing

This commit is contained in:
ReznoRMichael 2021-08-01 22:44:18 +02:00
parent 1bcce2e232
commit 130aca36a2
3 changed files with 17 additions and 1 deletions

View file

@ -476,6 +476,10 @@ input[type="file"] {
/* outline-offset: -2px; */ /* outline-offset: -2px; */
} }
.button:focus:not(:focus-visible) {
border-color: #1e4d6c;
}
.tab-switch { .tab-switch {
background-color: rgba(0, 0, 0, 0); background-color: rgba(0, 0, 0, 0);
color: rgb(0, 180, 156); color: rgb(0, 180, 156);
@ -490,6 +494,10 @@ input[type="file"] {
border: 2px solid rgba(0, 0, 0, 0); border: 2px solid rgba(0, 0, 0, 0);
} }
.tab-active {
box-shadow: 0 0 1rem rgb(0, 180, 156);
}
.tab-switch:focus { .tab-switch:focus {
outline: 0; outline: 0;
border-color: rgb(0, 255, 221); border-color: rgb(0, 255, 221);

File diff suppressed because one or more lines are too long

View file

@ -368,6 +368,10 @@ input[type="file"] {
/* outline-offset: -2px; */ /* outline-offset: -2px; */
} }
.button:focus:not(:focus-visible) {
border-color: #1e4d6c;
}
.tab-switch { .tab-switch {
background-color: rgba(0, 0, 0, 0); background-color: rgba(0, 0, 0, 0);
color: rgb(0, 180, 156); color: rgb(0, 180, 156);
@ -382,6 +386,10 @@ input[type="file"] {
border: 2px solid rgba(0, 0, 0, 0); border: 2px solid rgba(0, 0, 0, 0);
} }
.tab-active {
box-shadow: 0 0 1rem rgb(0, 180, 156);
}
.tab-switch:focus { .tab-switch:focus {
outline: 0; outline: 0;
border-color: rgb(0, 255, 221); border-color: rgb(0, 255, 221);