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