Make image urls relative

This commit is contained in:
JC Brand 2012-11-20 11:24:17 +02:00
parent bc4a242898
commit 4f9384cd51

View File

@ -330,24 +330,24 @@ form.search-xmpp-contact input {
#xmppchat-roster dd.current-xmpp-contact, #xmppchat-roster dd.current-xmpp-contact,
#xmppchat-roster dd.current-xmpp-contact:hover { #xmppchat-roster dd.current-xmpp-contact:hover {
background: url(/++resource++collective.xmpp.chat.images/user_online_panel.png) no-repeat 5px 2px; background: url(images/user_online_panel.png) no-repeat 5px 2px;
} }
#xmppchat-roster dd.current-xmpp-contact.offline:hover, #xmppchat-roster dd.current-xmpp-contact.offline:hover,
#xmppchat-roster dd.current-xmpp-contact.unavailable:hover, #xmppchat-roster dd.current-xmpp-contact.unavailable:hover,
#xmppchat-roster dd.current-xmpp-contact.offline, #xmppchat-roster dd.current-xmpp-contact.offline,
#xmppchat-roster dd.current-xmpp-contact.unavailable { #xmppchat-roster dd.current-xmpp-contact.unavailable {
background: url(/++resource++collective.xmpp.chat.images/user_offline_panel.png) no-repeat 5px 2px; background: url(images/user_offline_panel.png) no-repeat 5px 2px;
} }
#xmppchat-roster dd.current-xmpp-contact.busy, #xmppchat-roster dd.current-xmpp-contact.busy,
#xmppchat-roster dd.current-xmpp-contact.busy:hover { #xmppchat-roster dd.current-xmpp-contact.busy:hover {
background: url(/++resource++collective.xmpp.chat.images/user_busy_panel.png) no-repeat 5px 2px; background: url(images/user_busy_panel.png) no-repeat 5px 2px;
} }
#xmppchat-roster dd.current-xmpp-contact.away, #xmppchat-roster dd.current-xmpp-contact.away,
#xmppchat-roster dd.current-xmpp-contact.away:hover { #xmppchat-roster dd.current-xmpp-contact.away:hover {
background: url(/++resource++collective.xmpp.chat.images/user_away_panel.png) no-repeat 5px 2px; background: url(images/user_away_panel.png) no-repeat 5px 2px;
} }
#xmppchat-roster dd.requesting-xmpp-contact button{ #xmppchat-roster dd.requesting-xmpp-contact button{
@ -611,18 +611,18 @@ input.custom-xmpp-status {
} }
.dropdown a.online { .dropdown a.online {
background: url(/++resource++collective.xmpp.chat.images/user_online_panel.png) no-repeat left; background: url(images/user_online_panel.png) no-repeat left;
} }
.dropdown a.offline { .dropdown a.offline {
background: url(/++resource++collective.xmpp.chat.images/user_offline_panel.png) no-repeat left; background: url(images/user_offline_panel.png) no-repeat left;
} }
.dropdown a.busy { .dropdown a.busy {
background: url(/++resource++collective.xmpp.chat.images/user_busy_panel.png) no-repeat left; background: url(images/user_busy_panel.png) no-repeat left;
} }
.dropdown a.away { .dropdown a.away {
background: url(/++resource++collective.xmpp.chat.images/user_away_panel.png) no-repeat left; background: url(images/user_away_panel.png) no-repeat left;
} }