forked from verdnatura/salix-front
Create global variable for table separation row
This commit is contained in:
parent
4d2dacff6f
commit
90bfba0290
|
@ -75,6 +75,11 @@ body.body--dark {
|
||||||
background-color: var(--vn-light-gray);
|
background-color: var(--vn-light-gray);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.vn-table-separation-row {
|
||||||
|
height: 16px !important;
|
||||||
|
background-color: var(--vn-gray) !important;
|
||||||
|
}
|
||||||
|
|
||||||
/* Estilo para el asterisco en campos requeridos */
|
/* Estilo para el asterisco en campos requeridos */
|
||||||
.q-field.required .q-field__label:after {
|
.q-field.required .q-field__label:after {
|
||||||
content: ' *';
|
content: ' *';
|
||||||
|
|
|
@ -420,7 +420,7 @@ const lockIconType = (groupingMode, mode) => {
|
||||||
</QTr>
|
</QTr>
|
||||||
<!-- Esta última row es utilizada para agregar un espaciado y así marcar una diferencia visual entre los diferentes buys -->
|
<!-- Esta última row es utilizada para agregar un espaciado y así marcar una diferencia visual entre los diferentes buys -->
|
||||||
<QTr v-if="props.rowIndex !== rows.length - 1" class="separation-row">
|
<QTr v-if="props.rowIndex !== rows.length - 1" class="separation-row">
|
||||||
<QTd colspan="12" style="height: 16px" />
|
<QTd colspan="12" class="vn-table-separation-row" />
|
||||||
</QTr>
|
</QTr>
|
||||||
</template>
|
</template>
|
||||||
<template #item="props">
|
<template #item="props">
|
||||||
|
@ -471,9 +471,6 @@ const lockIconType = (groupingMode, mode) => {
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.separation-row {
|
|
||||||
background-color: var(--vn-gray) !important;
|
|
||||||
}
|
|
||||||
.grid-style-transition {
|
.grid-style-transition {
|
||||||
transition: transform 0.28s, background-color 0.28s;
|
transition: transform 0.28s, background-color 0.28s;
|
||||||
}
|
}
|
||||||
|
|
|
@ -334,11 +334,8 @@ const fetchEntryBuys = async () => {
|
||||||
</QTd>
|
</QTd>
|
||||||
</QTr>
|
</QTr>
|
||||||
<!-- Esta última row es utilizada para agregar un espaciado y así marcar una diferencia visual entre los diferentes buys -->
|
<!-- Esta última row es utilizada para agregar un espaciado y así marcar una diferencia visual entre los diferentes buys -->
|
||||||
<QTr
|
<QTr v-if="rowIndex !== entryBuys.length - 1">
|
||||||
v-if="rowIndex !== entryBuys.length - 1"
|
<QTd colspan="10" class="vn-table-separation-row" />
|
||||||
class="separation-row"
|
|
||||||
>
|
|
||||||
<QTd colspan="10" style="height: 16px" />
|
|
||||||
</QTr>
|
</QTr>
|
||||||
</template>
|
</template>
|
||||||
</QTable>
|
</QTable>
|
||||||
|
@ -347,12 +344,6 @@ const fetchEntryBuys = async () => {
|
||||||
</CardSummary>
|
</CardSummary>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.separation-row {
|
|
||||||
background-color: var(--vn-gray) !important;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<i18n>
|
<i18n>
|
||||||
es:
|
es:
|
||||||
Travel data: Datos envío
|
Travel data: Datos envío
|
||||||
|
|
Loading…
Reference in New Issue