diff options
| author | Mark Otto <[email protected]> | 2015-03-28 21:37:40 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-03-28 21:37:40 -0700 |
| commit | a2c69b814509653c454c7a91b9a7ad4521808223 (patch) | |
| tree | 142e2226286e605c137179405570101f9a35b3fc /dist/css/bootstrap.css | |
| parent | 93bf800e1f00861525688007ae7aaf6f3daeda47 (diff) | |
| download | bootstrap-a2c69b814509653c454c7a91b9a7ad4521808223.tar.xz bootstrap-a2c69b814509653c454c7a91b9a7ad4521808223.zip | |
fixes #15830: properly reset border-radius on list items in collapsing panel groups
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 77479b251..a2c47a15e 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -5504,6 +5504,10 @@ a.list-group-item-danger.active:focus { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } +.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { + border-top-left-radius: 0; + border-top-right-radius: 0; +} .panel-heading + .list-group .list-group-item:first-child { border-top-width: 0; } |
