Skip to content
New issue

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

Admin UI: Page edit, main menu tree, make clear that items are draggable #42

Closed
luya-bot opened this issue Feb 16, 2018 · 7 comments
Closed
Assignees

Comments

@luya-bot
Copy link

This issue has originally been reported by @dev7ch at luyadev/luya-module-admin#60.
Moved here by @nadar.


bildschirmfoto 2018-02-16 um 13 02 39

It could be helpfull if on hover a small light, bit faded drag cross icon would show up on the right inside the menu item

@nadar
Copy link
Member

nadar commented Feb 16, 2018

@rolandschaub Or the cursor could change to the move pointer after 0.5 or so seconds.

@nadar
Copy link
Member

nadar commented Jul 10, 2018

@luyadev/maintainer discussion for solutions is open :-)

@TheMaaarc
Copy link
Member

I guess to change the move pointer after .5 seconds (+/-) would be a good solution.

@nadar
Copy link
Member

nadar commented Jul 10, 2018

Not possible with css i assume? :-)

@TheMaaarc
Copy link
Member

It is. Will integrate it asap.

.menu__link {
    cursor: pointer;

    &:hover {
        animation: cursor 0s .5s forwards;
    }
}

@keyframes cursor {
    0% {
        cursor: pointer;
    }
    100% {
        cursor: move;
    }
}

@nadar
Copy link
Member

nadar commented Jul 10, 2018

nice! 💃

@nadar
Copy link
Member

nadar commented Oct 16, 2018

@TheMaaarc Maybe you could take care of this?

Should not take to long as far as i can see from your comment :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants