From 0e22c9b2e08fee30c9106aaa0ec18d7c6b64bff5 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Tue, 5 Apr 2016 13:44:53 +0100 Subject: [PATCH] Fix hidden trial mode link MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This link wasn’t styled, therefore it had, by default, the same colour as its background (blue). This commit explicitly sets it to be white, so it is visible against its background. --- app/assets/stylesheets/components/banner.scss | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/app/assets/stylesheets/components/banner.scss b/app/assets/stylesheets/components/banner.scss index 16e6b8868..bf6fdf993 100644 --- a/app/assets/stylesheets/components/banner.scss +++ b/app/assets/stylesheets/components/banner.scss @@ -71,7 +71,27 @@ } &-action { + + display: block; text-align: right; + float: right; + + &:link, + &:visited { + color: $white; + } + + &:hover, + &:active { + color: $light-blue-25; + } + + &:active, + &:focus { + background-color: $yellow; + color: $govuk-blue; + } + } }