From 4d2bd4c8270825adc7d7f38e55cd323e94e4d52f Mon Sep 17 00:00:00 2001 From: Anonirato Date: Tue, 2 Apr 2019 15:37:40 +0100 Subject: [PATCH] Cursor pointer for selectable table rows or cells --- components/table.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/table.css b/components/table.css index bd23c985..54773c8e 100755 --- a/components/table.css +++ b/components/table.css @@ -504,21 +504,25 @@ .ui.table tbody tr td.selectable:hover { background: rgba(0, 0, 0, 0.05) !important; color: rgba(0, 0, 0, 0.95) !important; + cursor: pointer; } .ui.selectable.inverted.table tbody tr:hover, .ui.inverted.table tbody tr td.selectable:hover { background: rgba(255, 255, 255, 0.08) !important; color: #ffffff !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: 0.78571429em 0.78571429em; + cursor: pointer; } /* Other States */