This commit is contained in:
parent
6f080b1275
commit
6a8be05d4b
|
@ -1,4 +1,4 @@
|
||||||
hedera-web (22.44.9) stable; urgency=low
|
hedera-web (22.44.10) stable; urgency=low
|
||||||
|
|
||||||
* Initial Release.
|
* Initial Release.
|
||||||
|
|
||||||
|
|
|
@ -21,8 +21,8 @@
|
||||||
.basket .line {
|
.basket .line {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 12px;
|
gap: 12px;
|
||||||
margin: 24px 0;
|
margin: 20px 0;
|
||||||
height: 65px;
|
height: 68px;
|
||||||
}
|
}
|
||||||
.basket .line:last-child {
|
.basket .line:last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
.basket .line > .photo {
|
.basket .line > .photo {
|
||||||
flex: none;
|
flex: none;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
width: 65px;
|
width: 68px;
|
||||||
gap: 0;
|
gap: 0;
|
||||||
}
|
}
|
||||||
.basket .line > .info {
|
.basket .line > .info {
|
||||||
|
|
|
@ -34,9 +34,9 @@
|
||||||
|
|
||||||
.ticket .line {
|
.ticket .line {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 20px;
|
gap: 12px;
|
||||||
margin: 24px 0;
|
margin: 24px 0;
|
||||||
height: 65px;
|
height: 68px;
|
||||||
}
|
}
|
||||||
.ticket .line:last-child {
|
.ticket .line:last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
@ -44,16 +44,21 @@
|
||||||
.ticket .line > .photo {
|
.ticket .line > .photo {
|
||||||
flex: none;
|
flex: none;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
width: 65px;
|
width: 68px;
|
||||||
}
|
}
|
||||||
.ticket .line > .info {
|
.ticket .line > .info {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.ticket .line > .info > * {
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.ticket .line > .info > h2 {
|
.ticket .line > .info > h2 {
|
||||||
font-size: 1rem;
|
font-size: .9rem;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
padding: 0;
|
margin-bottom: 2px;
|
||||||
padding-bottom: .1em;
|
|
||||||
}
|
}
|
||||||
.ticket .line > .info > p {
|
.ticket .line > .info > p {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
|
@ -74,7 +74,7 @@ module.exports = new Class({
|
||||||
}
|
}
|
||||||
|
|
||||||
,isModal: function() {
|
,isModal: function() {
|
||||||
return this._modal || Vn.isMobile();
|
return this._modal || Vn.isMobile() || true;
|
||||||
}
|
}
|
||||||
|
|
||||||
,open: function() {
|
,open: function() {
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
|
|
||||||
&.modal {
|
&.modal {
|
||||||
position: relative;
|
position: relative;
|
||||||
font-size: 1.2rem;
|
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,10 +43,10 @@ body { font-size: 14px; }
|
||||||
@media
|
@media
|
||||||
(max-device-width: 411px) and (min-resolution: 249dpi),
|
(max-device-width: 411px) and (min-resolution: 249dpi),
|
||||||
(max-device-width: 411px) and (-webkit-min-device-pixel-ratio: 3) {
|
(max-device-width: 411px) and (-webkit-min-device-pixel-ratio: 3) {
|
||||||
body { font-size: 14px; }
|
body { font-size: 13px; }
|
||||||
}
|
}
|
||||||
@media
|
@media
|
||||||
(min-device-width: 414px) and (min-resolution: 249dpi),
|
(min-device-width: 414px) and (min-resolution: 249dpi),
|
||||||
(min-device-width: 414px) and (-webkit-min-device-pixel-ratio: 3) {
|
(min-device-width: 414px) and (-webkit-min-device-pixel-ratio: 3) {
|
||||||
body { font-size: 14px; }
|
body { font-size: 13px; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "hedera-web",
|
"name": "hedera-web",
|
||||||
"version": "22.44.9",
|
"version": "22.44.10",
|
||||||
"description": "Verdnatura web page",
|
"description": "Verdnatura web page",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
Loading…
Reference in New Issue