colymba / GridFieldBulkEditingTools

SilverStripe GridField Components set for bulk upload and bulk record edit, unlink & delete :package::boom:
BSD 3-Clause "New" or "Revised" License
88 stars 81 forks source link

Action button loading icon not work #105

Open hutlim opened 9 years ago

hutlim commented 9 years ago

Incorrect path for the background icon on GridFieldBulkManager.css

Wrong .cms table.ss-gridfield-table tr.bulkManagerOptions .doBulkActionButton .loading .ui-icon { background: transparent url(../../framework/images/network-save.gif) no-repeat 0 0; }

Correct .cms table.ss-gridfield-table tr.bulkManagerOptions .doBulkActionButton.loading .ui-icon { background: transparent url("../../../framework/images/network-save.gif") no-repeat 0 0; }

Wrong .cms table.ss-gridfield-table tbody td a.tempDisabledEditLink { background: url("../../framework/admin/images/btn-icon/document--pencil.png") no-repeat 2px 0px;

Correct .cms table.ss-gridfield-table tbody td a.tempDisabledEditLink { background: url("../../../framework/admin/images/btn-icon/document--pencil.png") no-repeat 2px 0px;

colymba commented 6 years ago

Keeping this open as a reminder to look at how to make this work in the new SS4 front-end layer...