diff options
author | ivan <ivan> | 2010-05-20 08:48:51 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-05-20 08:48:51 +0000 |
commit | f22b714f2b7a38c8a930d8248ccb32751db82b5e (patch) | |
tree | 9114a14ebddb41d8010588a0f62f8483df037e0b /httemplate/elements | |
parent | 3b0d09a317c4ca0706e931842b039c20c1b41205 (diff) |
fix table titles for new bg color
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/columnstart.html | 2 | ||||
-rw-r--r-- | httemplate/elements/freeside.css | 5 | ||||
-rw-r--r-- | httemplate/elements/header.html | 2 | ||||
-rw-r--r-- | httemplate/elements/tr-justtitle.html | 2 | ||||
-rw-r--r-- | httemplate/elements/tr-pkg_svc.html | 2 | ||||
-rw-r--r-- | httemplate/elements/tr-title.html | 2 |
6 files changed, 9 insertions, 6 deletions
diff --git a/httemplate/elements/columnstart.html b/httemplate/elements/columnstart.html index 0341b274f..be37d817d 100644 --- a/httemplate/elements/columnstart.html +++ b/httemplate/elements/columnstart.html @@ -1,5 +1,5 @@ <TR> - <TD BGCOLOR="#e8e8e8" COLSPAN=99> + <TD CLASS="background" COLSPAN=99> <TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0> <TR> <TD VALIGN="top"> diff --git a/httemplate/elements/freeside.css b/httemplate/elements/freeside.css index aa32a6dea..3816f9878 100644 --- a/httemplate/elements/freeside.css +++ b/httemplate/elements/freeside.css @@ -48,7 +48,7 @@ input[type="reset"], input[type="submit"], input[type="button"] { border-radius: 4px; -moz-box-shadow: #666666 1px 1px 2px; -webkit-box-shadow: #666666 1px 1px 2px; - box-shadow: #666666 0px 0px 2px; + box-shadow: #666666 1px 1px 2px; filter: progid:DXImageTransform.Microsoft.Shadow(color='#666666', Direction=135, Strength=2); } @@ -147,3 +147,6 @@ a.fstabselected:hover { color: #000000; } +.background { + background-color:#f8f8f8; +} diff --git a/httemplate/elements/header.html b/httemplate/elements/header.html index b76d09d70..90ab0b71c 100644 --- a/httemplate/elements/header.html +++ b/httemplate/elements/header.html @@ -140,7 +140,7 @@ Example: % } - <TD BGCOLOR="#f8f8f8" HEIGHT="100%" VALIGN="top"> <!-- WIDTH="100%"> --> + <TD CLASS="background" HEIGHT="100%" VALIGN="top"> <!-- WIDTH="100%"> --> <FONT SIZE=6> <% $title |h %> diff --git a/httemplate/elements/tr-justtitle.html b/httemplate/elements/tr-justtitle.html index f283307be..e9eda8b18 100644 --- a/httemplate/elements/tr-justtitle.html +++ b/httemplate/elements/tr-justtitle.html @@ -1,5 +1,5 @@ <TR> - <TH BGCOLOR="#f8f8f8" COLSPAN=<% $opt{colspan} || 2 %> ALIGN="left"> + <TH CLASS="background" COLSPAN=<% $opt{colspan} || 2 %> ALIGN="left"> <FONT SIZE="+1"><% $opt{value} %></FONT> </TH> </TR> diff --git a/httemplate/elements/tr-pkg_svc.html b/httemplate/elements/tr-pkg_svc.html index a9561a11a..e66bdf7d7 100644 --- a/httemplate/elements/tr-pkg_svc.html +++ b/httemplate/elements/tr-pkg_svc.html @@ -1,5 +1,5 @@ <TR> - <TD BGCOLOR="#e8e8e8" COLSPAN=99> + <TD CLASS="background" COLSPAN=99> <% itable('', 4, 1) %><TR><TD VALIGN="top"> <% $thead %> diff --git a/httemplate/elements/tr-title.html b/httemplate/elements/tr-title.html index d40d0fdab..af3734196 100644 --- a/httemplate/elements/tr-title.html +++ b/httemplate/elements/tr-title.html @@ -1,5 +1,5 @@ <TR> - <TD BGCOLOR="#f8f8f8" COLSPAN=<% $opt{colspan} || 2 %>> </TD> + <TD CLASS="background" COLSPAN=<% $opt{colspan} || 2 %>> </TD> </TR> <% include('tr-justtitle.html', @_) %> |