mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2026-09-09 18:02:54 +00:00
isolate library dialog styles
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
.app-library-dialog {
|
||||||
.mat-radio-group {
|
.mat-radio-group {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@@ -25,3 +26,4 @@ mat-form-field {
|
|||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -21,7 +21,8 @@ import {
|
|||||||
OnInit,
|
OnInit,
|
||||||
Output,
|
Output,
|
||||||
EventEmitter,
|
EventEmitter,
|
||||||
OnDestroy
|
OnDestroy,
|
||||||
|
ViewEncapsulation
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
import {
|
import {
|
||||||
FormBuilder,
|
FormBuilder,
|
||||||
@@ -38,7 +39,9 @@ import { debounceTime, mergeMap, takeUntil } from 'rxjs/operators';
|
|||||||
@Component({
|
@Component({
|
||||||
selector: 'app-library-dialog',
|
selector: 'app-library-dialog',
|
||||||
styleUrls: ['./library.dialog.scss'],
|
styleUrls: ['./library.dialog.scss'],
|
||||||
templateUrl: './library.dialog.html'
|
templateUrl: './library.dialog.html',
|
||||||
|
encapsulation: ViewEncapsulation.None,
|
||||||
|
host: { class: 'app-library-dialog' }
|
||||||
})
|
})
|
||||||
export class LibraryDialogComponent implements OnInit, OnDestroy {
|
export class LibraryDialogComponent implements OnInit, OnDestroy {
|
||||||
@Output()
|
@Output()
|
||||||
|
|||||||
Reference in New Issue
Block a user