Fixed application style sheet image paths

This commit is contained in:
2013-01-20 13:28:43 -05:00
parent bd0a3786fd
commit 44402b2e7f

View File

@@ -6,7 +6,7 @@
body { body {
font-family: Verdana, Helvetica, Arial; font-family: Verdana, Helvetica, Arial;
font-size: 12px; font-size: 12px;
background:url('/images/white_stripe.png'); background:url('/assets/white_stripe.png');
} }
a img { a img {
@@ -44,7 +44,7 @@ table a { font-weight:bold; }
#header #menu_wrapper { #header #menu_wrapper {
width:100%; width:100%;
background:url('/images/black_stripe.png'); background:url('/assets/black_stripe.png');
} }
#header #menu_wrapper ul { #header #menu_wrapper ul {
@@ -71,7 +71,7 @@ table a { font-weight:bold; }
} }
.module_header { .module_header {
background:url('/images/black_stripe.png') !important; background:url('/assets/black_stripe.png') !important;
} }
#info_box { #info_box {
@@ -104,7 +104,7 @@ table a { font-weight:bold; }
margin:10px 0; margin:10px 0;
background-color: #cee6f2; background-color: #cee6f2;
border: solid 1px #058dc7; border: solid 1px #058dc7;
background-image:url('/images/icon_notification_information.png'); background-image:url('/assets/icon_notification_information.png');
} }
#flash_notice, #flash_error, #flash_alert { #flash_notice, #flash_error, #flash_alert {
@@ -123,13 +123,13 @@ table a { font-weight:bold; }
#flash_notice { #flash_notice {
background-color:#d9e6c3; background-color:#d9e6c3;
background-image:url('/images/icon_notification_success.png'); background-image:url('/assets/icon_notification_success.png');
border-color:#77ab13; border-color:#77ab13;
} }
#flash_error, #flash_alert { #flash_error, #flash_alert {
background-color:#f2d4ce; background-color:#f2d4ce;
background-image:url('/images/icon_notification_error.png'); background-image:url('/assets/icon_notification_error.png');
border-color:#ae432e; border-color:#ae432e;
} }