Local application (Pc) opening in ipad / iphone browser does not show checkbox

3

I have an application running normally with wamp on the computer, which uses html jquery css and php.

However, when opening the default IOS (safari) browser using ipad or iphone over the local network, the system does not display page checkboxes.

In these cases is there any kind of simple solution so that the checkboxes can be displayed?

input[type=radio].css-checkbox {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

input[type=radio].css-checkbox + label.css-label {
  padding-left: 20px;
  height: 15px;
  display: inline-block;
  line-height: 15px;
  background-repeat: no-repeat;
  background-position: 0 0;
  font-size: 15px;
  vertical-align: middle;
  cursor: pointer;
}

input[type=radio].css-checkbox:checked + label.css-label {
  background-position: 0 -15px;
}

label.css-label {
  background-image: url(css/csscheckbox_e1eb6a6ff7155c99339c9d96211545f6.png);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
<input type="radio" name="mudarItens" id="moveObjetos" class="css-checkbox">
    
asked by anonymous 12.10.2015 / 18:29

0 answers