Browse Source

[Table] Cursor pointer for selectable rows or cells

pull/6784/head
Anonirato 6 years ago
parent
commit
b277147c15
1 changed files with 4 additions and 0 deletions
  1. 4
      src/definitions/collections/table.less

4
src/definitions/collections/table.less

@ -500,21 +500,25 @@
.ui.table tbody tr td.selectable:hover {
background: @selectableBackground !important;
color: @selectableTextColor !important;
cursor: pointer;
}
.ui.selectable.inverted.table tbody tr:hover,
.ui.inverted.table tbody tr td.selectable:hover {
background: @selectableInvertedBackground !important;
color: @selectableInvertedTextColor !important;
cursor: pointer;
}
/* Selectable Cell Link */
.ui.table tbody tr td.selectable {
padding: 0em;
cursor: pointer;
}
.ui.table tbody tr td.selectable > a:not(.ui) {
display: block;
color: inherit;
padding: @cellVerticalPadding @cellHorizontalPadding;
cursor: pointer;
}
/* Other States */

Loading…
Cancel
Save