1
0
mirror of https://github.com/jdan/98.css.git synced 2026-05-05 06:01:22 +09:00

select focus style

This commit is contained in:
Jordan Scales
2020-04-18 11:10:45 -04:00
parent ef88386825
commit 0e9c29ab58
2 changed files with 11 additions and 2 deletions

View File

@@ -328,6 +328,15 @@ textarea:focus {
outline: none;
}
select:focus {
color: var(--button-highlight);
background-color: var(--dialog-blue);
}
select:focus option {
color: #000;
background-color: #fff;
}
select:active {
background-image: url("./button-down-active.svg");
}