Make image urls relative
This commit is contained in:
parent
bc4a242898
commit
4f9384cd51
16
converse.css
16
converse.css
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user