From 60d525d27a1535d82e5471eab69e0e1555323e27 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Thu, 30 Mar 2017 17:36:39 +0200 Subject: [PATCH] Focus indicator for ul listings --- skins/elastic/styles/widgets/lists.less | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skins/elastic/styles/widgets/lists.less b/skins/elastic/styles/widgets/lists.less index 24def9f67..1691807c9 100644 --- a/skins/elastic/styles/widgets/lists.less +++ b/skins/elastic/styles/widgets/lists.less @@ -50,9 +50,11 @@ /* Focus indicator */ /* because of border-collapse, we make the left border twice what we want it to be - half will be hidden to the left */ @media screen and (min-width: @screen-width-large) { + li > a, tbody tr > td:first-child { border-left: 2px solid transparent; } + li > a:focus, &.focus tbody tr.focused > td:first-child { border-left: 2px solid @color-list-focus-indicator; }