forked from verdnatura/salix-front
style: refs #6899 fixed style
This commit is contained in:
parent
ace55c554f
commit
3f8cafd201
|
@ -151,7 +151,12 @@ const ticketsColumns = ref([
|
||||||
<QTable v-if="tickets" :columns="ticketsColumns" :rows="tickets" flat>
|
<QTable v-if="tickets" :columns="ticketsColumns" :rows="tickets" flat>
|
||||||
<template #header="props">
|
<template #header="props">
|
||||||
<QTr :props="props">
|
<QTr :props="props">
|
||||||
<QTh class="tr-header" v-for="col in props.cols" :key="col.name" :props="props">
|
<QTh
|
||||||
|
class="tr-header"
|
||||||
|
v-for="col in props.cols"
|
||||||
|
:key="col.name"
|
||||||
|
:props="props"
|
||||||
|
>
|
||||||
{{ t(col.label) }}
|
{{ t(col.label) }}
|
||||||
</QTh>
|
</QTh>
|
||||||
</QTr>
|
</QTr>
|
||||||
|
@ -179,10 +184,10 @@ const ticketsColumns = ref([
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.tr-header{
|
.tr-header {
|
||||||
color: #a8a8a8;
|
color: var(--vn-label-color);
|
||||||
}
|
}
|
||||||
.no-uppercase{
|
.no-uppercase {
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue