diff options
| author | Mark Otto <[email protected]> | 2015-04-04 23:59:22 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-04-04 23:59:22 -0700 |
| commit | 9f7d566a6815dfde1b2c1dfb67c6291e29563ba0 (patch) | |
| tree | c22fcb51754524582a968063acf12eecbe16489a /dist/css/bootstrap.css | |
| parent | 9c41aee780bc1008019684955be7a029679245ca (diff) | |
| parent | 510f56f334087b28581d4a8d02c92eebc693a92b (diff) | |
| download | bootstrap-9f7d566a6815dfde1b2c1dfb67c6291e29563ba0.tar.xz bootstrap-9f7d566a6815dfde1b2c1dfb67c6291e29563ba0.zip | |
Merge pull request #16175 from twbs/fix_15830
Fix border-radius on list group items in collapsible panels
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 0272fbb28..fdc92c06b 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -5508,6 +5508,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; } |
