We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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;
The text was updated successfully, but these errors were encountered:
Keeping this open as a reminder to look at how to make this work in the new SS4 front-end layer...
Sorry, something went wrong.
No branches or pull requests
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;
The text was updated successfully, but these errors were encountered: