Created
January 6, 2014 10:37
-
-
Save tkfm-yamaguchi/8280954 to your computer and use it in GitHub Desktop.
Bootstrap(2.3) makes Google Map(v3)'s controller skinny
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://stackoverflow.com/questions/9141249/twitter-bootstrap-css-affecting-google-maps | |
// Below fixes Bootstrap(2.3)'s affection to Google Map V3's control which would be skinny looks. | |
// '#map' is a container of Google Map. | |
#map { | |
img { | |
max-width: none; | |
} | |
label { | |
width: auto; | |
display: inline; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment