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
This commit is contained in:
Markus Englund
2017-09-11 14:53:16 +07:00
committed by Timo
parent 9fccba67ec
commit 3206d8c549

View File

@ -121,7 +121,14 @@
.@{ns}-accordion a:focus, #noneFound { .@{ns}-accordion a:focus, #noneFound {
color: #ABABAB; 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; color: @night-text-color;
} }
} }