[ACS-9375] Transparent background for hovered spinner (#10691)

This commit is contained in:
AleksanderSklorz 2025-03-19 08:23:10 +01:00 committed by GitHub
parent b643054a15
commit 015ce8a99e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

View File

@ -461,7 +461,7 @@
</ng-template>
</div>
<ng-template #loadingRowTemplate>
<div class="adf-datatable-row">
<div class="adf-datatable-row adf-datatable-data-loading">
<div class="adf-no-content-container adf-datatable-cell">
<ng-template *ngIf="loadingTemplate"
ngFor [ngForOf]="[data]"

View File

@ -104,9 +104,11 @@ $data-table-cell-min-width-file-size: $data-table-cell-min-width-1 !default;
}
.adf-datatable-row {
&:hover,
&:focus {
background-color: var(--adf-theme-background-hover-color);
&:not(.adf-datatable-data-loading) {
&:hover,
&:focus {
background-color: var(--adf-theme-background-hover-color);
}
}
&:focus {