1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/less/accordion.less

29 lines
511 B
Text
Raw Normal View History

// ACCORDION
// ---------
2012-01-18 02:24:59 -05:00
// Parent container
.accordion {
margin-bottom: @baseLineHeight;
}
2012-01-16 00:48:58 -05:00
2012-01-18 02:24:59 -05:00
// Group == heading + body
.accordion-group {
margin-bottom: 2px;
border: 1px solid #e5e5e5;
.border-radius(4px);
}
.accordion-heading {
border-bottom: 0;
}
2012-01-26 17:40:19 -05:00
.accordion-heading .accordion-toggle {
display: block;
padding: 8px 15px;
}
2012-01-16 00:48:58 -05:00
2012-01-18 02:24:59 -05:00
// Inner needs the styles because you can't animate properly with any styles on the element
2012-01-16 00:48:58 -05:00
.accordion-inner {
padding: 9px 15px;
border-top: 1px solid #e5e5e5;
}