mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-01-31 04:22:40 +00:00
32 lines
566 B
Text
Executable file
32 lines
566 B
Text
Executable file
// ACCORDION
|
|
// ---------
|
|
|
|
|
|
// Parent container
|
|
.accordion {
|
|
margin-bottom: @baseLineHeight;
|
|
width: 100%;
|
|
}
|
|
|
|
// Group == heading + body
|
|
|
|
.accordion-heading {
|
|
border-bottom: 0;
|
|
.border-radius(4px);
|
|
margin-top: 10px;
|
|
border: darken(@grayLighter, 5%) solid 1px;
|
|
}
|
|
.accordion-heading .accordion-toggle {
|
|
display: block;
|
|
padding: 10px;
|
|
}
|
|
|
|
.accordion-inner {
|
|
padding: 10px;
|
|
border: darken(@grayLighter, 5%) solid 1px;
|
|
border-top: darken(@grayLighter, 5%) solid 2px;
|
|
margin-top: -2px;
|
|
outline: 0;
|
|
.border-radius(0 0 4px 4px);
|
|
z-index: 2000;
|
|
}
|