1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-07 04:56:53 +00:00
TiddlyWiki5/cssbuild/twitter-bootstrap/less/accordion.less
Jeremy Ruston f30a7cc61d Added Twitter Bootstrap source
We're going to build a custom version
2012-06-24 13:14:40 +01:00

34 lines
578 B
Plaintext
Executable File

// ACCORDION
// ---------
// Parent container
.accordion {
margin-bottom: @baseLineHeight;
}
// Group == heading + body
.accordion-group {
margin-bottom: 2px;
border: 1px solid #e5e5e5;
.border-radius(4px);
}
.accordion-heading {
border-bottom: 0;
}
.accordion-heading .accordion-toggle {
display: block;
padding: 8px 15px;
}
// General toggle styles
.accordion-toggle {
cursor: pointer;
}
// Inner needs the styles because you can't animate properly with any styles on the element
.accordion-inner {
padding: 9px 15px;
border-top: 1px solid #e5e5e5;
}