summaryrefslogtreecommitdiffstats
path: root/ipa-server
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2007-11-12 15:14:35 -0500
committerRob Crittenden <rcritten@redhat.com>2007-11-12 15:14:35 -0500
commit6f03dde1ab92f391f413f8cb0beded72a279d230 (patch)
tree94d1f460925efa0327c7f3f439a9b2a05fd86d67 /ipa-server
parent547e6e920e13a312813b21b62091051424bafacb (diff)
downloadfreeipa-6f03dde1ab92f391f413f8cb0beded72a279d230.tar.gz
freeipa-6f03dde1ab92f391f413f8cb0beded72a279d230.tar.xz
freeipa-6f03dde1ab92f391f413f8cb0beded72a279d230.zip
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
Diffstat (limited to 'ipa-server')
-rw-r--r--ipa-server/ipa-gui/ipagui/static/css/style.css19
1 files changed, 19 insertions, 0 deletions
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;
+}