mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Refactor popover css to single file
This commit is contained in:
parent
e5f750dcbe
commit
31cd32406c
@ -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;
|
|
||||||
}
|
|
||||||
|
@ -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 {
|
||||||
|
|
||||||
|
@ -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;
|
|
||||||
}
|
|
||||||
|
@ -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 {
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user