diff options
author | Edmondo Tommasina | 2010-05-19 14:59:45 +0200 |
---|---|---|
committer | Pim van den Berg | 2010-05-29 09:43:12 +0200 |
commit | 055871bb1ac4378212acd797f96dc1a62c0631ef (patch) | |
tree | 6e1b77cd146423ebcc998e4706cb27c04ed88867 /layout | |
parent | a source (type instance or data source) may contain dots (diff) | |
download | apt-panopticon_cgp-055871bb1ac4378212acd797f96dc1a62c0631ef.zip apt-panopticon_cgp-055871bb1ac4378212acd797f96dc1a62c0631ef.tar.gz apt-panopticon_cgp-055871bb1ac4378212acd797f96dc1a62c0631ef.tar.bz2 apt-panopticon_cgp-055871bb1ac4378212acd797f96dc1a62c0631ef.tar.xz |
Define alternating odd/even css classes for rows in main summary
To select different background colors for the rows in the main
summary page, just uncomment the tr.odd/tr.even background
definition in layout/style.css and set the color.
Diffstat (limited to '')
-rw-r--r-- | layout/style.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/layout/style.css b/layout/style.css index 83664a4..e478203 100644 --- a/layout/style.css +++ b/layout/style.css | |||
@@ -48,6 +48,14 @@ table.summary th { | |||
48 | text-align: left; | 48 | text-align: left; |
49 | } | 49 | } |
50 | 50 | ||
51 | table.summary tr.even { | ||
52 | /* background: #eeeeee; */ | ||
53 | } | ||
54 | |||
55 | table.summary tr.odd { | ||
56 | /* background: #cccccc; */ | ||
57 | } | ||
58 | |||
51 | table.summary td { | 59 | table.summary td { |
52 | width: 50px; | 60 | width: 50px; |
53 | text-align: right; | 61 | text-align: right; |