forked from verdnatura/hedera-web
refs #3971 Style fixes, debug alert removed
This commit is contained in:
parent
e92e04b4d5
commit
faa04966c7
|
@ -1,4 +1,4 @@
|
||||||
hedera-web (22.46.6) stable; urgency=low
|
hedera-web (22.46.7) stable; urgency=low
|
||||||
|
|
||||||
* Initial Release.
|
* Initial Release.
|
||||||
|
|
||||||
|
|
|
@ -3,4 +3,7 @@
|
||||||
padding: .4em;
|
padding: .4em;
|
||||||
background-color: #1e88e5;
|
background-color: #1e88e5;
|
||||||
border-radius: .1em;
|
border-radius: .1em;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,25 +1,28 @@
|
||||||
|
|
||||||
.balance {
|
.balance {
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
|
white-space: nowrap;
|
||||||
|
|
||||||
|
& > * {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
& > .amount {
|
||||||
|
color: white;
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
& > .info {
|
||||||
|
display: inline;
|
||||||
|
cursor: pointer;
|
||||||
|
height: 17px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
& > .negative {
|
||||||
|
background-color: #EF5350;
|
||||||
|
border-radius: 2px;
|
||||||
|
box-shadow: 0 0 .4em #666;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.balance > * {
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
.balance > .amount {
|
|
||||||
color: white;
|
|
||||||
padding: .3em;
|
|
||||||
}
|
|
||||||
.balance > .info {
|
|
||||||
display: inline;
|
|
||||||
cursor: pointer;
|
|
||||||
height: 1.2em;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
.balance > .negative {
|
|
||||||
background-color: #EF5350;
|
|
||||||
border-radius: .1em;
|
|
||||||
box-shadow: 0 0 .4em #666;
|
|
||||||
}
|
|
||||||
.balance-popup {
|
.balance-popup {
|
||||||
width: 25em;
|
width: 25em;
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,7 +51,7 @@ $navbar-height: 64px;
|
||||||
gap: 12px;
|
gap: 12px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding-left: 12px;
|
padding-left: 12px;
|
||||||
flex-shrink: 2;
|
flex-shrink: 3;
|
||||||
|
|
||||||
& > .title {
|
& > .title {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
|
@ -95,9 +95,6 @@ module.exports = new Class({
|
||||||
tpvStatus: status,
|
tpvStatus: status,
|
||||||
tpvOrder: '_transactionId_'
|
tpvOrder: '_transactionId_'
|
||||||
}, true);
|
}, true);
|
||||||
|
|
||||||
alert(path);
|
|
||||||
|
|
||||||
return path;
|
return path;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "hedera-web",
|
"name": "hedera-web",
|
||||||
"version": "22.46.6",
|
"version": "22.46.7",
|
||||||
"description": "Verdnatura web page",
|
"description": "Verdnatura web page",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
Loading…
Reference in New Issue