From 27dcdd357d21d1feeebab738f70d342b0a8e0c8f Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 15 Dec 2014 17:30:37 -0800 Subject: [PATCH 01/23] remove deprecated tooltip placements --- scss/_tooltip.scss | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/scss/_tooltip.scss b/scss/_tooltip.scss index 3126a2d510..d65d76ffe3 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; - } } From d0c2a82ea863ad2b0612ebff99763e6558693553 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 15 Dec 2014 17:49:35 -0800 Subject: [PATCH 02/23] Use .alert-heading instead of hardcoding

--- docs/javascript/alerts.md | 2 +- scss/_alert.scss | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/javascript/alerts.md b/docs/javascript/alerts.md index bbe2eeab42..8d3df5d2f8 100644 --- a/docs/javascript/alerts.md +++ b/docs/javascript/alerts.md @@ -22,7 +22,7 @@ When using a `.close` button, it must be the first child of the `.alert-dismissi {% example html %}