Skip to content

Commit ffc8331

Browse files
committed
Add description to select-entities
1 parent ba0993c commit ffc8331

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.mat-checkbox-label {
2+
white-space: normal !important;
3+
line-height: unset !important;
4+
}
5+
6+
mat-list-item {
7+
height: unset !important;
8+
padding-bottom: 10px !important;
9+
}

cloudapp/src/app/multi-select/select-entities/select-entities.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
1+
import { Component, OnInit, Input, Output, EventEmitter, ViewEncapsulation } from '@angular/core';
22
import { MatCheckboxChange } from '@angular/material';
33
import { Entity } from '@exlibris/exl-cloudapp-angular-lib';
44

55
@Component({
66
selector: 'app-select-entities',
77
templateUrl: './select-entities.component.html',
8-
styleUrls: ['./select-entities.component.scss']
8+
styleUrls: ['./select-entities.component.scss'],
9+
encapsulation: ViewEncapsulation.None /* apply to added elements */
910
})
1011
export class SelectEntitiesComponent implements OnInit {
1112
masterChecked: boolean;

0 commit comments

Comments
 (0)