From: Gaƫl Poupard Date: Thu, 10 Dec 2020 14:38:42 +0000 (+0100) Subject: Reset Popper position in RTL (#32415) X-Git-Tag: v5.0.0-beta2~199 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e47b7ecc972a29997a0e38fd1fc126c51f2f703;p=thirdparty%2Fbootstrap.git Reset Popper position in RTL (#32415) The RTL cheatsheet's dropdowns aren't positioned correctly because of RTLCSS transforming `right: auto` to `left:auto` (which conflicts with Popper positioning). --- diff --git a/scss/_dropdown.scss b/scss/_dropdown.scss index f9ad9778b3..594c063990 100644 --- a/scss/_dropdown.scss +++ b/scss/_dropdown.scss @@ -35,7 +35,7 @@ // Reset positioning when positioned with Popper &[style] { - right: auto !important; // stylelint-disable-line declaration-no-important + right: auto#{"/* rtl:ignore */"} !important; // stylelint-disable-line declaration-no-important } }