Until this is fixed, you can manually modify an internal Cognos CSS file to fix it.
In \analytics\webcontent\bi\pat\hal\hal.css and \analytics\webcontent\pat\hal\hal.css
Find and change the following:

to:

IMG.clsLVRadio,
IMG.clsLVRadio_checked,
IMG.clsLVRadio_checked_disabled,
IMG.clsLVRadio_disabled,
IMG.clsLVCheckbox,
IMG.clsLVCheckbox_checked,
IMG.clsLVCheckbox_checked_static,
IMG.clsLVCheckbox_static
{
height: 16px;
width: 16px;
/* This prevents the radio and checkbox images from shrinking when there isn't enough room */
min-width: 16px;
vertical-align: middle;
}
to
IMG.clsLVRadio,
IMG.clsLVRadio_checked,
IMG.clsLVRadio_checked_disabled,
IMG.clsLVRadio_disabled,
IMG.clsLVCheckbox,
IMG.clsLVCheckbox_checked,
IMG.clsLVCheckbox_checked_static,
IMG.clsLVCheckbox_static
{
height: 18px;
width: 18px;
/* This prevents the radio and checkbox images from shrinking when there isn't enough room */
min-width: 16px;
vertical-align: middle;
}
For some reason under 18px the checkboxes don't show up consistently. I believe this might be a bug introduced in the latest Chromium release, but this should fix it in the meantime.
------------------------------
Paul Mendelson
------------------------------