From 647f2c78c3b15d2c49d6fda950e2ccc0825d015c Mon Sep 17 00:00:00 2001 From: Sergei Maertens Date: Mon, 20 Nov 2023 14:57:41 +0100 Subject: [PATCH] :fire: [#36] Remove CSS fix that isn't needed after all While debugging we had some odd hover behaviour, but after talking to @Robbert from NL DS this should not have been needed. After reinstalling dependencies it appears to work as intended, so we remove our CSS patch. --- src/scss/components/_anchor.scss | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/scss/components/_anchor.scss b/src/scss/components/_anchor.scss index 6ee9191e3..da3661679 100644 --- a/src/scss/components/_anchor.scss +++ b/src/scss/components/_anchor.scss @@ -72,14 +72,3 @@ @extend .utrecht-link, .utrecht-link--openforms; } } - -.utrecht-link { - @include bem.modifier('placeholder') { - &:hover { - // there does not appear to be a design token for placeholder-hover-color, - // and the CSS prefers using --utrecht-link-color which incorrectly hints that - // the link can be used. TODO: report upstream - color: var(--utrecht-link-placeholder-color); - } - } -}