Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorGaƫl Poupard <ffoodd@users.noreply.github.com>2020-12-10 17:38:42 +0300
committerGitHub <noreply@github.com>2020-12-10 17:38:42 +0300
commit7e47b7ecc972a29997a0e38fd1fc126c51f2f703 (patch)
treec00de4a57158a1aaf91d9c2e81ba7afd71aed886 /scss
parentc34385eb01cb83297323ac22b4192a8f6fdcd1e5 (diff)
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).
Diffstat (limited to 'scss')
-rw-r--r--scss/_dropdown.scss2
1 files changed, 1 insertions, 1 deletions
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
}
}