1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2026-09-14 07:38:51 +00:00

ui: Keyboard accessibility focus highlights (#180)

* Focus indication for mailbox message list
* Add focus for monitor message list
This commit is contained in:
James Hillyerd
2020-09-22 14:11:06 -07:00
committed by GitHub
parent 407ae87a3b
commit 361bbec293
2 changed files with 23 additions and 0 deletions
+8
View File
@@ -9,6 +9,8 @@
--border-color: #ddd;
--placeholder-color: #9f9f9f;
--selected-color: #eee;
--focused-color: #fff;
--focused-bg-color: #337ab7;
}
html, body, div, span, applet, object, iframe,
@@ -352,3 +354,9 @@ h3 {
background-color: var(--selected-color);
cursor: pointer;
}
.monitor tr:focus {
color: var(--focused-color);
background-color: var(--focused-bg-color);
outline: none;
}