google maps fixing
This commit is contained in:
parent
e6da229b19
commit
fbbedf439e
4 changed files with 9 additions and 1 deletions
|
@ -23,6 +23,7 @@ ul.unstyled {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
img {
|
img {
|
||||||
|
height: auto;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
/* Google Gmap3 bug fix on images */
|
/* Google Gmap3 bug fix on images */
|
||||||
|
.gm-style img {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
:not(.gm-style) img {
|
:not(.gm-style) img {
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,7 @@ ul.unstyled {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
img {
|
img {
|
||||||
|
height: auto;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
@ -58,7 +59,7 @@ body {
|
||||||
color: @basecolor;
|
color: @basecolor;
|
||||||
font-family: @fontstack1;
|
font-family: @fontstack1;
|
||||||
font-size: unit((@basefont / 10), em);
|
font-size: unit((@basefont / 10), em);
|
||||||
line-height: @lh; // adapt to your design
|
line-height: @lh;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* font-sizing for content */
|
/* font-sizing for content */
|
||||||
|
|
|
@ -3,6 +3,9 @@
|
||||||
// google maps boolean
|
// google maps boolean
|
||||||
& when (@gmaps = true) {
|
& when (@gmaps = true) {
|
||||||
/* Google Gmap3 bug fix on images */
|
/* Google Gmap3 bug fix on images */
|
||||||
|
.gm-style img {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
:not(.gm-style) img {
|
:not(.gm-style) img {
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue