From 9488af9e9818938d723859b0c38f96a238a10da0 Mon Sep 17 00:00:00 2001 From: Matthijs Kuiper Date: Tue, 9 Jan 2018 01:59:19 +0100 Subject: Only apply cursor:pointer to clickable table rows --- html/assets/style.css | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/html/assets/style.css b/html/assets/style.css index d709e24..f9db583 100755 --- a/html/assets/style.css +++ b/html/assets/style.css @@ -555,6 +555,9 @@ input[type="button"].btn-block { .zebra tr:last-child { border-right: 1px solid #1e1e1e; } +.zebra tr[href] { + cursor: pointer; +} .zebra td { font-family: GothamLight, Verdana, Arial, Helvetica; font-size: 10pt; @@ -565,7 +568,6 @@ input[type="button"].btn-block { empty-cells: show; /* For Firefox to show empty cells properly */ border-collapse: separate; - cursor: pointer; } .zebra tbody tr:nth-child(odd) { background: rgb(103, 103, 103); @@ -1087,8 +1089,10 @@ a.pages:hover { /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(#2069a1, #194c74); /* For Opera 11.1 to 12.0 */ - background: -moz-linear-gradient(#2069a1, #194c74); - /* For Firefox 3.6 to 15 */ + background: -moz-linear-gradient( + #2069a1, + #194c74 + ); /* For Firefox 3.6 to 15 */ background: linear-gradient(#2069a1, #194c74); /* Standard syntax */ } .redteam, @@ -1135,10 +1139,8 @@ a.pages:hover { #e0b501 ); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(#efc100, #e0b501); /* For Opera 11.1 to 12.0 */ - background: -moz-linear-gradient( - #efc100, - #e0b501 - ); /* For Firefox 3.6 to 15 */ + background: -moz-linear-gradient(#efc100, #e0b501); + /* For Firefox 3.6 to 15 */ background: linear-gradient(#efc100, #e0b501); /* Standard syntax */ } .bluebox, -- cgit