CSS bug / fix
plugins/editor/design/editor.css line 5
.editor-upload-progress {
position: absolute;
width: 0%;
overflow: hidden;
background: #38ABE3 url(/applications/dashboard/design/images/upload-progress-back.gif) repeat;
margin: -2px 0 0 0;
width: 0;
height: 5px;
border: 1px solid #38ABE3;
opacity: 0;
box-shadow: 0 1px 2px -1px #fff;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
should be
.editor-upload-progress {
position: absolute;
width: 0%;
overflow: hidden;
background: #38ABE3 url("../../../applications/dashboard/design/images/upload-progress-back.gif") repeat;
margin: -2px 0 0 0;
width: 0;
height: 5px;
border: 1px solid #38ABE3;
opacity: 0;
box-shadow: 0 1px 2px -1px #fff;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
Comments
Actually that does not work either. The best thing is to make an images folder and put it into the design folder of the editor and then put the image there and change the url to the image
url(images/upload-progress-back.gif)
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌