refactor: refs #6899 corrected Lilium styles and functionalities #304
|
@ -127,6 +127,15 @@ select:-webkit-autofill {
|
|||
background-color: var(--vn-section-color);
|
||||
}
|
||||
|
||||
.q-checkbox {
|
||||
& .q-checkbox__label {
|
||||
color: var(--vn-text-color);
|
||||
}
|
||||
& .q-checkbox__inner {
|
||||
color: var(--vn-label-color);
|
||||
}
|
||||
}
|
||||
|
||||
.q-chip,
|
||||
.q-notification__message,
|
||||
.q-notification__icon {
|
||||
|
|
|
@ -138,7 +138,7 @@ const ticketsColumns = ref([
|
|||
<VnTitle :text="t('invoiceOut.summary.taxBreakdown')" />
|
||||
<QTable :columns="taxColumns" :rows="invoiceOut.taxesBreakdown" flat>
|
||||
<template #header="props">
|
||||
<QTr :props="props">
|
||||
<QTr class="tr-header" :props="props">
|
||||
jon marked this conversation as resolved
|
||||
<QTh v-for="col in props.cols" :key="col.name" :props="props">
|
||||
{{ t(col.label) }}
|
||||
</QTh>
|
||||
|
@ -149,6 +149,13 @@ const ticketsColumns = ref([
|
|||
<QCard class="vn-three">
|
||||
<VnTitle :text="t('invoiceOut.summary.tickets')" />
|
||||
<QTable v-if="tickets" :columns="ticketsColumns" :rows="tickets" flat>
|
||||
<template #header="props">
|
||||
<QTr :props="props">
|
||||
<QTh class="tr-header" v-for="col in props.cols" :key="col.name" :props="props">
|
||||
{{ t(col.label) }}
|
||||
</QTh>
|
||||
</QTr>
|
||||
</template>
|
||||
<template #body-cell-item="{ value }">
|
||||
<QTd>
|
||||
<QBtn flat color="primary">
|
||||
|
@ -159,7 +166,7 @@ const ticketsColumns = ref([
|
|||
</template>
|
||||
<template #body-cell-quantity="{ value, row }">
|
||||
<QTd>
|
||||
<QBtn flat color="primary" dense>
|
||||
<QBtn class="no-uppercase" flat color="primary" dense>
|
||||
{{ value }}
|
||||
<CustomerDescriptorProxy :id="row.id" />
|
||||
</QBtn>
|
||||
|
@ -170,3 +177,12 @@ const ticketsColumns = ref([
|
|||
</template>
|
||||
</CardSummary>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.tr-header{
|
||||
color: #a8a8a8;
|
||||
jon marked this conversation as resolved
Outdated
jgallego
commented
no se ponen colores en el codigo, hay que usar variables con los colores definidos no se ponen colores en el codigo, hay que usar variables con los colores definidos
|
||||
}
|
||||
.no-uppercase{
|
||||
text-transform: none;
|
||||
}
|
||||
</style>
|
|
@ -183,7 +183,7 @@ const downloadCSV = async () => {
|
|||
</template>
|
||||
<template #body-cell-comercial="{ row }">
|
||||
<QTd>
|
||||
<QBtn flat dense color="blue">{{ row.comercialName }}</QBtn>
|
||||
<QBtn class="no-uppercase" flat dense color="blue">{{ row.comercialName }}</QBtn>
|
||||
<WorkerDescriptorProxy :id="row.comercialId" />
|
||||
</QTd>
|
||||
</template>
|
||||
|
@ -211,6 +211,9 @@ const downloadCSV = async () => {
|
|||
border-radius: 4px;
|
||||
padding: 6px;
|
||||
}
|
||||
.no-uppercase{
|
||||
text-transform: none;
|
||||
}
|
||||
</style>
|
||||
|
||||
<i18n>
|
||||
|
|
Loading…
Reference in New Issue
Si se quieren poner de manera global para todas las tablas.
Se puede poner el archivo glonal
src/css/app.scss
O se puede tambien mirar de poner aqui:
https://gitea.verdnatura.es/verdnatura/salix-front/src/branch/dev/src/boot/defaults/qTable.js
Estas clases me refiero: