From 8ac77aa9f4f31e53f7ce181357f49bfcb2e862ef Mon Sep 17 00:00:00 2001 From: Henry Wilkinson Date: Thu, 20 Jul 2023 13:10:16 -0400 Subject: [PATCH] Remove x icon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaces with typographical "×" character to reduce confusion with close icons elsewhere. --- .../components/PlaybackRateButton.scss | 21 +------------------ 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/stylesheets/components/PlaybackRateButton.scss b/stylesheets/components/PlaybackRateButton.scss index 5ff240b9b2..75d63eb6d8 100644 --- a/stylesheets/components/PlaybackRateButton.scss +++ b/stylesheets/components/PlaybackRateButton.scss @@ -46,25 +46,6 @@ } &::after { - content: ''; - display: inline-block; - width: 8px; - height: 8px; - margin-inline-start: 2px; - - @mixin x-icon($color) { - @include color-svg('../images/icons/v3/x/x-compact.svg', $color, false); - } - - @include light-theme { - @include x-icon($color-gray-60); - } - @include dark-theme { - @include x-icon($color-gray-25); - } - - .module-message__audio-attachment--outgoing & { - @include x-icon($color-white-alpha-80); - } + content: '×'; } }