From 135529d350574035ea55e34aa4e7173c7156fbc1 Mon Sep 17 00:00:00 2001 From: Jamie Kyle <113370520+jamiebuilds-signal@users.noreply.github.com> Date: Mon, 27 Nov 2023 15:05:50 -0800 Subject: [PATCH] Fix audio waveform displaying RTL --- stylesheets/components/Waveform.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/stylesheets/components/Waveform.scss b/stylesheets/components/Waveform.scss index 4d3ebb59a3dc..6b74753e1676 100644 --- a/stylesheets/components/Waveform.scss +++ b/stylesheets/components/Waveform.scss @@ -2,6 +2,13 @@ // SPDX-License-Identifier: AGPL-3.0-only .Waveform { + /** + * Progress indicators for audio or video content should always be left-to-right. + * This overrides the default direction of the page. + */ + /* stylelint-disable-next-line declaration-property-value-disallowed-list */ + direction: ltr; + flex-shrink: 0; display: flex;