From bf71c14ea7678e3abbd04537608a14bf503b4abe Mon Sep 17 00:00:00 2001 From: dequis Date: Thu, 7 Aug 2014 00:54:19 -0300 Subject: A few minor html/css changes - Limit version column width to 8em - Change css to make it more obvious that columns are clickable - Remove duplicate question from the FAQ in the index - Update URL to the github repo (the old one is a redirect) - A typo in the third question --- assets/css/style.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'assets/css') diff --git a/assets/css/style.css b/assets/css/style.css index bcbd951..05d3e91 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -1,3 +1,16 @@ dd { margin-bottom: 6px; } + +.version { + max-width: 8em; + word-wrap: break-word; +} + +table.sortable thead { + cursor: pointer; +} + +table.sortable thead th:hover { + opacity: 0.8; +} -- cgit v1.2.3 From 0345d705714e8a545994224047510ee5e26c6543 Mon Sep 17 00:00:00 2001 From: dequis Date: Thu, 7 Aug 2014 02:51:41 -0300 Subject: Add "modified" column, prettified with "timeago" if js is available Also sorts correctly. Date formatting is something this template engine definitely does right. The timeago cutoff is set to one year, it just displays YYYY-MM-DD for dates older than that. --- assets/css/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'assets/css') diff --git a/assets/css/style.css b/assets/css/style.css index 05d3e91..fe72819 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -7,6 +7,15 @@ dd { word-wrap: break-word; } +.authors { + max-width: 12em; +} + +.modified { + max-width: 8em; + min-width: 8em; +} + table.sortable thead { cursor: pointer; } -- cgit v1.2.3