Code: Select all
.file-status.file-working {
background: url('../../../assets/plupload/img/throbber.gif');
}
.file-status.file-uploaded {
background: url('../../../assets/plupload/img/done.gif');
}
.file-status.file-error {
background: url('../../../assets/plupload/img/error.gif');
}
Code: Select all
.file-status.file-working {
background: url('./images/throbber.gif');
}
.file-status.file-uploaded {
background: url('./images/done.gif');
}
.file-status.file-error {
background: url('./images/error.gif');
}
I thought we were moving away from editing core files?PayBas wrote:You could just upload a replacement icon to your style/theme/images and edit plupload.css?:
plupload.css isn't a core file. It's in the styles dir .RMcGirr83 wrote:I thought we were moving away from editing core files?PayBas wrote:You could just upload a replacement icon to your style/theme/images and edit plupload.css?:
Yeah but you don't need to touch them. You can just use your own images, and edit the .css.RMcGirr83 wrote:Uhmm, no it's in the assets directory. Not within prosilver that I can see.