1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-18 11:21:23 +02:00

fixes #9786: enable tables in panels

This commit is contained in:
Mark Otto
2013-08-18 11:08:20 -07:00
parent 3c1d951d29
commit ef4590dfb4
4 changed files with 144 additions and 1 deletions

View File

@@ -5231,6 +5231,10 @@ a.list-group-item:focus {
clear: both;
}
.panel > .table {
margin-bottom: 0;
}
.panel > .list-group {
margin-bottom: 0;
}
@@ -5252,6 +5256,14 @@ a.list-group-item:focus {
border-top-width: 0;
}
.panel > .table {
margin-bottom: 0;
}
.panel > .panel-body + .table {
border-top: 1px solid #dddddd;
}
.panel-heading {
padding: 10px 15px;
background-color: #f5f5f5;

File diff suppressed because one or more lines are too long