From 8630e37ac76aa80bef6feb5581582ef397d64f1f Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Mon, 28 May 2012 08:06:03 +0200 Subject: [PATCH] Make table rows clickable --- templates/index.html | 8 ++++++++ templates/style.css | 10 ++++++++++ 2 files changed, 18 insertions(+) diff --git a/templates/index.html b/templates/index.html index 20d6584..30e2dd9 100644 --- a/templates/index.html +++ b/templates/index.html @@ -3,6 +3,14 @@ %(page)s - %(pagenum)s - %(title)s + +

%(title)s

diff --git a/templates/style.css b/templates/style.css index 5c704b1..a2d1d1c 100644 --- a/templates/style.css +++ b/templates/style.css @@ -15,6 +15,16 @@ pre { word-wrap: break-word; } +.clickable +{ + cursor: pointer; +} + +.clickable:hover +{ + background-color: #E6E6E6; +} + .clear { clear: both;