From 5ba38ddf3f7989d32cec971a857086147c9ac302 Mon Sep 17 00:00:00 2001 From: copyleftie Date: Sat, 1 Jun 2019 01:26:45 -0400 Subject: [PATCH] fix: handle link styles under text selection in Sam theme --- src/scss/themes/sam.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scss/themes/sam.scss b/src/scss/themes/sam.scss index bc11389..295de9e 100644 --- a/src/scss/themes/sam.scss +++ b/src/scss/themes/sam.scss @@ -45,10 +45,10 @@ $scrollbar-track: #99994C; 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: #EEEE9E; } -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: #444400; color: #EEEE9E; }