aboutsummaryrefslogtreecommitdiff
path: root/dist/css/bootstrap.css
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-08-27 23:17:37 -0700
committerMark Otto <[email protected]>2014-08-27 23:17:37 -0700
commitaa25ce779de9c4c012f7e0b881cddc9719a027cb (patch)
treede599b39eaea61862aab49e0c4d8f4bbe038e5e3 /dist/css/bootstrap.css
parent0a816e009f5596e4a73afe4380372bf8c16e55cb (diff)
downloadbootstrap-aa25ce779de9c4c012f7e0b881cddc9719a027cb.tar.xz
bootstrap-aa25ce779de9c4c012f7e0b881cddc9719a027cb.zip
Fixes #14329: Fixed list-groups nested inside of collapsing panels, from @apexskier
Diffstat (limited to 'dist/css/bootstrap.css')
-rw-r--r--dist/css/bootstrap.css12
1 files changed, 8 insertions, 4 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css
index 53a681c07..eb0a5e51f 100644
--- a/dist/css/bootstrap.css
+++ b/dist/css/bootstrap.css
@@ -5119,19 +5119,23 @@ a.list-group-item-danger.active:focus {
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
-.panel > .list-group {
+.panel > .list-group,
+.panel > .panel-collapse > .list-group {
margin-bottom: 0;
}
-.panel > .list-group .list-group-item {
+.panel > .list-group .list-group-item,
+.panel > .panel-collapse > .list-group .list-group-item {
border-width: 1px 0;
border-radius: 0;
}
-.panel > .list-group:first-child .list-group-item:first-child {
+.panel > .list-group:first-child .list-group-item:first-child,
+.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
border-top: 0;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
-.panel > .list-group:last-child .list-group-item:last-child {
+.panel > .list-group:last-child .list-group-item:last-child,
+.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
border-bottom: 0;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;