mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Fixes #14253: Add borders for tables that follow bodies in panels
This commit is contained in:
parent
feed9aed5b
commit
b9e6848dc8
7 changed files with 13 additions and 7 deletions
4
dist/css/bootstrap.css
vendored
4
dist/css/bootstrap.css
vendored
|
@ -5169,7 +5169,9 @@ a.list-group-item-danger.active:focus {
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
}
|
}
|
||||||
.panel > .panel-body + .table,
|
.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;
|
border-top: 1px solid #ddd;
|
||||||
}
|
}
|
||||||
.panel > .table > tbody:first-child > tr:first-child th,
|
.panel > .table > tbody:first-child > tr:first-child th,
|
||||||
|
|
2
dist/css/bootstrap.css.map
vendored
2
dist/css/bootstrap.css.map
vendored
File diff suppressed because one or more lines are too long
2
dist/css/bootstrap.min.css
vendored
2
dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
4
docs/dist/css/bootstrap.css
vendored
4
docs/dist/css/bootstrap.css
vendored
|
@ -5169,7 +5169,9 @@ a.list-group-item-danger.active:focus {
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
}
|
}
|
||||||
.panel > .panel-body + .table,
|
.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;
|
border-top: 1px solid #ddd;
|
||||||
}
|
}
|
||||||
.panel > .table > tbody:first-child > tr:first-child th,
|
.panel > .table > tbody:first-child > tr:first-child th,
|
||||||
|
|
2
docs/dist/css/bootstrap.css.map
vendored
2
docs/dist/css/bootstrap.css.map
vendored
File diff suppressed because one or more lines are too long
2
docs/dist/css/bootstrap.min.css
vendored
2
docs/dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -145,7 +145,9 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
> .panel-body + .table,
|
> .panel-body + .table,
|
||||||
> .panel-body + .table-responsive {
|
> .panel-body + .table-responsive,
|
||||||
|
> .table + .panel-body,
|
||||||
|
> .table-responsive + .panel-body {
|
||||||
border-top: 1px solid @table-border-color;
|
border-top: 1px solid @table-border-color;
|
||||||
}
|
}
|
||||||
> .table > tbody:first-child > tr:first-child th,
|
> .table > tbody:first-child > tr:first-child th,
|
||||||
|
|
Loading…
Add table
Reference in a new issue