Commit ca53f6f84865e1d59958bca6f2ac525217391ef8

Authored by Larissa Reis
1 parent 93103d85

Fix image path in plugins' css

  Change the image path in plugins' css to use absolute path, so
  it won't break when the stylesheet is cached.

(ActionItem2340)
plugins/bsc/public/style.css
1 1 @import url(jquery.ui.spinner/ui.spinner.css);
2 2  
3   -.controller-profile_editor a.control-panel-bsc-enterprises {background-image: url(images/manage-bsc-enterprises.png)}
4   -.controller-profile_editor .msie6 a.control-panel-bsc-enterprises {background-image: url(images/manage-bsc-enterprises.gif)}
  3 +.controller-profile_editor a.control-panel-bsc-enterprises {background-image: url(/plugins/bsc/images/manage-bsc-enterprises.png)}
  4 +.controller-profile_editor .msie6 a.control-panel-bsc-enterprises {background-image: url(/plugins/bsc/images/manage-bsc-enterprises.gif)}
5 5  
6   -.controller-profile_editor a.control-panel-transfer-enterprise-ownership {background-image: url(images/transfer-ownership.png)}
  6 +.controller-profile_editor a.control-panel-transfer-enterprise-ownership {background-image: url(/plugins/bsc/images/transfer-ownership.png)}
7 7  
8 8 .ui-spinner-up{
9 9 height: 6.5px !important;
... ... @@ -23,7 +23,7 @@
23 23 }
24 24  
25 25 .icon-menu-bsc {
26   - background-image: url(images/manage-bsc-enterprises-icon.png);
  26 + background-image: url(/plugins/bsc/images/manage-bsc-enterprises-icon.png);
27 27 }
28 28  
29 29 #content .token-input-list {
... ...
plugins/stoa/public/style.css
... ... @@ -10,8 +10,8 @@
10 10 cursor: default;
11 11 }
12 12  
13   -.controller-profile_editor a.control-panel-invite-friends {background-image: url(../../plugins/stoa/images/control-panel/invite-friends.png)}
14   -.controller-profile_editor .msie6 a.control-panel-invite-friends {background-image: url(../../plugins/stoa/images/control-panel/invite-friends.gif)}
  13 +.controller-profile_editor a.control-panel-invite-friends {background-image: url(/plugins/stoa/images/control-panel/invite-friends.png)}
  14 +.controller-profile_editor .msie6 a.control-panel-invite-friends {background-image: url(/plugins/stoa/images/control-panel/invite-friends.gif)}
15 15  
16 16 #signup-form small#usp-id-balloon {
17 17 display: none;
... ...