aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/layout
diff options
context:
space:
mode:
authorEdmondo Tommasina2010-05-19 14:59:45 +0200
committerPim van den Berg2010-05-29 09:43:12 +0200
commit055871bb1ac4378212acd797f96dc1a62c0631ef (patch)
tree6e1b77cd146423ebcc998e4706cb27c04ed88867 /layout
parenta source (type instance or data source) may contain dots (diff)
downloadapt-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 'layout')
-rw-r--r--layout/style.css8
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
51table.summary tr.even {
52/* background: #eeeeee; */
53}
54
55table.summary tr.odd {
56/* background: #cccccc; */
57}
58
51table.summary td { 59table.summary td {
52 width: 50px; 60 width: 50px;
53 text-align: right; 61 text-align: right;