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

Checkbox not working in list with other elements #39

Closed
John-Henrique opened this issue Nov 24, 2015 · 4 comments
Closed

Checkbox not working in list with other elements #39

John-Henrique opened this issue Nov 24, 2015 · 4 comments

Comments

@John-Henrique
Copy link

When added more HTML elements in the li, checkbox don't work. I think that can be accept others elements to allow better li views

<ul class="list">
    <li class="">
        <label class="checkbox">
            <input type="checkbox" class="">
            This works
            <span></span>
        </label>
    </li>
    <li class="">
        <label class="checkbox">
            <input type="checkbox" class="">
            Don't work | Salt - 
            <bold>$ 9.99</bold>
            <span></span>
        </label>
    </li>
</ul>
@qathom
Copy link
Contributor

qathom commented Nov 25, 2015

You must put your other tags after <span>

<ul class="list">
    <li class="">
        <label class="checkbox">
            <input type="checkbox" class="">
            <span></span>
            This works
        </label>
    </li>
    <li class="">
        <label class="checkbox">
            <input type="checkbox" class="">
            <span></span>
            It should work :) | Salt - 
            <bold>$ 9.99</bold>
        </label>
    </li>
</ul>

Please, reopen this issue if it does not fix your problem.

@qathom qathom closed this as completed Nov 25, 2015
@John-Henrique
Copy link
Author

lol

Man how I can contribute to docs of phonon? I'm from Brazil, I can extend docs and translate too

@qathom
Copy link
Contributor

qathom commented Nov 25, 2015

Thank you for your interest :)
I will inform you when the docs will be opened to the public for contribution.

@John-Henrique
Copy link
Author

Can you create a repo "Phonon Docs"? This is a simple method to allow me contribute with you. Maybe you can create a "organization" here on Github, see https://github.com/organizations/new

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

No branches or pull requests

2 participants