Minor fixes
gitea/hedera-web/pipeline/head This commit looks good
Details
gitea/hedera-web/pipeline/head This commit looks good
Details
This commit is contained in:
parent
3f637fff80
commit
e8f73c5147
|
@ -1,4 +1,4 @@
|
|||
hedera-web (1.408.13) stable; urgency=low
|
||||
hedera-web (1.408.14) stable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -53,4 +53,12 @@
|
|||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* Mobile */
|
||||
|
||||
@media (max-width: 960px) {
|
||||
.item > .actions {
|
||||
display: initial;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hedera-web",
|
||||
"version": "1.408.13",
|
||||
"version": "1.408.14",
|
||||
"description": "Verdnatura web page",
|
||||
"license": "GPL-3.0",
|
||||
"repository": {
|
||||
|
|
Loading…
Reference in New Issue