0
1
Fork 0

refs #3971 Select input & basket style fixes

This commit is contained in:
Juan Ferrer 2022-11-11 13:18:52 +01:00
parent 5abed9a207
commit 5de1601348
9 changed files with 17 additions and 38 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
hedera-web (22.44.1) stable; urgency=low
hedera-web (22.44.2) stable; urgency=low
* Initial Release.

View File

@ -7,7 +7,7 @@
<p><t>FillFormData</t></p>
<p><t>OrCallUs</t></p>
<form id="contact-form">
<input type="hidden" name="srv" value="json:misc/contact"/>
<input type="hidden" name="srv" value="json:client/contact"/>
<div class="form-group">
<label><t>Name</t></label>
<input type="text" name="name"/>

View File

@ -20,7 +20,7 @@
.basket .line {
display: flex;
gap: 20px;
gap: 15px;
margin: 24px 0;
height: 65px;
}
@ -29,14 +29,22 @@
}
.basket .line > .delete {
align-self: center;
margin-right: -8px;
}
.basket .line > .photo {
flex: none;
border-radius: 50%;
width: 65px;
gap: 0;
}
.basket .line > .info {
flex: 1;
overflow: hidden;
}
.basket .line > .info > * {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.basket .line > .info > h2 {
font-size: 1em;

View File

@ -57,11 +57,11 @@
<p class="tags">
{{iter.value5}} {{iter.value6}} {{iter.value7}}
</p>
<span class="subtotal">
{{Vn.Value.format(iter.price * iter.amount, '%.2d€')}}
</span>
<p class="amount">
{{iter.amount}} x {{Vn.Value.format(iter.price, '%.2d€')}}
<span class="subtotal">
{{Vn.Value.format(iter.price * iter.amount, '%.2d€')}}
</span>
</p>
</div>
</div>

View File

@ -3,7 +3,7 @@
z-index: 200;
display: block;
position: fixed;
overflow: hidden;
overflow: auto;
background-color: white;
border-radius: 10px;
box-shadow: 0 0 0.4em rgba(1, 1, 1, 0.6);

View File

@ -28,9 +28,6 @@
}
}
.htk-select-menu {
height: 100%;
max-height: 80em;
overflow: auto;
min-width: 14em;
tbody > tr {

View File

@ -1,6 +1,6 @@
{
"name": "hedera-web",
"version": "22.44.1",
"version": "22.44.2",
"description": "Verdnatura web page",
"license": "GPL-3.0",
"repository": {
@ -37,7 +37,7 @@
},
"scripts": {
"front": "webpack serve --open",
"back": "cd ../salix && gulp backOnly",
"back": "cd ../salix && NODE_ENV=test gulp backOnly",
"build": "rm -rf build/ ; webpack",
"clean": "rm -rf build/"
}

View File

@ -1,26 +0,0 @@
INSERT INTO vn2008.Clientes SET
cliente = #tradename
,razonsocial = #business-name
,`if` = #nif
,telefono = #phone
,movil = #mobile
,`e-mail` = #email
,contacto = #contact
,re = #es
,domicilio = #address
,poblacion = #city
,codpostal = #pc
,id_pais = #country
,province_id = #province
,chanel_id = NULL -- How did he find us?
,activo = FALSE;
SET @id := LAST_INSERT_ID();
INSERT INTO account.user SET
id = @id,
name = #user,
password = #password,
active = FALSE;