# HG changeset patch # User Sylvain Thénault # Date 1278054118 -7200 # Node ID 89ad81d6972d2c631e35073beec34bbb55968655 # Parent 5cb23d24df2626d1c33715a3a7abdb18c1416a2c [css] make body bg color configurable diff -r 5cb23d24df26 -r 89ad81d6972d web/data/cubicweb.css --- a/web/data/cubicweb.css Fri Jul 02 09:01:22 2010 +0200 +++ b/web/data/cubicweb.css Fri Jul 02 09:01:58 2010 +0200 @@ -51,7 +51,7 @@ h3 { padding: %(h3Padding)s; } html, body { - background: #e2e2e2; + background: %(pageBgColor)s; } a, a:active, a:visited, a:link { diff -r 5cb23d24df26 -r 89ad81d6972d web/data/uiprops.py --- a/web/data/uiprops.py Fri Jul 02 09:01:22 2010 +0200 +++ b/web/data/uiprops.py Fri Jul 02 09:01:58 2010 +0200 @@ -96,7 +96,9 @@ aColor = '#e6820e' aActiveColor = aVisitedColor = aLinkColor = aColor + # page frame +pageBgColor = '#e2e2e2' pageContentBorderColor = '#ccc' pageContentBgColor = '#fff' pageContentPadding = '1em'