aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2014-12-26 12:55:08 -0800
committerChris Rebert <[email protected]>2014-12-26 12:55:08 -0800
commita1ce6a1968f170125512710486e6ff73370723c7 (patch)
tree701bd0b28cadd57aceb08c4978ae1ac34820d090
parent556758f3d3f3b83d1901c6f2207995da05dc4acc (diff)
parent27dcdd357d21d1feeebab738f70d342b0a8e0c8f (diff)
downloadbootstrap-a1ce6a1968f170125512710486e6ff73370723c7.tar.xz
bootstrap-a1ce6a1968f170125512710486e6ff73370723c7.zip
Merge pull request #21 from twbs/deprecated-tooltip-placements
Remove deprecated tooltip placements
-rw-r--r--scss/_tooltip.scss29
1 files changed, 0 insertions, 29 deletions
diff --git a/scss/_tooltip.scss b/scss/_tooltip.scss
index 033c19f3b..b1e3f4666 100644
--- a/scss/_tooltip.scss
+++ b/scss/_tooltip.scss
@@ -58,7 +58,6 @@
border-color: transparent;
border-style: solid;
}
-// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1
.tooltip {
&.top .tooltip-arrow {
bottom: 0;
@@ -67,20 +66,6 @@
border-width: $tooltip-arrow-width $tooltip-arrow-width 0;
border-top-color: $tooltip-arrow-color;
}
- &.top-left .tooltip-arrow {
- right: $tooltip-arrow-width;
- bottom: 0;
- margin-bottom: -$tooltip-arrow-width;
- border-width: $tooltip-arrow-width $tooltip-arrow-width 0;
- border-top-color: $tooltip-arrow-color;
- }
- &.top-right .tooltip-arrow {
- bottom: 0;
- left: $tooltip-arrow-width;
- margin-bottom: -$tooltip-arrow-width;
- border-width: $tooltip-arrow-width $tooltip-arrow-width 0;
- border-top-color: $tooltip-arrow-color;
- }
&.right .tooltip-arrow {
top: 50%;
left: 0;
@@ -102,18 +87,4 @@
border-width: 0 $tooltip-arrow-width $tooltip-arrow-width;
border-bottom-color: $tooltip-arrow-color;
}
- &.bottom-left .tooltip-arrow {
- top: 0;
- right: $tooltip-arrow-width;
- margin-top: -$tooltip-arrow-width;
- border-width: 0 $tooltip-arrow-width $tooltip-arrow-width;
- border-bottom-color: $tooltip-arrow-color;
- }
- &.bottom-right .tooltip-arrow {
- top: 0;
- left: $tooltip-arrow-width;
- margin-top: -$tooltip-arrow-width;
- border-width: 0 $tooltip-arrow-width $tooltip-arrow-width;
- border-bottom-color: $tooltip-arrow-color;
- }
}