Commit 33703c9e authored by Sven Franck's avatar Sven Franck

fixed row highlighting on non-link cells

parent a3355b08
...@@ -731,8 +731,8 @@ html body div.ui-slider-track.ui-body-slapos-black .ui-btn-active, ...@@ -731,8 +731,8 @@ html body div.ui-slider-track.ui-body-slapos-black .ui-btn-active,
html .ui-page-theme-slapos-black .ui-table-wrapper .ui-btn:active, html .ui-page-theme-slapos-black .ui-table-wrapper .ui-btn:active,
html .ui-page-theme-slapos-black .ui-table-wrapper .ui.btn.ui-btn-active, html .ui-page-theme-slapos-black .ui-table-wrapper .ui.btn.ui-btn-active,
/* Table rows on hover */ /* Table rows on hover */
html table.ui-table tbody tr:hover td:not(.ui-no-result), html table.ui-table tbody tr.linkable:hover td:not(.ui-no-result),
html table.ui-table tbody tr:hover th:not(.ui-no-result), html table.ui-table tbody tr.linkable:hover th:not(.ui-no-result),
/* Controlbar */ /* Controlbar */
html .ui-page-theme-slapos-black .ui-controlbar .ui-btn:active, html .ui-page-theme-slapos-black .ui-controlbar .ui-btn:active,
html .ui-page-theme-slapos-black .ui-controlbar .ui-btn.ui-btn-active, html .ui-page-theme-slapos-black .ui-controlbar .ui-btn.ui-btn-active,
......
...@@ -1464,6 +1464,7 @@ ...@@ -1464,6 +1464,7 @@
* @param {string} identifier * @param {string} identifier
**/ **/
"download": function (obj) { "download": function (obj) {
console.log(obj)
util.error("Download: Not implemented."); util.error("Download: Not implemented.");
}, },
...@@ -4855,6 +4856,9 @@ ...@@ -4855,6 +4856,9 @@
} }
} }
} }
if (spec.config.link) {
row.className = "linkable";
}
container.appendChild(row); container.appendChild(row);
} }
return container; return container;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment