[3.0 rc1] Google Maps Style Issues caused by * box-sizing
Created by: sixfootsixdesigns
In bootstrap 3 there is a base style in scaffolding.less for
* {
.box-sizing(border-box);
}
On a google map this causes the info windows to draw the arrow to the marker slightly below the main box. http://grab.by/oYLU
Can you be more specific and just assign the box-sizing to elements that really need it instead of everything getting it on the page?
The only solution I have that seems to work is put a google-maps class on the map div and set its box sizing to content-box
.google-map-canvas {
.box-sizing(content-box);
}