From c068deb47ea2c2c0d77ad07393bb9a4a7520ebdc Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Fri, 27 Sep 2019 19:55:45 +0200 Subject: [PATCH] Avoid some text decoration on app title in various states --- src/theme.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/theme.scss b/src/theme.scss index 2c813a7ce..aaf455b02 100644 --- a/src/theme.scss +++ b/src/theme.scss @@ -490,7 +490,9 @@ multiselect { a { color: black; - &:hover { + &:hover, + &:active, + &:focus { text-decoration: none; color: $brand-primary; }