From 0d4bee68a997bd0c70ac9a798dc52e7e5a4c0529 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xavier=20Juli=C3=A1n?= Date: Fri, 24 Apr 2015 07:57:54 +0200 Subject: [PATCH] Fix no difference between hover and selected in lightbox --- app/styles/modules/common/lightbox.scss | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/app/styles/modules/common/lightbox.scss b/app/styles/modules/common/lightbox.scss index bdfdd09c..198e7cbf 100644 --- a/app/styles/modules/common/lightbox.scss +++ b/app/styles/modules/common/lightbox.scss @@ -58,7 +58,7 @@ .iocaine { &:hover { background: $fresh-taiga; - border: 1px solid $fresh-taiga; + border: 1px solid $green-taiga; color: $white; transition: all .2s ease-in; } @@ -68,7 +68,7 @@ padding: 8px 30px; &:hover { background: $red-light; - border: 1px solid $red-light; + border: 1px solid $red; color: $white; transition: all .2s ease-in; } @@ -79,14 +79,17 @@ .team-requirement, .iocaine-flag { input:checked+label { - background: $fresh-taiga; + background: $green-taiga; + border: 1px solid $green-taiga; color: $white; + } } .blocking-flag { input:checked+label { background: $red; + border: 1px solid $red; color: $white; } }