From 389c3676a575f2aade69c32e1ba9d444cc04b136 Mon Sep 17 00:00:00 2001 From: ejc12 Date: Mon, 18 Jul 2011 21:05:21 +0000 Subject: [PATCH] Reversing table row backgrounds for readability. RY mentioned it and it was bothering me too. --- doc/css/doc.css | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/doc/css/doc.css b/doc/css/doc.css index 75b9ee01..bb575f4c 100644 --- a/doc/css/doc.css +++ b/doc/css/doc.css @@ -151,13 +151,17 @@ td { border-width: 1px; padding: 4px 4px 4px 6px; border-style: inset; - border-color: white; + border-color: #EEEEEE; -moz-border-radius: 0px 0px 0px 0px; } -.odd_row { +tr { background: #EEEEEE; - border-bottom: 1px solid grey; +} + +tr.odd_row { + background: #FFFFFF; + border-bottom: 1px solid #999999; font-weight: bold; }