From f3347a8e1674c98ea044609693fe14f0b9544801 Mon Sep 17 00:00:00 2001 From: Luis Ramos Date: Fri, 1 May 2020 18:40:53 +0100 Subject: [PATCH] Make teal links appear only when the darker background is activated This way links in producers, about, etc, where the background is white will still appear as orange, as per design --- app/assets/stylesheets/darkswarm/shop_tabs.css.scss | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/darkswarm/shop_tabs.css.scss b/app/assets/stylesheets/darkswarm/shop_tabs.css.scss index e23d9c1625..dce28ddde6 100644 --- a/app/assets/stylesheets/darkswarm/shop_tabs.css.scss +++ b/app/assets/stylesheets/darkswarm/shop_tabs.css.scss @@ -85,7 +85,11 @@ background-color: transparent; a { - color: $teal-500; + color: $orange-500; + + &:hover { + color: $orange-600; + } } img { @@ -120,6 +124,10 @@ &.with-darker-background { background-color: $very-light-grey-transparency; + + a { + color: $teal-500; + } } } }