From 5951e98456ea99ecd593522bdc5d35090cd0fcc8 Mon Sep 17 00:00:00 2001 From: Roman Hudec Date: Sat, 8 Jun 2019 18:58:07 +0200 Subject: [PATCH] allow external links without the external link arrow --- src/core/_sdn/_links.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/_sdn/_links.scss b/src/core/_sdn/_links.scss index 63b8305813..5ba437db1c 100644 --- a/src/core/_sdn/_links.scss +++ b/src/core/_sdn/_links.scss @@ -5,7 +5,7 @@ $icon-external-link: url("../../assets/images/icon-external-link.svg"); $icon-external-link-white: url("../../assets/images/icon-external-link-white.svg"); - a[href*="//"]:not([href*="navody.digital"]):not([href^="#"]):not([href^="/"]):after { + a[href*="//"]:not([href*="navody.digital"]):not([href^="#"]):not([href^="/"]):not(.no-arrow):after { content: "\00a0\00a0\00a0" !important; display: inline-block; margin-left: 3px; @@ -22,7 +22,7 @@ } .govuk-button { - &[href*="//"]:not([href*="navody.digital"]):not([href^="#"]):not([href^="/"]):after { + &[href*="//"]:not([href*="navody.digital"]):not([href^="#"]):not([href^="/"]):not(.no-arrow):after { background-image: $icon-external-link-white !important; } }