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

Checkboxes doesn't work with Opera #7

Closed
okendoken opened this issue Aug 23, 2014 · 4 comments
Closed

Checkboxes doesn't work with Opera #7

okendoken opened this issue Aug 23, 2014 · 4 comments
Labels

Comments

@okendoken
Copy link
Member

Seems like opera has some issues with complicated selectors like that:

.checkbox input[type="checkbox"]:checked + label::after {
    font-family: 'FontAwesome';
    content: "\f00c"; 
}

Checked in Opera 12.17, Windows

@okendoken okendoken added the bug label Aug 23, 2014
@hansler
Copy link

hansler commented Sep 11, 2014

Confirmed, I fixed it by changing it (and similar selectors) to:

input[type="checkbox"].styled:checked + label::after {
    font-family: 'FontAwesome';
    content: "\f00c";
}

And then adding class="styled" to my checkbox input field.

@okendoken
Copy link
Member Author

Hi @hansler

Thanks for your fix!
I will merge in the next release

@okendoken
Copy link
Member Author

@hansler could you please make a pull request so your authorship is appreaciated?

haikov pushed a commit that referenced this issue Apr 15, 2015
Now works in Opera 11,12...  Added class="styled" for checkboxes.
@haikov haikov mentioned this issue Apr 15, 2015
haikov pushed a commit that referenced this issue Apr 16, 2015
@haikov
Copy link

haikov commented Apr 16, 2015

Fixed. Now works in Opera.

@haikov haikov closed this as completed Apr 16, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants