diff options
| author | Mark Otto <[email protected]> | 2013-08-18 11:08:20 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-18 11:08:20 -0700 |
| commit | ef4590dfb461036c915d8fbc5b6fbf3ad7ba9c86 (patch) | |
| tree | 241c8bbe9dd2130de943f6fb8fdef7c1beeff478 /dist/css/bootstrap.css | |
| parent | 3c1d951d2948f418ab83a592634a1aa52e34c09b (diff) | |
| download | bootstrap-ef4590dfb461036c915d8fbc5b6fbf3ad7ba9c86.tar.xz bootstrap-ef4590dfb461036c915d8fbc5b6fbf3ad7ba9c86.zip | |
fixes #9786: enable tables in panels
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 3b04f57dc..7774d6874 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -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; |
