I'm working with the select2 jQuery select box replacement, but I'm having an issue with CSS Transforms.
Basically, I have a button on the page that increases the transform and font-size properties. When the transform is 1.25, the dropdown from the select box is off position.
My jsFiddle Test 1 (with default zoom): http://jsfiddle.net/ugPmm/1/
My jsFiddle Test 2 (with a larger zoom): http://jsfiddle.net/wCALL/2/
In the Test 2, you can see the dropdown menu does not position itself correctly.
The page modifications that I'm making in CSS are:
.zoom-largest {
font-size: 18px; }
body.zoom-largest {
-o-transform: scale(1.25);
-moz-transform: scale(1.25);
-ms-transform: scale(1.25);
-webkit-transform: scale(1.25);
transform: scale(1.25);
}
What is causing the incorrect position of the dropdown?