Minor fixes
gitea/hedera-web/pipeline/head This commit looks good Details

This commit is contained in:
Juan Ferrer 2022-10-04 10:17:43 +02:00
parent 3f637fff80
commit e8f73c5147
5 changed files with 20 additions and 12 deletions

2
debian/changelog vendored
View File

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

View File

@ -115,9 +115,7 @@ $login-margin-between: 55px;
text-decoration: none;
&:hover {
border-color: rgba(0, 0, 0, .8);
background-color: rgba(0, 0, 0, .8);
color: white;
background-color: rgba(0, 0, 0, .1);
}
}
.password-forgotten {

View File

@ -53,4 +53,12 @@
border-bottom: none;
}
}
/* Mobile */
@media (max-width: 960px) {
.item > .actions {
display: initial;
}
}
}

View File

@ -179,16 +179,18 @@ module.exports = new Class({
}
,_onGridClicked: function(grid, e) {
var target = e.target;
var parentNode = target.parentNode;
let cell;
let target = e.target;
while (parentNode !== grid.tbody) {
target = parentNode;
parentNode = parentNode.parentNode;
while (target !== grid.tbody) {
cell = target;
target = target.parentNode;
}
var value;
var row = target.rowIndex - 1;
if (!cell) return;
let value;
const row = cell.rowIndex - 1;
if (row >= 0)
value = this._model.getByIndex(row, this.valueColumnIndex);

View File

@ -1,6 +1,6 @@
{
"name": "hedera-web",
"version": "1.408.13",
"version": "1.408.14",
"description": "Verdnatura web page",
"license": "GPL-3.0",
"repository": {