mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
style tweaks
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
<div class="container">
|
||||
<div class="d-flex dropdown-toggle" (click)="collapse.toggle()" [attr.aria-expanded]="!collapse.collapsed" role="button">
|
||||
<h2 class="flex-grow-1">{{'process.overview.table.' + processStatus.toLowerCase() + '.title' | translate}}</h2>
|
||||
<div class="container mb-4">
|
||||
<div class="d-flex" (click)="collapse.toggle()" [attr.aria-expanded]="!collapse.collapsed" role="button">
|
||||
<h2 class="flex-grow-1">{{'process.overview.table.' + processStatus.toLowerCase() + '.title' | translate}}<span class="ml-2 toggle-icon"
|
||||
><i class="fas" [ngClass]="collapse.collapsed ? 'fa-angle-right' : 'fa-angle-down'"></i></span></h2>
|
||||
</div>
|
||||
|
||||
<div ngbCollapse #collapse="ngbCollapse">
|
||||
|
@@ -0,0 +1,3 @@
|
||||
.toggle-icon {
|
||||
font-size: calc(var(--bs-small-font-size) * 0.6);
|
||||
}
|
||||
|
@@ -30,6 +30,7 @@ export interface ProcessOverviewTableEntry {
|
||||
|
||||
@Component({
|
||||
selector: 'ds-process-overview-table',
|
||||
styleUrls: ['./process-overview-table.component.scss'],
|
||||
templateUrl: './process-overview-table.component.html'
|
||||
})
|
||||
export class ProcessOverviewTableComponent implements OnInit {
|
||||
|
Reference in New Issue
Block a user