Selectable lines in tables can now be checked clicking anywhere in the line (previously this could only be done clicking on the checkbox)

SVN:trunk[5994]
This commit is contained in:
Pierre Goiffon
2018-08-02 14:36:15 +00:00
parent 5099060be2
commit 775a5122c9
5 changed files with 152 additions and 1 deletions

View File

@@ -92,6 +92,19 @@ table.listResults td .view-image img {
margin-left: auto;
margin-right: auto;
}
table.listResults > tbody > tr.selected > * {
background-color: #ea7d1e;
}
table.listResults > tbody > tr > * {
transition: background-color 400ms linear;
}
table.listResults > tbody > tr:hover > * {
cursor: pointer;
}
table.listResults > tbody > tr.selected:hover > * {
/* hover on lines is currently done toggling td.hover, and having a rule for links */
background-color: #f3b37b;
}
.edit-image .view-image {
display: inline-block;
}