material-design-lite icon indicating copy to clipboard operation
material-design-lite copied to clipboard

Checkbox bug with latest version of Chrome 69.0.3497.81

Open haru07 opened this issue 7 years ago • 6 comments
trafficstars

When using the latest version of Chrome 69.0.3497.81, there is some kind of white border in the checkbox. This does not occur for other browsers or older version of Chrome. You can see the issue when viewing https://getmdl.io/components/index.html#toggles-section in Chrome 69.0.3497.81

image

haru07 avatar Sep 05 '18 20:09 haru07

Maybe just wait for a Chrome update. Chrome 69 has some bigger issues (https://bugs.chromium.org/p/chromium/issues/detail?id=880513).

Update: Google pushed a update to patch for the above mentioned bug, but the checkbox is still broken.

rlSimonLi avatar Sep 09 '18 10:09 rlSimonLi

Glad I saw this -- thought I was going mad suddenly seeing these gaps in the checkbox, thinking that it was something I introduced in one of my CSS overrides.

thdoan avatar Sep 18 '18 06:09 thdoan

Here's a quick patch for the time being:

.mdl-checkbox__tick-outline {
  width: 104%;
}

thdoan avatar Sep 28 '18 00:09 thdoan

Issue still present in Chrome 71.0.3578.98

I found disabling the mask fixes it also:

.mdl-checkbox__tick-outline{
	-webkit-mask:none;
	mask:none;
}

chriswheeler avatar Feb 07 '19 09:02 chriswheeler

Appears to be fixed in Chrome 72.0.3626.96

chriswheeler avatar Feb 07 '19 10:02 chriswheeler

I am experiencing pretty much the same problem on the current latest Chrome (105.0.5195.102). The only difference is that now only the left edge of the checkbox has a transparent border. None of the above workarounds seem to do anything.

pip25 avatar Sep 08 '22 14:09 pip25