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. * Initial Release.

View File

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

View File

@ -53,4 +53,12 @@
border-bottom: none; 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) { ,_onGridClicked: function(grid, e) {
var target = e.target; let cell;
var parentNode = target.parentNode; let target = e.target;
while (parentNode !== grid.tbody) { while (target !== grid.tbody) {
target = parentNode; cell = target;
parentNode = parentNode.parentNode; target = target.parentNode;
} }
var value; if (!cell) return;
var row = target.rowIndex - 1;
let value;
const row = cell.rowIndex - 1;
if (row >= 0) if (row >= 0)
value = this._model.getByIndex(row, this.valueColumnIndex); value = this._model.getByIndex(row, this.valueColumnIndex);

View File

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