Message focus with tab key

merge-requests/8/head
Bob Mottram 2020-08-14 20:38:56 +01:00
parent fe4571fa6c
commit fc81148eba
1 changed files with 10 additions and 1 deletions

View File

@ -54,6 +54,7 @@
--timeline-border-radius: 30px; --timeline-border-radius: 30px;
--icons-side: right; --icons-side: right;
--title-color: #999; --title-color: #999;
--focus-color: white;
} }
@font-face { @font-face {
@ -77,7 +78,7 @@ body, html {
} }
.imageAnchor:focus img{ .imageAnchor:focus img{
border: 2px solid blue; border: 2px solid var(--focus-color);
} }
h1 { h1 {
@ -287,6 +288,14 @@ a:link {
width: 90%; width: 90%;
} }
.message:focus{
border: 2px solid var(--focus-color);
}
.message:focus img{
border: 2px solid var(--focus-color);
}
.gitpatch { .gitpatch {
width: 90%; width: 90%;
font-family: 'monospace'; font-family: 'monospace';