diff --git a/debian/changelog b/debian/changelog index 936ffd3b..36fd1083 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -hedera-web (1.408.13) stable; urgency=low +hedera-web (1.408.14) stable; urgency=low * Initial Release. diff --git a/js/hedera/login.scss b/js/hedera/login.scss index 66bb2f59..5238e4ec 100644 --- a/js/hedera/login.scss +++ b/js/hedera/login.scss @@ -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 { diff --git a/js/htk/list/style.scss b/js/htk/list/style.scss index 70669d0c..66f4290f 100644 --- a/js/htk/list/style.scss +++ b/js/htk/list/style.scss @@ -53,4 +53,12 @@ border-bottom: none; } } + + /* Mobile */ + + @media (max-width: 960px) { + .item > .actions { + display: initial; + } + } } diff --git a/js/htk/select/index.js b/js/htk/select/index.js index f5bfaa4e..341c3b3b 100644 --- a/js/htk/select/index.js +++ b/js/htk/select/index.js @@ -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); diff --git a/package.json b/package.json index 99269318..13e1bc17 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hedera-web", - "version": "1.408.13", + "version": "1.408.14", "description": "Verdnatura web page", "license": "GPL-3.0", "repository": {