style: change colors

This commit is contained in:
Javier Segarra 2025-02-17 13:29:38 +01:00
parent caa8682180
commit c93f0bdf11
1 changed files with 7 additions and 2 deletions

View File

@ -481,7 +481,7 @@ function handleSelection({ evt, added, rows: selectedRows }, rows) {
flat flat
dense dense
:class=" :class="
btn.isPrimary ? 'text-primary-light' : 'color-vn-text ' btn.isPrimary ? 'text-primary-light' : 'color-vn-label'
" "
:style="`visibility: ${ :style="`visibility: ${
((btn.show && btn.show(row)) ?? true) ((btn.show && btn.show(row)) ?? true)
@ -589,7 +589,12 @@ function handleSelection({ evt, added, rows: selectedRows }, rows) {
:key="index" :key="index"
:title="btn.title" :title="btn.title"
:icon="btn.icon" :icon="btn.icon"
class="q-pa-xs text-primary-light" class="q-pa-xs"
:class="
btn.isPrimary
? 'text-primary-light'
: 'color-vn-label'
"
flat flat
@click="btn.action(row)" @click="btn.action(row)"
/> />