When using the Three.js WebGL renderer, I noticed that radio buttons have white backgrounds, but this issue only seems to occur in Chrome.
If you want to see the problem for yourself, check out this fiddle: http://jsfiddle.net/5pL8v/328/
Does anyone know of a CSS fix for this problem?
Here's an example code snippet:
<style>
body {
background: black;
}
</style>
<script>
renderer = new THREE.WebGLRenderer();
$(document).ready(function() {
$("body").append(renderer.domElement);
});
</script>
<input type="radio">