Refactor popover css to single file

This commit is contained in:
Michael Shamoon 2021-03-03 20:49:02 -08:00
parent e5f750dcbe
commit 31cd32406c
5 changed files with 24 additions and 48 deletions

View File

@ -37,26 +37,3 @@
.doc-img-background-selected { .doc-img-background-selected {
background-color: $primaryFaded; background-color: $primaryFaded;
} }
::ng-deep .popover {
max-width: 40rem;
.preview {
min-width: 25rem;
min-height: 15rem;
max-height: 35rem;
overflow-y: scroll;
}
.spinner-border {
position: absolute;
top: 4rem;
left: calc(50% - 0.5rem);
z-index: 0;
}
}
.popover-hidden ::ng-deep .popover {
opacity: 0;
pointer-events: none;
}

View File

@ -8,7 +8,7 @@ import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
@Component({ @Component({
selector: 'app-document-card-large', selector: 'app-document-card-large',
templateUrl: './document-card-large.component.html', templateUrl: './document-card-large.component.html',
styleUrls: ['./document-card-large.component.scss'] styleUrls: ['./document-card-large.component.scss', '../popover-preview/popover-preview.scss']
}) })
export class DocumentCardLargeComponent implements OnInit { export class DocumentCardLargeComponent implements OnInit {

View File

@ -34,26 +34,3 @@
.doc-img-background-selected { .doc-img-background-selected {
background-color: $primaryFaded; background-color: $primaryFaded;
} }
::ng-deep .popover {
max-width: 40rem;
.preview {
min-width: 25rem;
min-height: 15rem;
max-height: 35rem;
overflow-y: scroll;
}
.spinner-border {
position: absolute;
top: 4rem;
left: calc(50% - 0.5rem);
z-index: 0;
}
}
.popover-hidden ::ng-deep .popover {
opacity: 0;
pointer-events: none;
}

View File

@ -8,7 +8,7 @@ import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
@Component({ @Component({
selector: 'app-document-card-small', selector: 'app-document-card-small',
templateUrl: './document-card-small.component.html', templateUrl: './document-card-small.component.html',
styleUrls: ['./document-card-small.component.scss'] styleUrls: ['./document-card-small.component.scss', '../popover-preview/popover-preview.scss']
}) })
export class DocumentCardSmallComponent implements OnInit { export class DocumentCardSmallComponent implements OnInit {

View File

@ -0,0 +1,22 @@
::ng-deep .popover {
max-width: 40rem;
.preview {
min-width: 25rem;
min-height: 15rem;
max-height: 35rem;
overflow-y: scroll;
}
.spinner-border {
position: absolute;
top: 4rem;
left: calc(50% - 0.5rem);
z-index: 0;
}
}
::ng-deep .popover-hidden .popover {
opacity: 0;
pointer-events: none;
}