From 591d4a4a0f63923c271586843a98fae88119f599 Mon Sep 17 00:00:00 2001 From: Sarah Richards Date: Thu, 29 Aug 2024 12:18:28 +0100 Subject: [PATCH] Update to fix tr positioning in safari --- src/css/base/_table.scss | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/css/base/_table.scss b/src/css/base/_table.scss index 3d367c3..0308870 100644 --- a/src/css/base/_table.scss +++ b/src/css/base/_table.scss @@ -7,6 +7,7 @@ } .tr { position: relative; + transform: translate(0); background-color: white; &:hover { background-color: transparent; @@ -83,16 +84,4 @@ } } - //Dirty safari hack since it doesn't support relative positioning on tr - //https://stackoverflow.com/questions/16348489/is-there-a-css-hack-to-affect-safari-only-not-chrome - @media not all and (min-resolution:.001dpcm) - { @supports (-webkit-appearance:none) { - .td__link { - text-decoration: underline; - } - .td__link:before, - .td__link:after { - display: none; - } - }} }