jberger / Galileo

A Simple Modern Perl CMS
http://galileo-cms.herokuapp.com
166 stars 38 forks source link

Setup Main Navigation Menu - unclear what to do #36

Closed szabgab closed 9 years ago

szabgab commented 10 years ago

It took me quite some time to understand I can drag-and-drop the icons representing the pages. Maybe add some explanation? (Later, maybe once the current user has tried to move a page this explanation can be hidden.)

Or the cursor should change to be a hand that can grab something when I hover over an item.

jberger commented 10 years ago

Note to self: investigate JavaScript ways to change cursor style

OpossumPetya commented 9 years ago

Currently these page labels are styled by Bootstrap's CSS in lib / Galileo / files / public / assets / bootstrap / css / bootstrap.min.css. I'm pretty sure if you add following piece of CSS to your lib / Galileo / files / public / themes / standard.css it would do the trick. But I'm not sure if that's the correct way to style a Bootstrap theme (never worked with it).

.label-info {
    cursor: grab;
}
OpossumPetya commented 9 years ago

Actually, grab is not supported by Chrome, and maybe not even the best option. move maybe a better option, and it is supported by all browsers: http://quirksmode.org/css/user-interface/cursor.html

jberger commented 9 years ago

Closed via #46