Skip to content

Commit e762894

Browse files
committed
ITC-3636 ServiceCapacityManagementModule - my-resources-summary-widget: set z-index for click
1 parent 77970cb commit e762894

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/app/modules/scm_module/widgets/my-resources-summary-widget/my-resources-summary-widget.component.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<!-- status overview -->
77
<c-row>
88
<c-col [xs]="12" [md]="3" [lg]="3">
9-
<div class="p-2 bg-primary rounded overflow-hidden position-relative text-white mb-g">
10-
<div>
9+
<div class="p-2 bg-primary rounded overflow-hidden position-relative text-white mb-g h-100">
10+
<div class="position-relative z-1">
1111
<h6 class="display-4 d-block l-h-n m-0 fw-500">
1212
@if (resources.resources.status_overview[0] > 0 && ( PermissionsService.hasPermissionObservable(['scmmodule', 'resources', 'index'])|async )) {
1313
<a [routerLink]="['/', 'scm_module', 'resources', 'index']" class="text-white"
@@ -27,8 +27,8 @@ <h6 class="display-4 d-block l-h-n m-0 fw-500">
2727
</div>
2828
</c-col>
2929
<c-col [xs]="12" [md]="3" [lg]="3">
30-
<div class="p-2 bg-success rounded overflow-hidden position-relative text-white mb-g">
31-
<div>
30+
<div class="p-2 bg-success rounded overflow-hidden position-relative text-white mb-g h-100">
31+
<div class="position-relative z-1">
3232
<h6 class="display-4 d-block l-h-n m-0 fw-500">
3333
@if (resources.resources.status_overview[1] > 0 && ( PermissionsService.hasPermissionObservable(['scmmodule', 'resources', 'index'])|async )) {
3434
<a [routerLink]="['/', 'scm_module', 'resources', 'index']" class="text-white"
@@ -48,8 +48,8 @@ <h6 class="display-4 d-block l-h-n m-0 fw-500">
4848
</div>
4949
</c-col>
5050
<c-col [xs]="12" [md]="3" [lg]="3">
51-
<div class="p-2 bg-warning rounded overflow-hidden position-relative text-white mb-g">
52-
<div>
51+
<div class="p-2 bg-warning rounded overflow-hidden position-relative text-white mb-g h-100">
52+
<div class="position-relative z-1">
5353
<h6 class="display-4 d-block l-h-n m-0 fw-500">
5454
@if (resources.resources.status_overview[2] > 0 && ( PermissionsService.hasPermissionObservable(['scmmodule', 'resources', 'index'])|async )) {
5555
<a [routerLink]="['/', 'scm_module', 'resources', 'index']" class="text-white"
@@ -69,8 +69,8 @@ <h6 class="display-4 d-block l-h-n m-0 fw-500">
6969
</div>
7070
</c-col>
7171
<c-col [xs]="12" [md]="3" [lg]="3">
72-
<div class="p-2 bg-critical rounded overflow-hidden position-relative text-white mb-g">
73-
<div>
72+
<div class="p-2 bg-critical rounded overflow-hidden position-relative text-white mb-g h-100">
73+
<div class="position-relative z-1">
7474
<h6 class="display-4 d-block l-h-n m-0 fw-500">
7575
@if (resources.resources.status_overview[3] > 0 && ( PermissionsService.hasPermissionObservable(['scmmodule', 'resources', 'index'])|async )) {
7676
<a [routerLink]="['/', 'scm_module', 'resources', 'index']" class="text-white"

0 commit comments

Comments
 (0)