From 3206d8c549f6701ee4db7278f26fb4d2290b66e3 Mon Sep 17 00:00:00 2001 From: Markus Englund Date: Mon, 11 Sep 2017 14:53:16 +0700 Subject: [PATCH] fix(map): Change styling of map in night mode (#15780) Previously the map had white background color and white color, making it impossible to see the text. I changed the colors to the standard night-mode color variables. I also deleted a css class that was not doing anything. Closes #15702 --- common/app/Map/map.less | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/common/app/Map/map.less b/common/app/Map/map.less index aae0947e77..6e643a33dd 100644 --- a/common/app/Map/map.less +++ b/common/app/Map/map.less @@ -121,7 +121,14 @@ .@{ns}-accordion a:focus, #noneFound { color: #ABABAB; } - .challenge-title { + .@{ns}-challenge-title, .@{ns}-accordion-panel-heading { + background: @night-body-bg; + color: @night-text-color; + a { + color: @night-text-color; + } + } + .@{ns}-caret { color: @night-text-color; } }