diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2018-09-08 14:34:32 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-09-11 10:58:48 +0200 |
commit | e78980ebd116be1ea901387c126876af902191e6 (patch) | |
tree | ea037d021e1383501e2b79add1a9581ef80a7c99 /client/src/app/videos | |
parent | ecf06378ff95ec35f75de0169a02a974d2c17c62 (diff) | |
download | PeerTube-e78980ebd116be1ea901387c126876af902191e6.tar.gz PeerTube-e78980ebd116be1ea901387c126876af902191e6.tar.zst PeerTube-e78980ebd116be1ea901387c126876af902191e6.zip |
use focus-visible polyfill to improve keyboard navigation
Only the homepage is concerned, but it should have decent keyboard
navigation support now.
Diffstat (limited to 'client/src/app/videos')
-rw-r--r-- | client/src/app/videos/video-list/video-overview.component.scss | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client/src/app/videos/video-list/video-overview.component.scss b/client/src/app/videos/video-list/video-overview.component.scss index f5508cf61..eca8b230f 100644 --- a/client/src/app/videos/video-list/video-overview.component.scss +++ b/client/src/app/videos/video-list/video-overview.component.scss | |||
@@ -19,7 +19,10 @@ | |||
19 | margin-bottom: 20px; | 19 | margin-bottom: 20px; |
20 | 20 | ||
21 | a { | 21 | a { |
22 | @include disable-default-a-behaviour; | 22 | &:hover, &:focus:not(.focus-visible), &:active { |
23 | text-decoration: none; | ||
24 | outline: none; | ||
25 | } | ||
23 | 26 | ||
24 | color: var(--mainForegroundColor); | 27 | color: var(--mainForegroundColor); |
25 | } | 28 | } |