diff options
| author | Gaƫl Poupard <[email protected]> | 2020-12-04 17:55:50 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2020-12-06 18:42:40 +0200 |
| commit | 6a27618d211da5eef90cd163f623446f88bf03dd (patch) | |
| tree | 26423866b7407a0f57e5deb940e52b669e5ea616 /scss/_tooltip.scss | |
| parent | 4eea630d16ae7bfa114fdc2f488420236c59576e (diff) | |
| download | bootstrap-6a27618d211da5eef90cd163f623446f88bf03dd.tar.xz bootstrap-6a27618d211da5eef90cd163f623446f88bf03dd.zip | |
fix(RTL)
Diffstat (limited to 'scss/_tooltip.scss')
| -rw-r--r-- | scss/_tooltip.scss | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/scss/_tooltip.scss b/scss/_tooltip.scss index 60c860c67..2993bf7de 100644 --- a/scss/_tooltip.scss +++ b/scss/_tooltip.scss @@ -47,14 +47,14 @@ padding: 0 $tooltip-arrow-height; .tooltip-arrow { - left: 0 #{"/* rtl:ignore */"}; + left: 0; width: $tooltip-arrow-height; height: $tooltip-arrow-width; &::before { - right: -1px #{"/* rtl:ignore */"}; - border-width: ($tooltip-arrow-width / 2) $tooltip-arrow-height ($tooltip-arrow-width / 2) 0 #{"/* rtl:ignore */"}; - border-right-color: $tooltip-arrow-color #{"/* rtl:ignore */"}; + right: -1px; + border-width: ($tooltip-arrow-width / 2) $tooltip-arrow-height ($tooltip-arrow-width / 2) 0; + border-right-color: $tooltip-arrow-color; } } } @@ -77,14 +77,14 @@ padding: 0 $tooltip-arrow-height; .tooltip-arrow { - right: 0 #{"/* rtl:ignore */"}; + right: 0; width: $tooltip-arrow-height; height: $tooltip-arrow-width; &::before { - left: -1px #{"/* rtl:ignore */"}; - border-width: ($tooltip-arrow-width / 2) 0 ($tooltip-arrow-width / 2) $tooltip-arrow-height #{"/* rtl:ignore */"}; - border-left-color: $tooltip-arrow-color #{"/* rtl:ignore */"}; + left: -1px; + border-width: ($tooltip-arrow-width / 2) 0 ($tooltip-arrow-width / 2) $tooltip-arrow-height; + border-left-color: $tooltip-arrow-color; } } } |
