From dcedf2c8d6ac4dd19fa46ae6e944cf965703bc38 Mon Sep 17 00:00:00 2001 From: copyleftie Date: Sat, 1 Jun 2019 01:28:58 -0400 Subject: [PATCH] fix: handle link styles on text selection, and on focus --- src/scss/themes/rio.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scss/themes/rio.scss b/src/scss/themes/rio.scss index 37615de..72ed950 100644 --- a/src/scss/themes/rio.scss +++ b/src/scss/themes/rio.scss @@ -38,10 +38,10 @@ $scrollbar-track: #999999 !default; a, a.main-nav-link.svelte-my25xk, .settings-list-item { text-decoration: underline; } -a.mention.u-url, a:hover, a:active, ::selection { +a.mention.u-url, a:hover, a:active, a:focus, ::selection { background: #CCCCCC; } -a.mention.u-url:hover, a.mention.u-url:active { +a.mention.u-url:hover, a.mention.u-url:active, a.mention.u-url:focus, a::selection, a ::selection { background: #2A5858; color: #CCCCCC; }