Compare commits

...

20 Commits

Author SHA1 Message Date
Javier Segarra 5e75bb29fb revert: refs #7404 #7404 VnSelect hover
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-07 20:05:04 +02:00
Javier Segarra 68f8037db4 fix: refs #7404 #7404 VnSelect resolve conflicts
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-07 13:59:32 +02:00
Javier Segarra 14d0599d60 style: refs #7404 give more space 2024-10-07 13:59:16 +02:00
Javier Segarra 3e125805c6 style: refs #7404 fix icons hover effect 2024-10-07 13:58:58 +02:00
Javier Segarra 36ce685d6e fix: refs #7404 #7404 VnSelect resolve conflcits
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-07 13:24:11 +02:00
Javier Segarra f8f41c8cac Merge branch 'dev' into 7404-fixSomeStyleIssues 2024-10-07 13:19:17 +02:00
Javier Segarra 47ea8d1e5b perf: refs #7404 #7404 clean style rules
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-05 00:27:15 +02:00
Javier Segarra 937a1f3ddb Merge branch 'dev' into 7404-fixSomeStyleIssues 2024-10-05 00:23:40 +02:00
Javier Segarra 83ee3b5bde fix: refs #7404 #7404 style Filters 2024-10-05 00:21:04 +02:00
Javier Segarra 18227411f0 fix: refs #7404 #7404 style VnSearchbar 2024-10-05 00:02:25 +02:00
Javier Segarra 6e16febe8b style: refs #7404 #7404 remove comments
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-03 00:13:18 +02:00
Javier Segarra 22ec143ee0 Merge branch 'dev' into 7404-fixSomeStyleIssues
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-02 22:08:51 +00:00
Javier Segarra 6c3c7a3913 style: refs #7404 #7404 fix ItemListFilter
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-02 14:56:43 +02:00
Javier Segarra 64bb27ca7f style: refs #7404 fix RouteExtendedList
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-01 21:49:29 +02:00
Javier Segarra cd8ad046d4 style: refs #7404 fix ItemFixedPrice 2024-10-01 21:47:32 +02:00
Javier Segarra 86ab73eeb2 fix: refs #7404 ItemFixedPrice
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-01 14:10:33 +02:00
Javier Segarra 16179a0e88 fix: refs #7404 inputs 2024-10-01 13:32:39 +02:00
Javier Segarra 75d81a2110 fix: refs #7404 inputs 2024-10-01 13:25:34 +02:00
Javier Segarra f85cd77864 fix: refs #7404 filters 2024-10-01 13:23:18 +02:00
Javier Segarra 9af08a4b28 fix: refs #7404 VnSearchbar 2024-10-01 13:20:55 +02:00
7 changed files with 172 additions and 130 deletions

View File

@ -127,27 +127,31 @@ const mixinRules = [
inputMax: Debe ser menor a {value} inputMax: Debe ser menor a {value}
</i18n> </i18n>
<style lang="scss"> <style lang="scss">
.q-field__append { .q-field {
&__append {
padding-inline: 0; padding-inline: 0;
&.q-field__marginal.row.no-wrap.items-center.row {
height: 35px;
}
} }
.q-field__append.q-field__marginal.row.no-wrap.items-center.row { &--rounded > .q-field__inner > .q-field__control,
height: 20px; &--labeled:not(&--outlined) > .q-field__inner > .q-field__control {
} height: 43px;
.q-field--outlined .q-field__append.q-field__marginal.row.no-wrap.items-center.row { align-items: baseline;
height: auto;
}
.q-field__control {
height: unset;
} }
.q-field--labeled { &--labeled {
.q-field__native, .q-field__native,
.q-field__prefix, .q-field__prefix,
.q-field__suffix, .q-field__suffix,
.q-field__input { .q-field__input {
padding-bottom: 0; padding-bottom: 0;
min-height: 15px; line-height: 20px;
min-height: fit-content;
align-items: flex-start;
}
} }
} }
</style> </style>

View File

@ -105,6 +105,7 @@ const styleAttrs = computed(() => {
hide-bottom-space hide-bottom-space
> >
<template #append> <template #append>
<div style="align-items: flex-end; display: flex">
<QIcon <QIcon
name="close" name="close"
size="xs" size="xs"
@ -120,6 +121,7 @@ const styleAttrs = computed(() => {
isPopupOpen = false; isPopupOpen = false;
" "
/> />
<QIcon <QIcon
v-if="showEvent" v-if="showEvent"
name="event" name="event"
@ -127,6 +129,7 @@ const styleAttrs = computed(() => {
@click="isPopupOpen = !isPopupOpen" @click="isPopupOpen = !isPopupOpen"
:title="t('Open date')" :title="t('Open date')"
/> />
</div>
</template> </template>
<QMenu <QMenu
transition-show="scale" transition-show="scale"

View File

@ -84,6 +84,7 @@ function dateToTime(newDate) {
hide-bottom-space hide-bottom-space
> >
<template #append> <template #append>
<div style="align-items: flex-end; display: flex">
<QIcon <QIcon
name="close" name="close"
size="xs" size="xs"
@ -105,6 +106,7 @@ function dateToTime(newDate) {
@click="isPopupOpen = !isPopupOpen" @click="isPopupOpen = !isPopupOpen"
:title="t('Open time')" :title="t('Open time')"
/> />
</div>
</template> </template>
<QMenu <QMenu
transition-show="scale" transition-show="scale"

View File

@ -170,7 +170,12 @@ async function search() {
cursor: help; cursor: help;
} }
#searchbar { #searchbar {
.q-field__append.q-field__marginal.row.no-wrap.items-center.row {
height: inherit;
}
.q-field--standout.q-field--highlighted .q-field__control { .q-field--standout.q-field--highlighted .q-field__control {
align-items: center;
background-color: white; background-color: white;
color: black; color: black;
.q-field__native, .q-field__native,

View File

@ -288,14 +288,18 @@ input::-webkit-inner-spin-button {
color: $info; color: $info;
} }
} }
.q-field__inner { .q-field__inner {
.q-field__control { .q-field__control {
min-height: auto !important; min-height: auto !important;
display: flex; display: flex;
align-items: flex-end; align-items: self-start;
padding-bottom: 2px; padding-bottom: 2px;
.q-field__native.row { .q-field__native.row {
min-height: auto !important; min-height: auto !important;
} }
} }
} }
.q-textarea.q-field--labeled .q-field__control-container {
padding-top: 23px;
}

View File

@ -102,17 +102,12 @@ const columns = computed(() => [
label: t('item.fixedPrice.started'), label: t('item.fixedPrice.started'),
field: 'started', field: 'started',
name: 'started', name: 'started',
format: ({ started }) => toDate(started),
cardVisible: true, cardVisible: true,
...defaultColumnAttrs,
columnField: {
component: 'date',
class: 'shrink',
},
columnFilter: { columnFilter: {
component: 'date', component: 'date',
}, },
columnClass: 'expand', style: ' max-width: 90px',
format: ({ started }) => toDate(started),
}, },
{ {
label: t('item.fixedPrice.ended'), label: t('item.fixedPrice.ended'),
@ -120,14 +115,11 @@ const columns = computed(() => [
name: 'ended', name: 'ended',
...defaultColumnAttrs, ...defaultColumnAttrs,
cardVisible: true, cardVisible: true,
columnField: {
component: 'date',
class: 'shrink',
},
columnFilter: { columnFilter: {
component: 'date', component: 'date',
}, },
columnClass: 'expand', style: ' max-width: 100px',
format: (row) => toDate(row.ended), format: (row) => toDate(row.ended),
}, },
@ -469,6 +461,7 @@ function handleOnDataSave({ CrudModelRef }) {
option-value="id" option-value="id"
v-model="props.row.itemFk" v-model="props.row.itemFk"
v-on="getRowUpdateInputEvents(props, true, 'select')" v-on="getRowUpdateInputEvents(props, true, 'select')"
:is-clearable="true"
> >
<template #option="scope"> <template #option="scope">
<QItem v-bind="scope.itemProps"> <QItem v-bind="scope.itemProps">
@ -489,7 +482,6 @@ function handleOnDataSave({ CrudModelRef }) {
<FetchedTags :item="row" /> <FetchedTags :item="row" />
</template> </template>
<template #column-rate2="props"> <template #column-rate2="props">
<QTd class="col">
<VnInput <VnInput
type="currency" type="currency"
style="width: 75px" style="width: 75px"
@ -498,10 +490,8 @@ function handleOnDataSave({ CrudModelRef }) {
> >
<template #append> </template> <template #append> </template>
</VnInput> </VnInput>
</QTd>
</template> </template>
<template #column-rate3="props"> <template #column-rate3="props">
<QTd class="col">
<VnInput <VnInput
style="width: 75px" style="width: 75px"
type="currency" type="currency"
@ -510,7 +500,6 @@ function handleOnDataSave({ CrudModelRef }) {
> >
<template #append> </template> <template #append> </template>
</VnInput> </VnInput>
</QTd>
</template> </template>
<template #column-minPrice="props"> <template #column-minPrice="props">
<QTd class="col"> <QTd class="col">
@ -537,7 +526,7 @@ function handleOnDataSave({ CrudModelRef }) {
<template #column-started="props"> <template #column-started="props">
<VnInputDate <VnInputDate
class="vnInputDate" class="vnInputDate"
:show-event="true" :show-event="false"
v-model="props.row.started" v-model="props.row.started"
v-on="getRowUpdateInputEvents(props, false, 'date')" v-on="getRowUpdateInputEvents(props, false, 'date')"
v-bind="dateStyle(isBigger(props.row.started))" v-bind="dateStyle(isBigger(props.row.started))"
@ -546,14 +535,13 @@ function handleOnDataSave({ CrudModelRef }) {
<template #column-ended="props"> <template #column-ended="props">
<VnInputDate <VnInputDate
class="vnInputDate" class="vnInputDate"
:show-event="true" :show-event="false"
v-model="props.row.ended" v-model="props.row.ended"
v-on="getRowUpdateInputEvents(props, false, 'date')" v-on="getRowUpdateInputEvents(props, false, 'date')"
v-bind="dateStyle(isLower(props.row.ended))" v-bind="dateStyle(isLower(props.row.ended))"
/> />
</template> </template>
<template #column-warehouseFk="props"> <template #column-warehouseFk="props">
<QTd class="col">
<VnSelect <VnSelect
style="max-width: 150px" style="max-width: 150px"
:options="warehousesOptions" :options="warehousesOptions"
@ -563,7 +551,6 @@ function handleOnDataSave({ CrudModelRef }) {
v-model="props.row.warehouseFk" v-model="props.row.warehouseFk"
v-on="getRowUpdateInputEvents(props, false, 'select')" v-on="getRowUpdateInputEvents(props, false, 'select')"
/> />
</QTd>
</template> </template>
<template #column-deleteAction="{ row, rowIndex }"> <template #column-deleteAction="{ row, rowIndex }">
<QIcon <QIcon
@ -597,26 +584,32 @@ function handleOnDataSave({ CrudModelRef }) {
</QPage> </QPage>
</template> </template>
<style lang="scss"> <style lang="scss">
.q-table th, .q-table {
.q-table td { th,
td {
padding-inline: 5px !important; padding-inline: 5px !important;
} }
.q-table tr td {
tr td {
font-size: 10pt; font-size: 10pt;
border-top: none; border-top: none;
border-collapse: collapse; border-collapse: collapse;
} }
.q-table tbody td {
tbody td {
max-width: none; max-width: none;
.q-td.col { .q-td.col {
& .vnInputDate { .vnInputDate {
min-width: 90px; min-width: 90px;
} }
& div.row {
& .q-checkbox { div.row {
& .q-checkbox__inner { .q-checkbox {
.q-checkbox__inner {
position: relative !important; position: relative !important;
&.q-checkbox__inner--truthy {
&--truthy {
color: var(--q-primary); color: var(--q-primary);
} }
} }
@ -624,6 +617,8 @@ function handleOnDataSave({ CrudModelRef }) {
} }
} }
} }
}
.q-field__after, .q-field__after,
.q-field__append { .q-field__append {
padding: 0; padding: 0;
@ -632,6 +627,7 @@ function handleOnDataSave({ CrudModelRef }) {
tbody tr.highlight .q-td { tbody tr.highlight .q-td {
animation: highlight-animation 4s ease-in-out; animation: highlight-animation 4s ease-in-out;
} }
@keyframes highlight-animation { @keyframes highlight-animation {
0% { 0% {
background-color: $primary-light; background-color: $primary-light;
@ -640,12 +636,38 @@ tbody tr.highlight .q-td {
background-color: transparent; background-color: transparent;
} }
} }
.subName { .subName {
margin-left: 5%; margin-left: 5%;
font-size: 0.75rem; font-size: 0.75rem;
text-transform: uppercase; text-transform: uppercase;
color: var(--vn-label-color); color: var(--vn-label-color);
} }
.q-td .q-field__control.relative-position.row.no-wrap {
height: 25px;
display: flex;
align-items: center;
.q-icon:not(.q-select__dropdown-icon) {
padding-bottom: 7px;
}
.q-icon.q-select__dropdown-icon {
padding-bottom: 5px;
}
.q-field__native,
.q-field__prefix,
.q-field__suffix,
.q-field__input {
padding-bottom: 0;
}
.q-field__append.q-field__marginal.row.no-wrap.items-center {
align-items: flex-end;
}
}
</style> </style>
<i18n> <i18n>
es: es:

View File

@ -365,6 +365,7 @@ onMounted(async () => {
> >
<QItemSection class="col"> <QItemSection class="col">
<VnSelect <VnSelect
style="max-width: 50%"
:label="t('params.tag')" :label="t('params.tag')"
:model-value="fieldFilter.selectedField" :model-value="fieldFilter.selectedField"
:options="moreFields" :options="moreFields"
@ -392,6 +393,7 @@ onMounted(async () => {
@update:model-value="applyFieldFilters(params, searchFn)" @update:model-value="applyFieldFilters(params, searchFn)"
/> />
<VnInput <VnInput
style="max-width: 50%"
v-else v-else
v-model="fieldFilter.value" v-model="fieldFilter.value"
:label="t('params.value')" :label="t('params.value')"