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
diff options
context:
space:
mode:
authorGaƫl Poupard <gael.poupard@orange.com>2020-12-04 18:55:50 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-12-06 19:42:40 +0300
commit6a27618d211da5eef90cd163f623446f88bf03dd (patch)
tree26423866b7407a0f57e5deb940e52b669e5ea616 /scss/_tooltip.scss
parent4eea630d16ae7bfa114fdc2f488420236c59576e (diff)
fix(RTL)
Diffstat (limited to 'scss/_tooltip.scss')
-rw-r--r--scss/_tooltip.scss16
1 files changed, 8 insertions, 8 deletions
diff --git a/scss/_tooltip.scss b/scss/_tooltip.scss
index 60c860c674..2993bf7ded 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;
}
}
}