From 8af55f380f1f6d9bd3695ebc7e458b7fc59825e7 Mon Sep 17 00:00:00 2001 From: silverwind Date: Sat, 4 Feb 2023 04:17:43 +0100 Subject: [PATCH] Fix color of tertiary button on dark theme (#22739) Before: Screenshot 2023-02-03 at 14 07 34 After: Screenshot 2023-02-03 at 14 07 52 This is the only instance of such a button in all templates. --------- Co-authored-by: Lauris BH Co-authored-by: Lunny Xiao --- web_src/less/_base.less | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/web_src/less/_base.less b/web_src/less/_base.less index 09ed50377677d..f03eb678189f0 100644 --- a/web_src/less/_base.less +++ b/web_src/less/_base.less @@ -2126,9 +2126,7 @@ a.ui.label:hover { border: 1px solid var(--color-light-border); color: var(--color-text); } -.ui.tertiary.button { - border: none; -} + .page-content .ui.button { box-shadow: none !important; } @@ -2244,6 +2242,15 @@ a.ui.label:hover { color: var(--color-secondary-dark-8) !important; } +.ui.tertiary.button { + color: var(--color-text-light); + border: none; +} + +.ui.tertiary.button:hover { + color: var(--color-text); +} + .ui.primary.label, .ui.primary.labels .label { background-color: var(--color-primary) !important;