Commit 06df91ac authored by Mark Otto's avatar Mark Otto

remove background from accordion, and use border instead

parent 475b985a
...@@ -3165,7 +3165,8 @@ a.thumbnail:hover { ...@@ -3165,7 +3165,8 @@ a.thumbnail:hover {
margin-bottom: 18px; margin-bottom: 18px;
} }
.accordion-group { .accordion-group {
background-color: #f5f5f5; margin-bottom: 2px;
border: 1px solid #e5e5e5;
-webkit-border-radius: 4px; -webkit-border-radius: 4px;
-moz-border-radius: 4px; -moz-border-radius: 4px;
border-radius: 4px; border-radius: 4px;
...@@ -3177,9 +3178,6 @@ a.thumbnail:hover { ...@@ -3177,9 +3178,6 @@ a.thumbnail:hover {
display: block; display: block;
padding: 8px 15px; padding: 8px 15px;
} }
.accordion-body {
margin-bottom: 2px;
}
.accordion-inner { .accordion-inner {
padding: 9px 15px; padding: 9px 15px;
border-top: 1px solid #e5e5e5; border-top: 1px solid #e5e5e5;
......
...@@ -9,7 +9,8 @@ ...@@ -9,7 +9,8 @@
// Group == heading + body // Group == heading + body
.accordion-group { .accordion-group {
background-color: #f5f5f5; margin-bottom: 2px;
border: 1px solid #e5e5e5;
.border-radius(4px); .border-radius(4px);
} }
.accordion-heading { .accordion-heading {
...@@ -19,9 +20,6 @@ ...@@ -19,9 +20,6 @@
display: block; display: block;
padding: 8px 15px; padding: 8px 15px;
} }
.accordion-body {
margin-bottom: 2px;
}
// Inner needs the styles because you can't animate properly with any styles on the element // Inner needs the styles because you can't animate properly with any styles on the element
.accordion-inner { .accordion-inner {
......
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