From 6e9756ebb682dbb1ea9c9a75653838bd130a9cb6 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 30 Apr 2012 15:30:56 -0700 Subject: #3228: update docs to list dependencies from 2.0.3 for compiling via make --- docs/assets/css/bootstrap.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 09e2833dc..f13cad826 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -4651,15 +4651,15 @@ a.badge:hover { -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - -ms-box-sizing: border-box; - box-sizing: border-box; -webkit-transition: width 0.6s ease; -moz-transition: width 0.6s ease; -ms-transition: width 0.6s ease; -o-transition: width 0.6s ease; transition: width 0.6s ease; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + -ms-box-sizing: border-box; + box-sizing: border-box; } .progress-striped .bar { -- cgit v1.2.3 From a2fb9ed42f4fedbf2045601bedc8dace4d8bbd36 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 13 May 2012 17:43:04 -0700 Subject: #3449: make legend and form-actions the same border color --- docs/assets/css/bootstrap.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index f13cad826..d6326a156 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -603,7 +603,7 @@ em { abbr[title] { cursor: help; - border-bottom: 1px dotted #ddd; + border-bottom: 1px dotted #999999; } abbr.initialism { @@ -740,7 +740,7 @@ legend { line-height: 36px; color: #333333; border: 0; - border-bottom: 1px solid #eee; + border-bottom: 1px solid #e5e5e5; } legend small { @@ -1190,7 +1190,7 @@ select:focus:required:invalid:focus { margin-top: 18px; margin-bottom: 18px; background-color: #f5f5f5; - border-top: 1px solid #ddd; + border-top: 1px solid #e5e5e5; *zoom: 1; } -- cgit v1.2.3 From ea156609736513a4ad5aa22ef574bccbc3d23330 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 13 May 2012 21:52:18 -0700 Subject: #3420: properly scope dropdown open state to immediate children only --- docs/assets/css/bootstrap.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index d6326a156..ab6059ad0 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -2433,7 +2433,7 @@ table .span24 { *z-index: 1000; } -.open .dropdown-menu { +.open > .dropdown-menu { display: block; } -- cgit v1.2.3 From a0809ceebe5332a1c3e355a762d1bff3e477ce37 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 14 May 2012 23:40:06 -0700 Subject: add forms test page for all html5 input types and refactor selectors --- docs/assets/css/bootstrap.css | 129 +++++++++++++----------------------------- 1 file changed, 40 insertions(+), 89 deletions(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index ab6059ad0..d8b4c6b32 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -771,23 +771,59 @@ label { color: #333333; } -input, -textarea, select, -.uneditable-input { +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"] { display: inline-block; - width: 210px; height: 18px; padding: 4px; margin-bottom: 9px; font-size: 13px; line-height: 18px; color: #555555; +} + +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"] { background-color: #ffffff; border: 1px solid #cccccc; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -webkit-transition: border linear 0.2s, box-shadow linear 0.2s; + -moz-transition: border linear 0.2s, box-shadow linear 0.2s; + -ms-transition: border linear 0.2s, box-shadow linear 0.2s; + -o-transition: border linear 0.2s, box-shadow linear 0.2s; + transition: border linear 0.2s, box-shadow linear 0.2s; } .uneditable-textarea { @@ -795,56 +831,6 @@ select, height: auto; } -label input, -label textarea, -label select { - display: block; -} - -input[type="image"], -input[type="checkbox"], -input[type="radio"] { - width: auto; - height: auto; - padding: 0; - margin: 3px 0; - *margin-top: 0; - /* IE7 */ - - line-height: normal; - cursor: pointer; - background-color: transparent; - border: 0 \9; - /* IE9 and down */ - - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; -} - -input[type="image"] { - border: 0; -} - -input[type="file"] { - width: auto; - padding: initial; - line-height: initial; - background-color: #ffffff; - background-color: initial; - border: initial; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} - -input[type="button"], -input[type="reset"], -input[type="submit"] { - width: auto; - height: auto; -} - select, input[type="file"] { height: 28px; @@ -856,34 +842,11 @@ input[type="file"] { line-height: 28px; } -input[type="file"] { - line-height: 18px \9; -} - -select { - width: 220px; - background-color: #ffffff; -} - select[multiple], select[size] { height: auto; } -input[type="image"] { - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} - -textarea { - height: auto; -} - -input[type="hidden"] { - display: none; -} - .radio, .checkbox { min-height: 18px; @@ -914,18 +877,6 @@ input[type="hidden"] { margin-left: 10px; } -input, -textarea { - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border linear 0.2s, box-shadow linear 0.2s; - -moz-transition: border linear 0.2s, box-shadow linear 0.2s; - -ms-transition: border linear 0.2s, box-shadow linear 0.2s; - -o-transition: border linear 0.2s, box-shadow linear 0.2s; - transition: border linear 0.2s, box-shadow linear 0.2s; -} - input:focus, textarea:focus { border-color: rgba(82, 168, 236, 0.8); -- cgit v1.2.3 From ecf84bdac51a9c56d18c4a25b3d5b0c66a09151a Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 15 May 2012 00:17:02 -0700 Subject: correct regressions against 2.0.3 --- docs/assets/css/bootstrap.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index d8b4c6b32..fabedd1f7 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -796,6 +796,11 @@ input[type="color"] { color: #555555; } +input, +textarea { + width: 210px; +} + textarea, input[type="text"], input[type="password"], @@ -826,6 +831,24 @@ input[type="color"] { transition: border linear 0.2s, box-shadow linear 0.2s; } +input[type="radio"], +input[type="checkbox"] { + margin: 3px 0; + *margin-top: 0; + /* IE7 */ + + line-height: normal; + cursor: pointer; +} + +input[type="submit"], +input[type="reset"], +input[type="button"], +input[type="radio"], +input[type="checkbox"] { + width: auto; +} + .uneditable-textarea { width: auto; height: auto; @@ -842,6 +865,11 @@ input[type="file"] { line-height: 28px; } +select { + width: 220px; + border: 1px solid #bbb; +} + select[multiple], select[size] { height: auto; -- cgit v1.2.3 From a9d4b667ff6349a54cdd470c82c7ef3c88de4165 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 15 May 2012 09:07:19 -0700 Subject: finish fixing uneditable-input and remake --- docs/assets/css/bootstrap.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index fabedd1f7..46e163a46 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -786,7 +786,8 @@ input[type="email"], input[type="url"], input[type="search"], input[type="tel"], -input[type="color"] { +input[type="color"], +.uneditable-input { display: inline-block; height: 18px; padding: 4px; @@ -815,7 +816,8 @@ input[type="email"], input[type="url"], input[type="search"], input[type="tel"], -input[type="color"] { +input[type="color"], +.uneditable-input { background-color: #ffffff; border: 1px solid #cccccc; -webkit-border-radius: 3px; -- cgit v1.2.3 From 3a27b4e6f6722ebde97644126b16da0fbb0ea474 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 15 May 2012 09:07:55 -0700 Subject: remake again after pull --- docs/assets/css/bootstrap.css | 59 +++++++++++++++++++++++++------------------ 1 file changed, 35 insertions(+), 24 deletions(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 46e163a46..42d1907d6 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -833,6 +833,32 @@ input[type="color"], transition: border linear 0.2s, box-shadow linear 0.2s; } +textarea:focus, +input[type="text"]:focus, +input[type="password"]:focus, +input[type="datetime"]:focus, +input[type="datetime-local"]:focus, +input[type="date"]:focus, +input[type="month"]:focus, +input[type="time"]:focus, +input[type="week"]:focus, +input[type="number"]:focus, +input[type="email"]:focus, +input[type="url"]:focus, +input[type="search"]:focus, +input[type="tel"]:focus, +input[type="color"]:focus, +.uneditable-input:focus { + border-color: rgba(82, 168, 236, 0.8); + outline: 0; + outline: thin dotted \9; + /* IE6-9 */ + + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); +} + input[type="radio"], input[type="checkbox"] { margin: 3px 0; @@ -877,6 +903,15 @@ select[size] { height: auto; } +select:focus, +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + .radio, .checkbox { min-height: 18px; @@ -907,30 +942,6 @@ select[size] { margin-left: 10px; } -input:focus, -textarea:focus { - border-color: rgba(82, 168, 236, 0.8); - outline: 0; - outline: thin dotted \9; - /* IE6-9 */ - - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); - -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); -} - -input[type="file"]:focus, -input[type="radio"]:focus, -input[type="checkbox"]:focus, -select:focus { - outline: thin dotted #333; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} - .input-mini { width: 60px; } -- cgit v1.2.3 From 78790da03c2f18912215c6dc4c19d88e636c31dd Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 17 May 2012 22:00:49 -0700 Subject: fix resizing issues from incorrectly changing <767px grid classes to inline-block, fix height issue on textareas --- docs/assets/css/bootstrap.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 42d1907d6..549c4d37e 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -802,6 +802,10 @@ textarea { width: 210px; } +textarea { + height: auto; +} + textarea, input[type="text"], input[type="password"], -- cgit v1.2.3 From 3b6b6eb242e1e459d741d5edc475ce6b3130d063 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 23 May 2012 00:04:54 -0700 Subject: fix field state mixin --- docs/assets/css/bootstrap.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 549c4d37e..b218cadeb 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1084,6 +1084,8 @@ input[type="checkbox"][readonly] { color: #c09853; } +.control-group.warning .checkbox, +.control-group.warning .radio, .control-group.warning input, .control-group.warning select, .control-group.warning textarea { @@ -1091,6 +1093,8 @@ input[type="checkbox"][readonly] { border-color: #c09853; } +.control-group.warning .checkbox:focus, +.control-group.warning .radio:focus, .control-group.warning input:focus, .control-group.warning select:focus, .control-group.warning textarea:focus { @@ -1113,6 +1117,8 @@ input[type="checkbox"][readonly] { color: #b94a48; } +.control-group.error .checkbox, +.control-group.error .radio, .control-group.error input, .control-group.error select, .control-group.error textarea { @@ -1120,6 +1126,8 @@ input[type="checkbox"][readonly] { border-color: #b94a48; } +.control-group.error .checkbox:focus, +.control-group.error .radio:focus, .control-group.error input:focus, .control-group.error select:focus, .control-group.error textarea:focus { @@ -1142,6 +1150,8 @@ input[type="checkbox"][readonly] { color: #468847; } +.control-group.success .checkbox, +.control-group.success .radio, .control-group.success input, .control-group.success select, .control-group.success textarea { @@ -1149,6 +1159,8 @@ input[type="checkbox"][readonly] { border-color: #468847; } +.control-group.success .checkbox:focus, +.control-group.success .radio:focus, .control-group.success input:focus, .control-group.success select:focus, .control-group.success textarea:focus { -- cgit v1.2.3 From 19489496c14525070bd759ec68583a34ea4c8547 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 23 May 2012 00:05:30 -0700 Subject: remove redeclared font styles from

and rebuild --- docs/assets/css/bootstrap.css | 3 --- 1 file changed, 3 deletions(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index b218cadeb..bf7372060 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -418,9 +418,6 @@ a:hover { p { margin: 0 0 9px; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 13px; - line-height: 18px; } p small { -- cgit v1.2.3 From 7fa9f605d624fd1cc28ec610b3763714d3865a6b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 24 May 2012 19:18:06 -0700 Subject: recompile after adding ms-placeholder --- docs/assets/css/bootstrap.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index bf7372060..89962afb3 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1224,6 +1224,10 @@ select:focus:required:invalid:focus { color: #999999; } +:-ms-input-placeholder { + color: #999999; +} + ::-webkit-input-placeholder { color: #999999; } -- cgit v1.2.3 From fe30bd60553bea0f706725deb9a0ad9ef04f0247 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 24 May 2012 20:18:52 -0700 Subject: make bootstrap like google maps a bit more --- docs/assets/css/bootstrap.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 89962afb3..da5c706c9 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -73,6 +73,10 @@ img { -ms-interpolation-mode: bicubic; } +#map_canvas img { + max-width: none; +} + button, input, select, -- cgit v1.2.3 From a7529e158be8153fd350d19445e9e93261050c55 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 25 May 2012 09:19:10 -0700 Subject: remove color from labels --- docs/assets/css/bootstrap.css | 1 - 1 file changed, 1 deletion(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index da5c706c9..2c0af2199 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -769,7 +769,6 @@ textarea { label { display: block; margin-bottom: 5px; - color: #333333; } select, -- cgit v1.2.3 From 8a06339501587f9ecc62f6a831162cf40e8a0c70 Mon Sep 17 00:00:00 2001 From: Corey Innis Date: Sun, 27 May 2012 18:12:08 -0700 Subject: fixes .placeholder to work as a "grouped selector" adding the `&` combinator to `.placeholder` makes it work for the global case (in forms.less) as well as within `.navbar-search .search-query` the result can be seen in the generated bootstrap.css, which include the -ms vendor extension. --- docs/assets/css/bootstrap.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 2c0af2199..029e32db7 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -3713,6 +3713,10 @@ input[type="submit"].btn.btn-mini { color: #cccccc; } +.navbar-search .search-query:-ms-input-placeholder { + color: #cccccc; +} + .navbar-search .search-query::-webkit-input-placeholder { color: #cccccc; } -- cgit v1.2.3 From 9699e1d70783122f99b7de67e58a95ddaef1e241 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 28 May 2012 01:13:24 -0700 Subject: scope float right dropdown menus to immediate children --- docs/assets/css/bootstrap.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 029e32db7..e34c4ee27 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -2449,7 +2449,7 @@ table .span24 { display: block; } -.pull-right .dropdown-menu { +.pull-right > .dropdown-menu { right: 0; left: auto; } -- cgit v1.2.3 From f53a0380885c9a5bd83aef4d17a386d99354a8f0 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 28 May 2012 17:17:55 -0700 Subject: remake after merging IE7/8 bugfix for animations --- docs/assets/css/bootstrap.css | 2 -- 1 file changed, 2 deletions(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index e34c4ee27..e3708c29d 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -2511,7 +2511,6 @@ table .span24 { .fade { opacity: 0; - filter: alpha(opacity=0); -webkit-transition: opacity 0.15s linear; -moz-transition: opacity 0.15s linear; -ms-transition: opacity 0.15s linear; @@ -2521,7 +2520,6 @@ table .span24 { .fade.in { opacity: 1; - filter: alpha(opacity=100); } .collapse { -- cgit v1.2.3 From 7875e4833cb7d00db2967078fd6f51adbfd4a351 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 28 May 2012 17:32:24 -0700 Subject: fix broken css tests, add fluid input-prepend/-append to tests, fix input-prepend/append for responsive for both fluid and fixed sizing --- docs/assets/css/bootstrap.css | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index e3708c29d..c5f52ebcf 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -982,6 +982,15 @@ textarea[class*="span"], margin-left: 0; } +.input-append input[class*="span"], +.input-append .uneditable-input[class*="span"], +.input-prepend input[class*="span"], +.input-prepend .uneditable-input[class*="span"], +.row-fluid .input-prepend [class*="span"], +.row-fluid .input-append [class*="span"] { + display: inline-block; +} + input, textarea, .uneditable-input { -- cgit v1.2.3 From 4eaeea81fd909e6711f57049fc4372f4045fa5aa Mon Sep 17 00:00:00 2001 From: Jacob Thornton Date: Thu, 31 May 2012 10:24:23 -0700 Subject: rebuild and fix test --- docs/assets/css/bootstrap.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/assets/css/bootstrap.css') diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index c5f52ebcf..7902e6a72 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -4674,15 +4674,15 @@ a.badge:hover { -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + -ms-box-sizing: border-box; + box-sizing: border-box; -webkit-transition: width 0.6s ease; -moz-transition: width 0.6s ease; -ms-transition: width 0.6s ease; -o-transition: width 0.6s ease; transition: width 0.6s ease; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - -ms-box-sizing: border-box; - box-sizing: border-box; } .progress-striped .bar { -- cgit v1.2.3