From 5713bd74d617126796205d4ee29bfc6ff192ad39 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 23 Jul 2014 20:32:05 -0700 Subject: Fixes #12669 again: Redeclare the line-heights again for date inputs in IE8+ --- dist/css/bootstrap.css | 2 ++ 1 file changed, 2 insertions(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 642e2ebbc..b0e440391 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2408,12 +2408,14 @@ input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm { line-height: 30px; + line-height: 1.5 \0; } input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg { line-height: 46px; + line-height: 1.33 \0; } .form-group { margin-bottom: 15px; -- cgit v1.2.3 From 6dde491ddf4169fd1c9b063cfc6764cdf828737a Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 23 Jul 2014 20:49:47 -0700 Subject: Fixes #14168: bold nested kbd elements --- dist/css/bootstrap.css | 1 + 1 file changed, 1 insertion(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index b0e440391..3c2e90638 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -1357,6 +1357,7 @@ kbd { kbd kbd { padding: 0; font-size: 100%; + font-weight: bold; -webkit-box-shadow: none; box-shadow: none; } -- cgit v1.2.3 From 078aafe7fd5d7f44725d4de76d0a0510ce43d344 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 23 Jul 2014 20:54:07 -0700 Subject: Fixes #14221: Make .form-control-static work in inline forms as well --- dist/css/bootstrap.css | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 3c2e90638..a3675646e 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2671,6 +2671,9 @@ select[multiple].form-group-lg .form-control { width: auto; vertical-align: middle; } + .form-inline .form-control-static { + display: inline-block; + } .form-inline .input-group { display: inline-table; vertical-align: middle; @@ -4045,6 +4048,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn { width: auto; vertical-align: middle; } + .navbar-form .form-control-static { + display: inline-block; + } .navbar-form .input-group { display: inline-table; vertical-align: middle; -- cgit v1.2.3 From 98d693ba7bff3b14f92fea198f8ad49ac44b4872 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 23 Jul 2014 21:03:46 -0700 Subject: Fixes #14142: Adding horizontal padding to captions in tables in panels. --- dist/css/bootstrap.css | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index a3675646e..b18c44b88 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -5110,6 +5110,12 @@ a.list-group-item-danger.active:focus { .panel > .panel-collapse > .table { margin-bottom: 0; } +.panel > .table caption, +.panel > .table-responsive > .table caption, +.panel > .panel-collapse > .table caption { + padding-right: 15px; + padding-left: 15px; +} .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child { border-top-left-radius: 3px; -- cgit v1.2.3 From feed9aed5b471c20b02c4ca6620366cac9327db8 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 2 Aug 2014 13:05:11 -0700 Subject: Fixes #13202: Always use overflow: auto; on .table-responsive to prevent content breaking out of containers --- dist/css/bootstrap.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index b18c44b88..a7c1b8d0a 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2244,11 +2244,13 @@ table th[class*="col-"] { .table-hover > tbody > tr.danger:hover > th { background-color: #ebcccc; } +.table-responsive { + overflow-x: auto; +} @media screen and (max-width: 767px) { .table-responsive { width: 100%; margin-bottom: 15px; - overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; -- cgit v1.2.3 From b9e6848dc8d8c146911e0999c9f1e68780a1606e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 2 Aug 2014 13:55:02 -0700 Subject: Fixes #14253: Add borders for tables that follow bodies in panels --- dist/css/bootstrap.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index a7c1b8d0a..9adfa9f5b 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -5169,7 +5169,9 @@ a.list-group-item-danger.active:focus { border-bottom-right-radius: 3px; } .panel > .panel-body + .table, -.panel > .panel-body + .table-responsive { +.panel > .panel-body + .table-responsive, +.panel > .table + .panel-body, +.panel > .table-responsive + .panel-body { border-top: 1px solid #ddd; } .panel > .table > tbody:first-child > tr:first-child th, -- cgit v1.2.3