From b277147c15b15029d11520deeeafd90d929e1d80 Mon Sep 17 00:00:00 2001 From: Anonirato Date: Tue, 2 Apr 2019 16:29:10 +0100 Subject: [PATCH] [Table] Cursor pointer for selectable rows or cells --- src/definitions/collections/table.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/definitions/collections/table.less b/src/definitions/collections/table.less index 240e830bdf..4c6e725cb8 100755 --- a/src/definitions/collections/table.less +++ b/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 */