Skip to content

Commit ddca6ca

Browse files
committed
fix(VDataTable): keep fixed cells opaque when loading
fixes #21557
1 parent 027712e commit ddca6ca

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

packages/vuetify/src/components/VDataTable/VDataTable.sass

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,13 @@
118118
padding-left: 5px
119119

120120
.v-data-table--loading
121-
.v-data-table__td
122-
opacity: $data-table-loading-opacity
121+
&:not(.v-table--fixed-header) > .v-table__wrapper > table > thead,
122+
&:not(.v-table--fixed-footer) > .v-table__wrapper > table > tfoot,
123+
> .v-table__wrapper > table > tbody
124+
> tr > .v-data-table__td
125+
&:not(.v-data-table-column--fixed),
126+
&:not(.v-data-table-column--fixed-end)
127+
opacity: $data-table-loading-opacity
123128

124129
@include tools.layer('overrides')
125130
// Again, needs to beat all the child combinators

0 commit comments

Comments
 (0)