diff options
| author | Mark Otto <[email protected]> | 2013-08-15 18:58:02 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-15 18:58:02 -0700 |
| commit | fc88bcf0d15417c05c6d37027579bb5e3cb34236 (patch) | |
| tree | 261b3175b8d5307b34066dbda0f2ae9c67cbafde /dist/css/bootstrap.css | |
| parent | 7960845f50b8dcdc5b4fce29e6075f447e04318a (diff) | |
| download | bootstrap-fc88bcf0d15417c05c6d37027579bb5e3cb34236.tar.xz bootstrap-fc88bcf0d15417c05c6d37027579bb5e3cb34236.zip | |
fixes #9655: scrope list group styles in panels to immediate children only
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 37d4c9366..01626819a 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2688,20 +2688,20 @@ a.list-group-item:focus { padding: 15px; } -.panel .list-group { +.panel > .list-group { margin-bottom: 0; } -.panel .list-group .list-group-item { +.panel > .list-group .list-group-item { border-width: 1px 0; } -.panel .list-group .list-group-item:first-child { +.panel > .list-group .list-group-item:first-child { border-top-right-radius: 0; border-top-left-radius: 0; } -.panel .list-group .list-group-item:last-child { +.panel > .list-group .list-group-item:last-child { border-bottom: 0; } |
