Skip to content

Commit

Permalink
Merge branch 'w2p-107873_Process-admin-UI-redesign-01-Overview-page-t…
Browse files Browse the repository at this point in the history
…ables' into process-admin-ui-redesign-8.0.0-next
  • Loading branch information
artlowel committed Jan 25, 2024
2 parents 5857a8d + ba31670 commit db81362
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -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">
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.toggle-icon {
font-size: calc(var(--bs-small-font-size) * 0.6);
}
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit db81362

Please sign in to comment.