diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-03-23 22:45:36 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-03-23 22:45:36 +0000 |
commit | 673fa2c31c2df6d1ffdf77277a904d4bbb2d96ab (patch) | |
tree | 940449627da6695c8eaf2b0bba6ed0c964dae659 | |
parent | 2e9afb67e84ae83f0714e7f8852e24604a1cd402 (diff) | |
download | brdo-673fa2c31c2df6d1ffdf77277a904d4bbb2d96ab.tar.gz brdo-673fa2c31c2df6d1ffdf77277a904d4bbb2d96ab.tar.bz2 |
Moved the style sheet back IN the theme. It seems Netscape resolves url's inside stylesheets relative to the page it is in, while IE/Opera resolve them relative to the path of the stylesheet.
-rw-r--r-- | themes/goofy/goofy.theme | 34 | ||||
-rw-r--r-- | themes/goofy/style.css | 28 |
2 files changed, 33 insertions, 29 deletions
diff --git a/themes/goofy/goofy.theme b/themes/goofy/goofy.theme index 74769b1f8..01ac5d5cd 100644 --- a/themes/goofy/goofy.theme +++ b/themes/goofy/goofy.theme @@ -20,7 +20,39 @@ <html> <head> <title><?php echo $site_name; ?></title> - <link rel="stylesheet" type="text/css" href="themes/goofy/style.css" title="Goofy Stylesheet"> + <style type="text/css"> + <!-- + body { background-color: #FFFFFF; font-size: 10pt; font-family: tahoma,helvetica,arial; } + p,ul,li,div,form,em,blockquote,quote { font-size: 10pt; font-family: tahoma,helvetica,arial; } + td { font-family: tahoma,arial,helvetica; font-size: 10pt; } + td.oru { background: url("themes/goofy/images/or-u.png"); width: 100%; } + td.ord { background: url("themes/goofy/images/or-d.png"); width: 100%; } + td.orl { background: url("themes/goofy/images/or-l.png"); } + td.orr { background: url("themes/goofy/images/or-r.png"); } + td.orcnt { background: #FBC636; width: 100%; font-family: tahoma,arial,helvetica; font-size: 10pt; font-weight: bold; text-align: center; } + td.gru { background: url("themes/goofy/images/gr-u.png"); width: 100%; } + td.grd { background: url("themes/goofy/images/gr-d.png"); width: 100%; } + td.grl { background: url("themes/goofy/images/gr-l.png"); } + td.grr { background: url("themes/goofy/images/gr-r.png"); } + td.grcnt { background: #C6C6C6; width: 100%; font-family: tahoma,arial,helvetica; font-size: 10pt; } + td.lgu { background: url("themes/goofy/images/lg-u.png"); width: 100%; } + td.lgd { background: url("themes/goofy/images/lg-d.png"); width: 100%; } + td.lgl { background: url("themes/goofy/images/lg-l.png"); } + td.lgr { background: url("themes/goofy/images/lg-r.png"); } + td.lgcnt { background: #E4E4E4; width: 100%; font-family: tahoma,arial,helvetica; font-size: 10pt; white-space: normal; } + + small { font-size: 8pt; } + big { font-size: 12pt; } + + hr { color: #404040; height: 1px; } + + a { color: #804000; text-decoration: none; } + a:link { color: #804000; } + a:visited { color: #804000; } + a:active { color: #804000; } + + --> + </style> </head> <body> <table border="0" cellspacing="3" cellpadding="0" width="100%"> diff --git a/themes/goofy/style.css b/themes/goofy/style.css deleted file mode 100644 index 553811a18..000000000 --- a/themes/goofy/style.css +++ /dev/null @@ -1,28 +0,0 @@ - body { background-color: #FFFFFF; font-size: 10pt; font-family: tahoma,helvetica,arial; } - p,ul,li,div,form,em,blockquote,quote { font-size: 10pt; font-family: tahoma,helvetica,arial; } - td { font-family: tahoma,arial,helvetica; font-size: 10pt; } - td.oru { background: url("themes/goofy/images/or-u.png"); width: 100%; } - td.ord { background: url("themes/goofy/images/or-d.png"); width: 100%; } - td.orl { background: url("themes/goofy/images/or-l.png"); } - td.orr { background: url("themes/goofy/images/or-r.png"); } - td.orcnt { background: #FBC636; width: 100%; font-family: tahoma,arial,helvetica; font-size: 10pt; font-weight: bold; text-align: center; } - td.gru { background: url("themes/goofy/images/gr-u.png"); width: 100%; } - td.grd { background: url("themes/goofy/images/gr-d.png"); width: 100%; } - td.grl { background: url("themes/goofy/images/gr-l.png"); } - td.grr { background: url("themes/goofy/images/gr-r.png"); } - td.grcnt { background: #C6C6C6; width: 100%; font-family: tahoma,arial,helvetica; font-size: 10pt; } - td.lgu { background: url("themes/goofy/images/lg-u.png"); width: 100%; } - td.lgd { background: url("themes/goofy/images/lg-d.png"); width: 100%; } - td.lgl { background: url("themes/goofy/images/lg-l.png"); } - td.lgr { background: url("themes/goofy/images/lg-r.png"); } - td.lgcnt { background: #E4E4E4; width: 100%; font-family: tahoma,arial,helvetica; font-size: 10pt; white-space: normal; } - - small { font-size: 8pt; } - big { font-size: 12pt; } - - hr { color: #404040; height: 1px; } - - a { color: #804000; text-decoration: none; } - a:link { color: #804000; } - a:visited { color: #804000; } - a:active { color: #804000; } |