From 6b311a42fba9713d9d8aa585f9fd552be5113855 Mon Sep 17 00:00:00 2001 From: "kay.one" Date: Thu, 1 Mar 2012 19:56:37 -0800 Subject: [PATCH] Fix: sorted column will have highlighted column, sortable columns will highlight on hover --- NzbDrone.Web/Content/Grid.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/NzbDrone.Web/Content/Grid.css b/NzbDrone.Web/Content/Grid.css index 33e4e07d2..c1cd8db16 100644 --- a/NzbDrone.Web/Content/Grid.css +++ b/NzbDrone.Web/Content/Grid.css @@ -82,4 +82,12 @@ .grid-container { overflow: hidden; -} \ No newline at end of file +} + +table.dataTable thead th.sorting_disabled { + cursor:default; +} + +table.dataTable thead th.sorting_desc, table.dataTable thead th.sorting_asc, table.dataTable thead th.sorting:hover { + background-color: #e7efff; +}