style: refs #7404 fix ItemFixedPrice
This commit is contained in:
parent
86ab73eeb2
commit
cd8ad046d4
|
@ -142,7 +142,7 @@ const mixinRules = [
|
|||
align-items: flex-end;
|
||||
}
|
||||
.q-field__append.q-field__marginal.row.no-wrap.items-center.row {
|
||||
height: 30px;
|
||||
height: 35px;
|
||||
// background-color: green;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
|
|
@ -488,7 +488,7 @@ function handleOnDataSave({ CrudModelRef }) {
|
|||
v-model.number="props.row.rate2"
|
||||
v-on="getRowUpdateInputEvents(props)"
|
||||
>
|
||||
<template #append>€</template>
|
||||
<template #append> € </template>
|
||||
</VnInput>
|
||||
</template>
|
||||
<template #column-rate3="props">
|
||||
|
@ -498,7 +498,7 @@ function handleOnDataSave({ CrudModelRef }) {
|
|||
v-model.number="props.row.rate3"
|
||||
v-on="getRowUpdateInputEvents(props)"
|
||||
>
|
||||
<template #append>€</template>
|
||||
<template #append> € </template>
|
||||
</VnInput>
|
||||
</template>
|
||||
<template #column-minPrice="props">
|
||||
|
@ -518,7 +518,7 @@ function handleOnDataSave({ CrudModelRef }) {
|
|||
v-model.number="props.row.minPrice"
|
||||
v-on="getRowUpdateInputEvents(props)"
|
||||
>
|
||||
<template #append>€</template>
|
||||
<template #append> € </template>
|
||||
</VnInput>
|
||||
</div>
|
||||
</QTd>
|
||||
|
@ -635,6 +635,14 @@ tbody tr.highlight .q-td {
|
|||
}
|
||||
.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,
|
||||
|
@ -642,7 +650,7 @@ tbody tr.highlight .q-td {
|
|||
padding-bottom: 0;
|
||||
}
|
||||
.q-field__append.q-field__marginal.row.no-wrap.items-center {
|
||||
align-items: center;
|
||||
align-items: flex-end;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue