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

Hover state never disappears on rustbyexample.com #5861

Closed
jdm opened this issue Apr 26, 2015 · 2 comments
Closed

Hover state never disappears on rustbyexample.com #5861

jdm opened this issue Apr 26, 2015 · 2 comments
Labels
A-content/dom Interacting with the DOM from web content I-wrong An incorrect behaviour is observed.

Comments

@jdm
Copy link
Member

jdm commented Apr 26, 2015

Mouse over any of the non-text links on the pages, and you'll see them switch to the darker hover state but never leave it.

@jdm jdm added A-content/dom Interacting with the DOM from web content I-wrong An incorrect behaviour is observed. labels Apr 26, 2015
@mskrzypkows
Copy link

It seems that CSS hover selector is not properly handled. Test html page (style taken from rustbyexample.com):

<!DOCTYPE html>
<html>
<head>
<style>
    .btn{
        color:#ccc;
    }

    .btn:hover{
        color:#444;
    }
</style>
</head>
<body>
<div class="btn">
    Test text
</div>
</body>
</html>

@jdm
Copy link
Member Author

jdm commented Mar 3, 2017

This works now.

@jdm jdm closed this as completed Mar 3, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-content/dom Interacting with the DOM from web content I-wrong An incorrect behaviour is observed.
Projects
None yet
Development

No branches or pull requests

2 participants