From fe6bc35b89eba5dec5202db0ded232c689cb5100 Mon Sep 17 00:00:00 2001 From: Anselm Helbig Date: Fri, 23 May 2008 11:31:00 +0200 Subject: [PATCH] made paths to images in stylesheets relative --- public/stylesheets/cruisecontrol.css | 20 ++++++++++---------- public/stylesheets/documentation.css | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/public/stylesheets/cruisecontrol.css b/public/stylesheets/cruisecontrol.css index 1902e46..c97dbd9 100644 --- a/public/stylesheets/cruisecontrol.css +++ b/public/stylesheets/cruisecontrol.css @@ -26,7 +26,7 @@ a:hover { /* default layout classes */ .header { - background-image: url(/images/top_gradient.png); + background-image: url(../images/top_gradient.png); background-position: top; background-repeat: repeat-x; font-weight: normal; @@ -125,15 +125,15 @@ a.never_built, a.never_built:visited { } .build_never_built, .build_incomplete { - background-image: url(/images/gray_gradient.png); + background-image: url(../images/gray_gradient.png); } .build_success { - background-image: url(/images/gray_gradient.png); + background-image: url(../images/gray_gradient.png); } .build_failed { - background-image: url(/images/red_gradient.png); + background-image: url(../images/red_gradient.png); } .project table.project_pane { @@ -178,13 +178,13 @@ a.never_built, a.never_built:visited { background-color: transparent; } .project .build_button { - background-image:url(/images/button.png); + background-image:url(../images/button.png); cursor: pointer; } .project .build_button_disabled { color: #999; - background-image:url(/images/button_disabled.png); + background-image:url(../images/button_disabled.png); } .project .recent_builds { @@ -207,7 +207,7 @@ a.never_built, a.never_built:visited { font-weight: bold; padding-top: 5px; padding-left: 25px; - background-image: url(/images/spinner_error.gif); + background-image: url(../images/spinner_error.gif); background-position: left; background-repeat: no-repeat; } @@ -218,7 +218,7 @@ a.never_built, a.never_built:visited { font-weight: bold; padding-top: 5px; padding-left: 25px; - background-image: url(/images/spinner.gif); + background-image: url(../images/spinner.gif); background-position: left; background-repeat: no-repeat; } @@ -297,8 +297,8 @@ a.never_built, a.never_built:visited { margin: .4em 0; } -#build_details .section_closed .section_header { background-image: url(/images/arrow_closed.png); } -#build_details .section_open .section_header { background-image: url(/images/arrow_open.png); } +#build_details .section_closed .section_header { background-image: url(../images/arrow_closed.png); } +#build_details .section_open .section_header { background-image: url(../images/arrow_open.png); } #build_details .section_closed .section_content { display: none; } diff --git a/public/stylesheets/documentation.css b/public/stylesheets/documentation.css index b9c8bbc..f3573d3 100644 --- a/public/stylesheets/documentation.css +++ b/public/stylesheets/documentation.css @@ -3,7 +3,7 @@ } #main_image { - background-image: url(/images/header_stock.jpg); + background-image: url(../images/header_stock.jpg); width: 644px; height: 165px; text-align: right; @@ -22,7 +22,7 @@ #letter_shadow { padding-bottom: 18px; margin-bottom: 5px; - background-image: url(/images/float-letter.png); + background-image: url(../images/float-letter.png); background-position: bottom right; background-repeat: no-repeat; width: 450px; -- 1.5.4.3