not sure why this is, as they work in most other places... maybe it has to do with the number of checkboxes, or module filter:

CommentFileSizeAuthor
shiny-nochecks.jpg89.59 KBtmsimont
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

criz’s picture

Version: 7.x-1.1 » 7.x-1.x-dev

Yes, this theme has too much browser specific hacks imho. Also some issues with ie10 and below.
Anyway, this is an ugly hack that worked for me (fast fix, no solution):

/* Form Fix for IE10 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
  form table {
    input.form-checkbox,
    input.form-radio {
      border: 0;
      opacity: 1;
      height: 20px;
      width: 20px;
      background: transparent url("../images/toggles.png") no-repeat 0 0;
    }
  }
}

Btw, this issue is also present on order overview page in commerce kickstart.

dudenhofer’s picture

@criz is right. Shiny uses a CSS radio/checkbox replacement, and some of the bugs were handled quickly when they were found. Here are some selectors that we can set opacity to 1 and fix this issue. Might be a better approach than adding to the browser hacks (maybe even eliminate some)

input.vbo-table-select-all,
input.vbo-select,
td.checkbox input.form-checkbox {
  border: 0;
  opacity: 1;
  height: 20px;
  width: 20px;
  background: transparent url("../images/toggles.png") no-repeat 0 0;
}
dudenhofer’s picture

Status: Active » Fixed

Committed this fix here so we could have something for the next release.
http://drupalcode.org/project/shiny.git/blobdiff/4e6773c0b5831dcdc2518a3...

The testing that I've done so far shows this will fix it, but re-open this issue if you find more problems.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.