Styles: Dataset Listing
This commit is contained in:
parent
05fe3e57b8
commit
c265e5e2fa
|
@ -15,13 +15,15 @@
|
|||
<div class="card-body table-responsive">
|
||||
<div class="listing row">
|
||||
<div class="col-3">
|
||||
<app-dataset-criteria-component></app-dataset-criteria-component>
|
||||
<app-dataset-criteria-component class="col-auto"></app-dataset-criteria-component>
|
||||
</div>
|
||||
<div class="col-9">
|
||||
<div class="row" *ngFor="let item of listingItems; let i = index">
|
||||
<app-dataset-listing-item-component class="col-12" [dataset]="item" [showDivider]="i != (listingItems.length - 1)" (onClick)="rowClicked($event)"></app-dataset-listing-item-component>
|
||||
<div *ngFor="let item of listingItems; let i = index">
|
||||
<app-dataset-listing-item-component [dataset]="item"
|
||||
[showDivider]="i != (listingItems.length - 1)" (onClick)="rowClicked($event)">
|
||||
</app-dataset-listing-item-component>
|
||||
</div>
|
||||
<mat-paginator #paginator [length]="totalCount" [pageSizeOptions]="[10, 25, 100]">
|
||||
<mat-paginator #paginator [length]="totalCount" [pageSizeOptions]="[10, 25, 100]" class="mt-2">
|
||||
</mat-paginator>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div class="listing-item row" (click)="itemClicked()">
|
||||
<div class="listing-item" (click)="itemClicked()">
|
||||
<div class="col-auto">
|
||||
<mat-icon *ngIf="isDraft" class="draft-bookmark">bookmark</mat-icon>
|
||||
<mat-icon *ngIf="!isDraft" class="finalized-bookmark">bookmark</mat-icon>
|
||||
|
|
|
@ -67,9 +67,9 @@
|
|||
background-color: #2e75b6 !important;
|
||||
}
|
||||
|
||||
::ng-deep .mat-checkbox {
|
||||
background-color: #f6f6f6 !important;
|
||||
}
|
||||
// ::ng-deep .mat-checkbox {
|
||||
// background-color: #f6f6f6 !important;
|
||||
// }
|
||||
|
||||
::ng-deep .mat-checkbox .mat-checkbox-frame {
|
||||
border: 1px solid #aaaaaa;
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
margin-left: auto !important;
|
||||
}
|
||||
|
||||
|
||||
.top-paginator ::ng-deep .mat-paginator-navigation-previous {
|
||||
display: none !important;
|
||||
}
|
||||
|
|
|
@ -72,9 +72,9 @@
|
|||
background-color: #2e75b6 !important;
|
||||
}
|
||||
|
||||
::ng-deep .mat-checkbox {
|
||||
background-color: #f6f6f6 !important;
|
||||
}
|
||||
// ::ng-deep .mat-checkbox {
|
||||
// background-color: #f6f6f6 !important;
|
||||
// }
|
||||
|
||||
::ng-deep .mat-checkbox .mat-checkbox-frame {
|
||||
border: 1px solid #aaaaaa;
|
||||
|
@ -114,4 +114,3 @@
|
|||
.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element {
|
||||
background-color: #2e74b649;
|
||||
}
|
||||
|
Loading…
Reference in New Issue