mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
44 lines
835 B
SCSS
44 lines
835 B
SCSS
@mixin adf-accordion-theme($theme) {
|
|
$primary: map-get($theme, primary);
|
|
|
|
.adf-panel-heading {
|
|
float: left;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
font-stretch: normal;
|
|
line-height: normal;
|
|
letter-spacing: normal;
|
|
text-align: left;
|
|
width: 100%;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.adf-panel-heading-selected {
|
|
color: mat-color($primary);
|
|
}
|
|
|
|
.adf-panel-heading-icon {
|
|
float: left;
|
|
}
|
|
|
|
.adf-panel-body {
|
|
display: inline-block;
|
|
}
|
|
|
|
.adf-panel-heading-text {
|
|
float: left;
|
|
padding-left: 20px;
|
|
padding-top: 4px;
|
|
}
|
|
|
|
.adf-panel-heading-toggle {
|
|
float: right;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.adf-panel-heading-toggle:hover {
|
|
opacity: 0.4;
|
|
}
|
|
}
|