From 6f03dde1ab92f391f413f8cb0beded72a279d230 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Mon, 12 Nov 2007 15:14:35 -0500 Subject: [PATCH] Underline columns on sort results page so users will know it is a link Restore the CSS to display the up/down arrow on sort columns --- .../ipa-gui/ipagui/static/css/style.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/ipa-server/ipa-gui/ipagui/static/css/style.css b/ipa-server/ipa-gui/ipagui/static/css/style.css index 28f501352..1a7cbb1fb 100644 --- a/ipa-server/ipa-gui/ipagui/static/css/style.css +++ b/ipa-server/ipa-gui/ipagui/static/css/style.css @@ -383,3 +383,22 @@ ul.checkboxlist li input { #inactive { background-color: silver; } + +/* + * * TableKit css + * + */ + +.sortcol { + cursor: pointer; + padding-right: 20px !important; + background-repeat: no-repeat !important; + background-position: right center !important; + text-decoration: underline; +} +.sortasc { + background-image: url(/static/images/up.gif) !important; +} +.sortdesc { + background-image: url(/static/images/down.gif) !important; +}