Commit fc88bcf0 authored by Mark Otto's avatar Mark Otto

fixes #9655: scrope list group styles in panels to immediate children only

parent 7960845f
...@@ -2688,20 +2688,20 @@ a.list-group-item:focus { ...@@ -2688,20 +2688,20 @@ a.list-group-item:focus {
padding: 15px; padding: 15px;
} }
.panel .list-group { .panel > .list-group {
margin-bottom: 0; margin-bottom: 0;
} }
.panel .list-group .list-group-item { .panel > .list-group .list-group-item {
border-width: 1px 0; 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-right-radius: 0;
border-top-left-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; border-bottom: 0;
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
// any kind of custom content between the two. // any kind of custom content between the two.
.panel { .panel {
.list-group { > .list-group {
margin-bottom: 0; margin-bottom: 0;
.list-group-item { .list-group-item {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment