|
@ -1747,8 +1747,10 @@ const stickyHeaderColumn = (time = 500) => { |
|
|
tableRef.value.$el.getElementsByTagName('table')[0].style.setProperty('--tableBodyPadding', bodyPadding); |
|
|
tableRef.value.$el.getElementsByTagName('table')[0].style.setProperty('--tableBodyPadding', bodyPadding); |
|
|
tableRef.value.$el.getElementsByTagName('table')[0].style.setProperty('--tableBodyHeight', (denseBodyComputed.value ? 24 : 48) + 'px'); |
|
|
tableRef.value.$el.getElementsByTagName('table')[0].style.setProperty('--tableBodyHeight', (denseBodyComputed.value ? 24 : 48) + 'px'); |
|
|
if (denseBottomComputed.value && (!attrs.hasOwnProperty('hide-bottom') || attrs['hide-bottom'] === false)) { |
|
|
if (denseBottomComputed.value && (!attrs.hasOwnProperty('hide-bottom') || attrs['hide-bottom'] === false)) { |
|
|
tableRef.value.$el.getElementsByClassName('q-table__bottom')[0].style.setProperty('--tableBottomHeight', 33 + 'px'); |
|
|
if (tableRef.value.$el.getElementsByClassName('q-table__bottom').length > 0) { |
|
|
tableRef.value.$el.getElementsByClassName('q-table__bottom')[0].style.setProperty('--tableBottomButtonHeight', 24 + 'px'); |
|
|
tableRef.value.$el.getElementsByClassName('q-table__bottom')[0].style.setProperty('--tableBottomHeight', 33 + 'px'); |
|
|
|
|
|
tableRef.value.$el.getElementsByClassName('q-table__bottom')[0].style.setProperty('--tableBottomButtonHeight', 24 + 'px'); |
|
|
|
|
|
} |
|
|
} else if ( |
|
|
} else if ( |
|
|
(!attrs.hasOwnProperty('hide-bottom') || attrs['hide-bottom'] === false) && |
|
|
(!attrs.hasOwnProperty('hide-bottom') || attrs['hide-bottom'] === false) && |
|
|
tableRef.value.$el.getElementsByClassName('q-table__bottom').length > 0 |
|
|
tableRef.value.$el.getElementsByClassName('q-table__bottom').length > 0 |
|
|