};
var info = new google.maps.InfoWindow({
- content: '<div class="map-infowindow"><div class="map-infowindow__image"><a href="' + $(this).attr('data-marker-url') + '" target="_blank"><img src="' + $(this).attr('data-marker-image') + '" /></a></div><div class="map-infowindow__content"><div class="map-infowindow__title">' + $(this).find('[data-marker-title]').text() + '</div><div class="map-infowindow__subtitle">' + $(this).find('[data-marker-subtitle]').text() + '</div></div></div>'
+ content: '<div class="map-infowindow"><div class="map-infowindow__image"><a href="' + $(this).attr('data-marker-url') + '" target="_blank"><img src="' + $(this).attr('data-marker-image') + '" /></a></div><div class="map-infowindow__content"><div class="map-infowindow__title">' + $(this).find('[data-marker-title]').text() + '</div><div class="map-infowindow__subtitle">' + $(this).find('[data-marker-subtitle]').text() + '</div><p>' + $(this).find('[data-marker-description]').text() + '</p></div></div>'
});
obj.info = info;
@include padding(1);
@include clearfix;
+ margin-right: -23px;
+ color: $color-background;
+
&__content {
//float: left;
- @include margin-left(1);
+ text-align: center;
+
+ p {
+ @include margin(0);
+ }
}
@include font-size(m);
@include line-height(.75);
@include typeface(sans-serif);
- font-weight: weight(bold);
+ text-transform: uppercase;
+ font-weight: weight(regular);
}
@include font-size(xs);
@include line-height(.5);
@include typeface(serif);
- font-weight: weight(bold);
+ font-weight: weight(regular);
+
+ & + p {
+ @include margin-top(.5);
+ }
}