Issue Details (XML | Word | Printable)

Key: MDL-6436
Type: Improvement Improvement
Status: Open Open
Priority: Major Major
Assignee: Nick Freear
Reporter: Joseph Rézeau
Votes: 0
Watchers: 0
Operations

Add/Edit UI Mockup to this issue
If you were logged in you would be able to see more operations.
Moodle

Add move cursor to Blocks title div

Created: 03/Sep/06 05:28 AM   Updated: 12/Sep/06 05:03 PM
Component/s: Accessibility
Affects Version/s: 1.7
Fix Version/s: None

Participants: Joseph Rézeau and Nick Freear
Security Level: None
Affected Branches: MOODLE_17_STABLE


 Description  « Hide
In Moodle 1.7 it is possible for a teacher, in edit mode, to drag and drop the blocks. I suggest that it would improve the interface accessibility if, when moving the mouse over a block's title div, the default cursor changed to "move" cursor, to indicate this drag and drop potentiality.
This could be done in file \blocks\moodleblock.class.php, around line 262, by adding this:
$title = '<div class="title" style="cursor: move;">';
It might even be better to add the "move" cursor to the whole of the block, but I don't know how to do it.

Joseph

PS The same result would be achieved by adding the following to the theme's css:
.editing .sideblock .header {
cursor:move;
}
However, it would mean the theme would not be backward-compatible with Moodle versions previous 1.7



 All   Comments   Change History   Version Control      Sort Order: Ascending order - Click to sort in descending order
Nick Freear added a comment - 11/Sep/06 07:51 PM
Hi Joseph,

Are you referring to the AJAX-Topics course format? http://docs.moodle.org/en/Roadmap#Version_1.7_-_Expected_September_2006

I haven't had time to look at this yet, and unfortunately am still busy, but it sounds like a great idea.

Thanks

Nick


Joseph Rézeau added a comment - 12/Sep/06 05:03 PM
Hi Nick > Are you referring to the AJAX-Topics course format?

Yes, of course. Hope you can integrate my idea into the blocks moving feature.

Joseph