upload.css 829B

12345678910111213141516171819202122232425
  1. /* Upload form styles
  2. * ------------------------------------------------------------------------- */
  3. /* Set fallback background for files_list item */
  4. tbody.files > tr {
  5. background-color: #fff;
  6. }
  7. /* Add grab cursor when hovering over sortable element */
  8. tbody.files.sortable > tr.template-download:hover {
  9. cursor: url('../cur/openhand.cur'), move;
  10. cursor: url('../cur/openhand.cur') 4 4, move;
  11. cursor: -webkit-grab;
  12. cursor: -moz-grab;
  13. cursor: move\9; /* fallback cursor for IE */
  14. }
  15. /* Add grabbing cursor when sorting */
  16. tbody.files.sortable > tr.template-download.ui-sortable-helper:hover {
  17. cursor: url('../cur/closedhand.cur'), move;
  18. cursor: url('../cur/closedhand.cur') 4 4, move;
  19. cursor: -webkit-grabbing;
  20. cursor: -moz-grabbing;
  21. cursor: move\9; /* fallback cursor for IE */
  22. }