From 6b29438fc681074becf9a3d6c44d5e300e03412c Mon Sep 17 00:00:00 2001 From: Laura van Helvoort Date: Fri, 13 Dec 2024 13:48:20 +0100 Subject: [PATCH] css --- stylesheets/commons/BattleRoyale/Panel.less | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/stylesheets/commons/BattleRoyale/Panel.less b/stylesheets/commons/BattleRoyale/Panel.less index ab446ff62f..dedfc6ada5 100644 --- a/stylesheets/commons/BattleRoyale/Panel.less +++ b/stylesheets/commons/BattleRoyale/Panel.less @@ -145,6 +145,10 @@ Author(s): Elysienna .panel-content__collapsible.is--collapsed & { &:hover { background-color: rgba( 0, 0, 0, 0.08 ); + + .theme--dark & { + background-color: rgba( 255, 255, 255, .08 ); + } } } } @@ -300,6 +304,10 @@ Author(s): Elysienna cursor: pointer; font-weight: bold; + .theme--dark & { + color: var( --clr-on-background ); + } + &.navigate--left { flex-direction: row-reverse; } @@ -310,11 +318,15 @@ Author(s): Elysienna } &__icon { - color: var( --clr-wiki-on-primary ); + color: var( --clr-wiki-theme-primary, var( --clr-wiki-on-primary ) ); width: 1.5rem; display: flex; justify-content: center; margin: 0 0.5rem; + + .theme--dark & { + color: var( --clr-secondary-70 ); + } } } }