From a79f8d4ce99bfd197341afa36e0413970874a948 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Sun, 7 Jul 2013 17:09:25 +0200 Subject: [PATCH] Style optimization --- wcfsetup/install/files/style/bootstrap/mixin.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wcfsetup/install/files/style/bootstrap/mixin.less b/wcfsetup/install/files/style/bootstrap/mixin.less index 638b29781e..433d1b32fa 100644 --- a/wcfsetup/install/files/style/bootstrap/mixin.less +++ b/wcfsetup/install/files/style/bootstrap/mixin.less @@ -20,10 +20,10 @@ // sets default text shadows depending on background color .textShadow(@backgroundColor) when (lightness(@backgroundColor) >= 40%) { - text-shadow: 0 1px 0 rgba(255, 255, 255, .8); + text-shadow: 0 1px 0 @wcfTextShadowLightColor; } .textShadow(@backgroundColor) when (lightness(@backgroundColor) < 60%) { - text-shadow: 0 -1px 0 rgba(0, 0, 0, .8); + text-shadow: 0 -1px 0 @wcfTextShadowDarkColor; } /* CSS 3 */ -- 2.20.1