Merge pull request #4977 from GabrielInTheWorld/fixExpansionPanel
Fixes the expansion panel layout
This commit is contained in:
commit
fffbf95a63
@ -1,4 +1,4 @@
|
|||||||
<div class="filter-menu">
|
<div class="filter-menu-content-wrapper">
|
||||||
<mat-accordion (keyup)="checkKeyEvent($event)">
|
<mat-accordion (keyup)="checkKeyEvent($event)">
|
||||||
<mat-expansion-panel *ngFor="let filter of service.filterDefinitions">
|
<mat-expansion-panel *ngFor="let filter of service.filterDefinitions">
|
||||||
<mat-expansion-panel-header *ngIf="filter.options && filter.options.length">
|
<mat-expansion-panel-header *ngIf="filter.options && filter.options.length">
|
||||||
|
@ -1,45 +1,40 @@
|
|||||||
div.indent {
|
.filter-menu-content-wrapper {
|
||||||
margin-left: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
mat-divider {
|
|
||||||
margin-top: 5px;
|
|
||||||
margin-bottom: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.filter-menu {
|
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
|
||||||
|
|
||||||
.mat-expansion-panel {
|
div.indent {
|
||||||
width: 400px;
|
margin-left: 24px;
|
||||||
max-width: 95vw;
|
|
||||||
}
|
|
||||||
|
|
||||||
.filter-count {
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.filter-subtitle {
|
|
||||||
margin-top: 5px;
|
|
||||||
margin-bottom: 5px;
|
|
||||||
opacity: 0.9;
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
.filter-child {
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
mat-checkbox {
|
|
||||||
// adds breaks to mat-checkboxes with long labels
|
|
||||||
.mat-checkbox-layout {
|
|
||||||
white-space: normal;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// rather than center the checkbox, put the checkbox in the first line
|
.mat-expansion-panel {
|
||||||
.mat-checkbox-inner-container {
|
width: 400px;
|
||||||
margin-top: 3px;
|
max-width: 95vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.filter-count {
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.filter-subtitle {
|
||||||
|
margin-top: 5px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
opacity: 0.9;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.filter-child {
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
mat-checkbox {
|
||||||
|
// adds breaks to mat-checkboxes with long labels
|
||||||
|
.mat-checkbox-layout {
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
// rather than center the checkbox, put the checkbox in the first line
|
||||||
|
.mat-checkbox-inner-container {
|
||||||
|
margin-top: 3px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user