HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

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;
}

Tagged:

Comments

Sign In or Register to comment.