[Rt-commit] rt branch, squish-refactor, updated. rt-3.9.7-900-g46976ee
Thomas Sibley
trs at bestpractical.com
Mon Dec 27 12:41:16 EST 2010
The branch, squish-refactor has been updated
via 46976ee7551191c9888e7e3d99860c11156d680c (commit)
from 7628a51c8977a89fda5860a59bff74fd08f94e80 (commit)
Summary of changes:
share/html/NoAuth/css/aileron/msie-pie.css | 2 +-
share/html/NoAuth/css/aileron/msie6.css | 2 +-
share/html/NoAuth/css/aileron/nav.css | 2 +-
share/html/NoAuth/css/base/superfish.css | 4 ++--
share/html/NoAuth/css/base/tablesorter.css | 6 +++---
share/html/NoAuth/css/web2/msie-pie.css | 2 +-
share/html/NoAuth/css/web2/msie6.css | 4 ++--
share/html/NoAuth/css/web2/nav.css | 4 ++--
8 files changed, 13 insertions(+), 13 deletions(-)
- Log -----------------------------------------------------------------
commit 46976ee7551191c9888e7e3d99860c11156d680c
Author: Thomas Sibley <trs at bestpractical.com>
Date: Mon Dec 27 12:40:23 2010 -0500
CSS resource URLs need to be properly anchored to the root
diff --git a/share/html/NoAuth/css/aileron/msie-pie.css b/share/html/NoAuth/css/aileron/msie-pie.css
index 567761c..20036a6 100644
--- a/share/html/NoAuth/css/aileron/msie-pie.css
+++ b/share/html/NoAuth/css/aileron/msie-pie.css
@@ -8,5 +8,5 @@ div#ticket-history div.downloadattachment,
.titlebox .titlebox-title .left,
div#footer,
div#body {
- behavior: url(/NoAuth/css/images/PIE.htc);
+ behavior: url(<%RT->Config->Get('WebPath')%>/NoAuth/css/images/PIE.htc);
}
diff --git a/share/html/NoAuth/css/aileron/msie6.css b/share/html/NoAuth/css/aileron/msie6.css
index 55888ef..82fbd33 100644
--- a/share/html/NoAuth/css/aileron/msie6.css
+++ b/share/html/NoAuth/css/aileron/msie6.css
@@ -79,7 +79,7 @@ div#body {
.sf-sub-indicator {
- background: url('../images/arrows-ffffff.gif') no-repeat -10px -100px;
+ background: url(<%RT->Config->Get('WebPath')%>/images/arrows-ffffff.gif) no-repeat -10px -100px;
}
#page-navigation ul {
diff --git a/share/html/NoAuth/css/aileron/nav.css b/share/html/NoAuth/css/aileron/nav.css
index 23ef731..70f23b3 100644
--- a/share/html/NoAuth/css/aileron/nav.css
+++ b/share/html/NoAuth/css/aileron/nav.css
@@ -58,7 +58,7 @@
}
.sf-sub-indicator {
- background-image: url(../images/arrows-grey.png);
+ background-image: url(<%RT->Config->Get('WebPath')%>/images/arrows-grey.png);
}
.sf-menu li li .sf-sub-indicator {
diff --git a/share/html/NoAuth/css/base/superfish.css b/share/html/NoAuth/css/base/superfish.css
index d2ae2f0..108cf98 100644
--- a/share/html/NoAuth/css/base/superfish.css
+++ b/share/html/NoAuth/css/base/superfish.css
@@ -95,7 +95,7 @@ ul.sf-menu li li li.sfHover ul {
height: 10px;
text-indent: -999em;
overflow: hidden;
- background: url('../images/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
+ background: url(<%RT->Config->Get('WebPath')%>/images/arrows-ffffff.png) no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator { /* give all except IE6 the correct values */
top: .8em;
@@ -124,7 +124,7 @@ li.sfHover > a > .sf-sub-indicator {
/*** shadows for all but IE6 ***/
.sf-shadow ul {
- background: url('../images/shadow.png') no-repeat bottom right;
+ background: url(<%RT->Config->Get('WebPath')%>/images/shadow.png) no-repeat bottom right;
padding: 0 8px 9px 0;
-moz-border-radius-bottomleft: 17px;
-moz-border-radius-topright: 17px;
diff --git a/share/html/NoAuth/css/base/tablesorter.css b/share/html/NoAuth/css/base/tablesorter.css
index 19be6ae..943a0e5 100644
--- a/share/html/NoAuth/css/base/tablesorter.css
+++ b/share/html/NoAuth/css/base/tablesorter.css
@@ -13,7 +13,7 @@ table.tablesorter thead tr th, table.tablesorter tfoot tr th {
padding: 4px;
}
table.tablesorter thead tr .header {
- background-image: url(/NoAuth/images/tablesorter/bg.gif);
+ background-image: url(<%RT->Config->Get('WebPath')%>/NoAuth/images/tablesorter/bg.gif);
background-repeat: no-repeat;
background-position: center right;
cursor: pointer;
@@ -29,10 +29,10 @@ table.tablesorter tbody tr.odd td {
background-color:#F0F0F6;
}
table.tablesorter thead tr .headerSortUp {
- background-image: url(/NoAuth/images/tablesorter/asc.gif);
+ background-image: url(<%RT->Config->Get('WebPath')%>/NoAuth/images/tablesorter/asc.gif);
}
table.tablesorter thead tr .headerSortDown {
- background-image: url(/NoAuth/images/tablesorter/desc.gif);
+ background-image: url(<%RT->Config->Get('WebPath')%>/NoAuth/images/tablesorter/desc.gif);
}
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
background-color: #8dbdd8;
diff --git a/share/html/NoAuth/css/web2/msie-pie.css b/share/html/NoAuth/css/web2/msie-pie.css
index 69d203d..f397384 100644
--- a/share/html/NoAuth/css/web2/msie-pie.css
+++ b/share/html/NoAuth/css/web2/msie-pie.css
@@ -9,5 +9,5 @@ div#footer,
#main-navigation,
#page-navigation,
div#body {
- behavior: url(/NoAuth/css/images/PIE.htc);
+ behavior: url(<%RT->Config->Get('WebPath')%>/NoAuth/css/images/PIE.htc);
}
diff --git a/share/html/NoAuth/css/web2/msie6.css b/share/html/NoAuth/css/web2/msie6.css
index afb14f1..41deddc 100644
--- a/share/html/NoAuth/css/web2/msie6.css
+++ b/share/html/NoAuth/css/web2/msie6.css
@@ -87,10 +87,10 @@ div#page-navigation {
}
#prefs-menu .sf-sub-indicator {
- background-image: url(../images/arrows-grey.gif);
+ background-image: url(<%RT->Config->Get('WebPath')%>/images/arrows-grey.gif);
}
#app-nav .sf-sub-indicator {
- background-image: url(../images/arrows-grey.gif);
+ background-image: url(<%RT->Config->Get('WebPath')%>/images/arrows-grey.gif);
}
diff --git a/share/html/NoAuth/css/web2/nav.css b/share/html/NoAuth/css/web2/nav.css
index a85d33d..d1cfcc7 100644
--- a/share/html/NoAuth/css/web2/nav.css
+++ b/share/html/NoAuth/css/web2/nav.css
@@ -65,7 +65,7 @@
}
#app-nav .sf-sub-indicator {
- background-image: url(../images/arrows-grey.png);
+ background-image: url(<%RT->Config->Get('WebPath')%>/images/arrows-grey.png);
margin-top: -3px;
}
@@ -99,7 +99,7 @@
}
#prefs-menu .sf-sub-indicator {
- background-image: url(../images/arrows-grey.png);
+ background-image: url(<%RT->Config->Get('WebPath')%>/images/arrows-grey.png);
}
#main-navigation ul li {
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list