django-admin-sortable2 icon indicating copy to clipboard operation
django-admin-sortable2 copied to clipboard

Change of icon

Open PaLaMuNDeR opened this issue 7 years ago • 0 comments

Hi, I am trying to modify the icon for dragging, but my changes seem not to be affecting the outcome.

image

I have modified the sortable.css:

#result_list div.drag {
	background: url(../icons/arrows.png);
	cursor: pointer;
}
/* styles for tabular inlines */
div.inline-group table.ui-sortable tr.form-row.has_original td.drag {
	cursor: pointer;
	background-image: url(../icons/arrows.png);
}

But I still see the old view

image

Tried to restart the application, the server and so on, but no effect. The file is still loaded as before image

If I try to modify the css straight from the browser, I can see the image, so it is loaded from the server. image

image

Is it me that is missing something?

PaLaMuNDeR avatar Mar 10 '17 17:03 PaLaMuNDeR