diff options
author | myk%mozilla.org <> | 2004-10-22 06:47:34 +0200 |
---|---|---|
committer | myk%mozilla.org <> | 2004-10-22 06:47:34 +0200 |
commit | c43a96bb27b2d8312f23845088a9e0bfafdc3a5f (patch) | |
tree | 384b9bb673c6be5882cb4d116531400528d39396 /template | |
parent | 229f800225dbbb46d0e203472858e69d18d30500 (diff) | |
download | bugzilla-c43a96bb27b2d8312f23845088a9e0bfafdc3a5f.tar.gz bugzilla-c43a96bb27b2d8312f23845088a9e0bfafdc3a5f.tar.xz |
fix for bug 265499: support custom stylesheets; r=gerv, a=myk
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/header.html.tmpl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index 934da137b..55a998f16 100644 --- a/template/en/default/global/header.html.tmpl +++ b/template/en/default/global/header.html.tmpl @@ -81,6 +81,7 @@ [%+ INCLUDE "global/help-header.html.tmpl" %] <link href="skins/standard/global.css" rel="stylesheet" type="text/css"> + <link href="skins/custom/global.css" rel="stylesheet" type="text/css"> [% IF style %] <style type="text/css"> @@ -91,6 +92,10 @@ [% IF style_urls %] [% FOREACH style_url = style_urls %] <link href="[% style_url FILTER html %]" rel="stylesheet" type="text/css"> + [% IF style_url.match('^skins/standard/') %] + <link href="[% style_url.replace('^skins/standard/', 'skins/custom/') + FILTER html %]" rel="stylesheet" type="text/css"> + [% END %] [% END %] [% END %] |