From 3406a5c97a28810844e8553cc9d3bdef7712115f Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 22 Dec 2014 14:52:04 -0800 Subject: [PATCH 1/5] Remove holder.js references from syntax-highlighted example HTML Our use of Holder.js in the docs is a mere implementation detail. Don't want to confuse people into thinking Holder.js is somehow required by the Thumbnail component. [skip sauce] --- docs/_includes/components/thumbnails.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_includes/components/thumbnails.html b/docs/_includes/components/thumbnails.html index b41fef72e..766d79f36 100644 --- a/docs/_includes/components/thumbnails.html +++ b/docs/_includes/components/thumbnails.html @@ -33,7 +33,7 @@
... @@ -80,7 +80,7 @@
- ... + ...

Thumbnail label

...

From 15c9c3aef7f047c9cce45fd33ada799e99fbd390 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 22 Dec 2014 16:54:50 -0800 Subject: [PATCH 2/5] add more refs to browser-related bugs in Less comments --- less/carousel.less | 1 + less/close.less | 1 + less/forms.less | 2 +- less/theme.less | 4 ++-- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/less/carousel.less b/less/carousel.less index a28e397a5..4bbe946d3 100644 --- a/less/carousel.less +++ b/less/carousel.less @@ -196,6 +196,7 @@ // Internet Explorer 8-9 does not support clicks on elements without a set // `background-color`. We cannot use `filter` since that's not viewed as a // background color by the browser. Thus, a hack is needed. + // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer // // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we // set alpha transparency for the best results possible. diff --git a/less/close.less b/less/close.less index 9b4e74f2b..6d5bfe087 100644 --- a/less/close.less +++ b/less/close.less @@ -23,6 +23,7 @@ // Additional properties for button version // iOS requires the button element instead of an anchor tag. // If you want the anchor version, it requires `href="#"`. + // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile button& { padding: 0; cursor: pointer; diff --git a/less/forms.less b/less/forms.less index f37d1c8f8..d1e29b118 100644 --- a/less/forms.less +++ b/less/forms.less @@ -143,7 +143,7 @@ output { fieldset[disabled] & { cursor: @cursor-disabled; background-color: @input-bg-disabled; - opacity: 1; // iOS fix for unreadable disabled content + opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655 } // Reset height for `textarea`s diff --git a/less/theme.less b/less/theme.less index a15d16ecd..3673accc0 100644 --- a/less/theme.less +++ b/less/theme.less @@ -36,7 +36,7 @@ // Mixin for generating new styles .btn-styles(@btn-color: #555) { #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%)); - .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners + .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620 background-repeat: repeat-x; border-color: darken(@btn-color, 14%); @@ -130,7 +130,7 @@ // Inverted navbar .navbar-inverse { #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg); - .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered + .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257 .navbar-nav > .open > a, .navbar-nav > .active > a { From d84f726da4f55434de853202961310d153f35739 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 22 Dec 2014 17:02:29 -0800 Subject: [PATCH 3/5] IE11 & current Firefox are still affected. Refs #11623 --- less/tables.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/less/tables.less b/less/tables.less index ba24498a3..3c801aedb 100644 --- a/less/tables.less +++ b/less/tables.less @@ -133,7 +133,7 @@ th { // Reset default table behavior table col[class*="col-"] { - position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623) + position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623) float: none; display: table-column; } @@ -141,7 +141,7 @@ table { td, th { &[class*="col-"] { - position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623) + position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623) float: none; display: table-cell; } From 75ec7393ec2940cb1f015dc2d002328833ad3ef8 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 22 Dec 2014 17:03:45 -0800 Subject: [PATCH 4/5] Add summary of #11526 to explanatory Less comment [skip sauce] [skip validator] --- less/mixins/vendor-prefixes.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/less/mixins/vendor-prefixes.less b/less/mixins/vendor-prefixes.less index 31f8e2f7a..afd3331c3 100644 --- a/less/mixins/vendor-prefixes.less +++ b/less/mixins/vendor-prefixes.less @@ -102,7 +102,7 @@ // Firefox &::-moz-placeholder { color: @color; - opacity: 1; // See https://github.com/twbs/bootstrap/pull/11526 + opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526 } &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+ &::-webkit-input-placeholder { color: @color; } // Safari and Chrome From 3668bde098e1bce289ba313119fe3cf05d01825b Mon Sep 17 00:00:00 2001 From: Bootstrap's Grunt bot Date: Tue, 23 Dec 2014 03:20:44 +0000 Subject: [PATCH 5/5] automatic grunt dist --- dist/css/bootstrap-theme.css.map | Bin 43029 -> 43177 bytes dist/css/bootstrap.css.map | Bin 377774 -> 378040 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/dist/css/bootstrap-theme.css.map b/dist/css/bootstrap-theme.css.map index 016a8dabc448d83afc1bd12818684a5e1e2434ee..7622d7d8514c0453907adfe6d4bccae0a7d7d83b 100644 GIT binary patch delta 124 zcmbPwfobJMrVUqxnXMIyC!e%Z<;g5AE=?`gH#9IaGMGFu-e_{Y7RTfZB0QU=MVh!U zRT-I@Z=NfsEu-sSmReMlnUbpDmRXdVmS3S>tWcU)T3ni#qmYuCmROooqL5#Zn4DQs M3AAbRNh_aR0Jjt@TL1t6 delta 36 ucmV+<0Nekm(E^pw0>)3X^^uXR~Y{#2b^fKPIz+J11=%$_}^y diff --git a/dist/css/bootstrap.css.map b/dist/css/bootstrap.css.map index 655e2498e60342b5f093466d95ba760fdbfb548a..2722c4ff55504d6c945447020bc3aef4eed08a7c 100644 GIT binary patch delta 531 zcmZ42F218ve8ZeAjFywtE01{PQEjkY3yQQ;NxNK zXyjsU**uIV_WFPjGU<6qFfE7ThL0IX;VP^4b%@DwPI6^+0_U z20qRpBVBcJA*LI<7(k88nyhlt$|)Dbb2V}?25GSNbd2=W$p@?SG=|knxoji34 z(IqV>FF2_toeok0G{&?FNPB|pO9uG>XoyAg!;|d~Pcm+Qc#>)Q63@GRF97kj19^th%ur>zEQV&LrtKF+S+-vkW!)0yr?0ONoSLeTQBqP+Y^ATC zl3JFUlV6Zpq?emtm6?;1sFz=quAiEx8yc*ilAm0xAD)_|?^>3cS5mB>oRgWHtsI<~ wmROV-@0*{LnUlJ`F^Bc5MF53Hdghg+7UiXu#Jg4$tE01{PQEjkY3!nH;NxNK zXyjsU**uIV_WFPjGU<6jT^Y7ThL0IX;VP^4b%@Dh38X^+0`9 z20qRpBVBcJA*LI<7(tE9nXGcs$|)bjb2V}?1!=JMbd2=W$p@?SGWf(%_(w#hY z3ehF?CoeduCY=e=4m8HR3P^i`>`Mmu0BDGI^TU(v4^J{~e|VB<`jzR9y(~K0FU(_> zjb_$2G?+e-lf_`V!Y}5PC_K*XtiPFmNVOY^v1~UKW8D(Qo>W>=lAotGeZhHV$>|(9 TtYX`9b6Iy=Y;Rb`Y9R*z(EM$-