From f5676467386be32a957e3a4753c852b4b541d00a Mon Sep 17 00:00:00 2001 From: jhr007 Date: Thu, 29 Aug 2013 23:21:07 -0500 Subject: [PATCH 1/6] Add a change to the progress bar. In v3 the inner progress bar should have .progress-bar not .bar --- getting-started.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/getting-started.html b/getting-started.html index 0b0aee60dc..6176db8a2b 100644 --- a/getting-started.html +++ b/getting-started.html @@ -603,6 +603,11 @@ bootstrap/ .tabs-left .tabs-right .tabs-below N/A + + Progress bar + .bar + .progress-bar + From 0aa4eecee15117329edc2105fd2d89f4275ec573 Mon Sep 17 00:00:00 2001 From: jhr007 Date: Fri, 30 Aug 2013 00:14:21 -0500 Subject: [PATCH 2/6] Moved "Major class changes" section; Added progress-bar-* --- getting-started.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/getting-started.html b/getting-started.html index 6176db8a2b..618ee7655c 100644 --- a/getting-started.html +++ b/getting-started.html @@ -435,6 +435,11 @@ bootstrap/ .text-error .text-danger + + .bar .bar-* + .progress-bar .progress-bar-* + + @@ -603,11 +608,6 @@ bootstrap/ .tabs-left .tabs-right .tabs-below N/A - - Progress bar - .bar - .progress-bar - From f849e65d5682139d09ed7e6d1138cf877de3eca8 Mon Sep 17 00:00:00 2001 From: Kevin Granger Date: Sat, 31 Aug 2013 17:50:14 +0200 Subject: [PATCH 3/6] Replace invalid US-ASCII character "\xE2") MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace invalid US-ASCII character "\xE2") '—' => '-' --- less/grid.less | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/less/grid.less b/less/grid.less index d3a3cf6bca..c552d4c34f 100644 --- a/less/grid.less +++ b/less/grid.less @@ -76,7 +76,7 @@ // Grid classes for extra small devices like smartphones. No offset, push, or // pull classes are present here due to the size of the target. // -// Note that `.col-xs-12` doesn't get floated on purpose—there's no need since +// Note that `.col-xs-12` doesn't get floated on purpose-there's no need since // it's full-width. .col-xs-1, @@ -111,7 +111,7 @@ // Columns, offsets, pushes, and pulls for the small device range, from phones // to tablets. // -// Note that `.col-sm-12` doesn't get floated on purpose—there's no need since +// Note that `.col-sm-12` doesn't get floated on purpose-there's no need since // it's full-width. @media (min-width: @screen-sm) { @@ -189,7 +189,7 @@ // // Columns, offsets, pushes, and pulls for the desktop device range. // -// Note that `.col-md-12` doesn't get floated on purpose—there's no need since +// Note that `.col-md-12` doesn't get floated on purpose-there's no need since // it's full-width. @media (min-width: @screen-md) { @@ -269,7 +269,7 @@ // // Columns, offsets, pushes, and pulls for the large desktop device range. // -// Note that `.col-lg-12` doesn't get floated on purpose—there's no need since +// Note that `.col-lg-12` doesn't get floated on purpose-there's no need since // it's full-width. @media (min-width: @screen-lg-desktop) { From 5418a7224346feaab6bf32a2fe9831d9a7a6d1b3 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 1 Sep 2013 01:35:56 -0700 Subject: [PATCH 4/6] tweak #10298 --- getting-started.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/getting-started.html b/getting-started.html index 2b61fe0fab..31036005c3 100644 --- a/getting-started.html +++ b/getting-started.html @@ -435,10 +435,13 @@ bootstrap/ .text-danger - .bar .bar-* - .progress-bar .progress-bar-* + .bar + .progress-bar + + + .bar-* + .progress-bar-* - From 604c3b2efca306151181d2c13353721a84349da4 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 1 Sep 2013 01:46:18 -0700 Subject: [PATCH 5/6] tweak #10336 to double up on the hyphen-minuses to better approximate a long dash --- less/grid.less | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/less/grid.less b/less/grid.less index c552d4c34f..4cab7e3867 100644 --- a/less/grid.less +++ b/less/grid.less @@ -76,7 +76,7 @@ // Grid classes for extra small devices like smartphones. No offset, push, or // pull classes are present here due to the size of the target. // -// Note that `.col-xs-12` doesn't get floated on purpose-there's no need since +// Note that `.col-xs-12` doesn't get floated on purpose--there's no need since // it's full-width. .col-xs-1, @@ -111,7 +111,7 @@ // Columns, offsets, pushes, and pulls for the small device range, from phones // to tablets. // -// Note that `.col-sm-12` doesn't get floated on purpose-there's no need since +// Note that `.col-sm-12` doesn't get floated on purpose--there's no need since // it's full-width. @media (min-width: @screen-sm) { @@ -189,7 +189,7 @@ // // Columns, offsets, pushes, and pulls for the desktop device range. // -// Note that `.col-md-12` doesn't get floated on purpose-there's no need since +// Note that `.col-md-12` doesn't get floated on purpose--there's no need since // it's full-width. @media (min-width: @screen-md) { @@ -269,7 +269,7 @@ // // Columns, offsets, pushes, and pulls for the large desktop device range. // -// Note that `.col-lg-12` doesn't get floated on purpose-there's no need since +// Note that `.col-lg-12` doesn't get floated on purpose--there's no need since // it's full-width. @media (min-width: @screen-lg-desktop) { From 93694898838b479d2806c53c827847f724312bcc Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 1 Sep 2013 04:14:55 -0700 Subject: [PATCH 6/6] fix straggler instance of "Tiny grid" terminology --- getting-started.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started.html b/getting-started.html index 31036005c3..c0c6467439 100644 --- a/getting-started.html +++ b/getting-started.html @@ -475,7 +475,7 @@ bootstrap/ .jumbotron - Tiny grid (<768px) + Extra small grid (<768px) .col-xs-*