Commit 4f9384cd authored by JC Brand's avatar JC Brand

Make image urls relative

parent bc4a2428
......@@ -330,24 +330,24 @@ form.search-xmpp-contact input {
#xmppchat-roster dd.current-xmpp-contact,
#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.unavailable:hover,
#xmppchat-roster dd.current-xmpp-contact.offline,
#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: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: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{
......@@ -611,18 +611,18 @@ input.custom-xmpp-status {
}
.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 {
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 {
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 {
background: url(/++resource++collective.xmpp.chat.images/user_away_panel.png) no-repeat left;
background: url(images/user_away_panel.png) no-repeat left;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment