From c936439ad54190d463788aa8dd536620025bfcf2 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Tue, 14 Jul 2020 12:52:28 +0200 Subject: [PATCH] only remove underline for links in element theme --- res/css/_common.scss | 1 - res/themes/element/css/_mods.scss | 6 ++++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/res/css/_common.scss b/res/css/_common.scss index 8998aae7e7..7fead4317e 100644 --- a/res/css/_common.scss +++ b/res/css/_common.scss @@ -75,7 +75,6 @@ a:hover, a:link, a:visited { color: $accent-color-alt; - text-decoration: none; } input[type=text], diff --git a/res/themes/element/css/_mods.scss b/res/themes/element/css/_mods.scss index cc5205ccba..e963be5814 100644 --- a/res/themes/element/css/_mods.scss +++ b/res/themes/element/css/_mods.scss @@ -24,3 +24,9 @@ .mx_RoomSublist2_showNButton { background-color: transparent !important; } + +a:hover, +a:link, +a:visited { + text-decoration: none; +}