css - Can't select checkboxes in Modal dialog -


trying select of checkboxes in modal dialog here: http://ezami.com/ - 1 pops after clicking top right ribbon. none of them seem work. did little research , testing using z-index nothing seem work far, z-index being set modal value , seems working fine.

i have sample ready logic want implement. image/colour can anything.demo link

<html> <head>     <title>checkbox</title>     <style>   input[type=checkbox] {     display:none;   }    input[type=checkbox] + label    {        background: #999;        height: 16px;        width: 16px;        display:inline-block;        padding: 0 0 0 0px;    }     input[type=checkbox]:checked + label     {         background: #0080ff;         height: 16px;         width: 16px;         display:inline-block;         padding: 0 0 0 0px;     }     </style> </head>  <body>  <p>    <input type='checkbox' name='thing' value='valuable' id="thing"/><label for="thing"></label>  </body> </html> 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -