diff --git a/dist/css/bootstrap-theme.css.map b/dist/css/bootstrap-theme.css.map index ade620f11..0e71c81ef 100644 Binary files a/dist/css/bootstrap-theme.css.map and b/dist/css/bootstrap-theme.css.map differ diff --git a/dist/css/bootstrap.css.map b/dist/css/bootstrap.css.map index 3b6e0ad8d..7938a088c 100644 Binary files a/dist/css/bootstrap.css.map and b/dist/css/bootstrap.css.map differ diff --git a/docs/dist/css/bootstrap-theme.css.map b/docs/dist/css/bootstrap-theme.css.map index ade620f11..0e71c81ef 100644 Binary files a/docs/dist/css/bootstrap-theme.css.map and b/docs/dist/css/bootstrap-theme.css.map differ diff --git a/docs/dist/css/bootstrap.css.map b/docs/dist/css/bootstrap.css.map index 3b6e0ad8d..7938a088c 100644 Binary files a/docs/dist/css/bootstrap.css.map and b/docs/dist/css/bootstrap.css.map differ diff --git a/less/button-groups.less b/less/button-groups.less index 912d2e68f..36d165b20 100644 --- a/less/button-groups.less +++ b/less/button-groups.less @@ -239,7 +239,7 @@ input[type="checkbox"] { position: absolute; z-index: -1; - .opacity(0); + opacity: 0; } } } diff --git a/less/carousel.less b/less/carousel.less index e42378af2..f871545cc 100644 --- a/less/carousel.less +++ b/less/carousel.less @@ -72,7 +72,7 @@ left: 0; bottom: 0; width: @carousel-control-width; - .opacity(@carousel-control-opacity); + opacity: @carousel-control-opacity; font-size: @carousel-control-font-size; color: @carousel-control-color; text-align: center; @@ -96,7 +96,7 @@ outline: 0; color: @carousel-control-color; text-decoration: none; - .opacity(.9); + opacity: .9; } // Toggles diff --git a/less/component-animations.less b/less/component-animations.less index a771ec96b..ac48e8514 100644 --- a/less/component-animations.less +++ b/less/component-animations.less @@ -2,11 +2,6 @@ // Component animations // -------------------------------------------------- -// Heads up! -// -// We don't use the `.opacity()` mixin here since it causes a bug with text -// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552. - .fade { opacity: 0; transition: opacity .15s linear; diff --git a/less/mixins.less b/less/mixins.less index 0dcda5831..627cae318 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -12,7 +12,6 @@ // Utilities @import "mixins/hide-text.less"; -@import "mixins/opacity.less"; @import "mixins/image.less"; @import "mixins/labels.less"; @import "mixins/reset-filter.less"; diff --git a/less/mixins/opacity.less b/less/mixins/opacity.less deleted file mode 100644 index 1f7148099..000000000 --- a/less/mixins/opacity.less +++ /dev/null @@ -1,5 +0,0 @@ -// Opacity - -.opacity(@opacity) { - opacity: @opacity; -}