Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 85d2c98

Browse files
committed
adding color to map container so the edges are softer when blurred
1 parent 263df7d commit 85d2c98

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

css/obBase.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6122,3 +6122,8 @@ input[type="checkbox"].fieldItem:checked + label .togLabelOff {
61226122
#ov1.notFancy .addressFormOpened .buyWizardMap .blurMore {
61236123
display: none;
61246124
}
6125+
6126+
.buyWizardMap .mapWrap {
6127+
background-color: #eeeae1;
6128+
height: 100%;
6129+
}

js/templates/buyWizard.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ <h2 class="ion-android-close custCol-text clickable"></h2>
77
style="background-image: url(<%= ob.serverUrl %>get_image?hash=<%= ob.vendor_offer.listing.item.image_hashes[0] %><%= ob.imageExtension %>), url(imgs/defaultBanner.png);">
88
<div class="js-buyWizardMap buyWizardMap positionRelative hide" style="height: 262px">
99
<div class="js-mapSpinner txt-col1 ion-android-sync spinner spinner-slow icon-large icon-circle-background1 zIndex1 fullCentered" style="border: 1px solid #aaa;"></div>
10-
<div class="flexContainer"></div>
10+
<div class="flexContainer mapWrap"></div>
1111
</div>
1212
<div class="modal-hero modal-heroFullHeightNoButtons js-buyWizardSpinner hide background1 custCol-primary">
1313
<div class="width100 txt-center vCentered">

js/views/buyWizardVw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ module.exports = baseVw.extend({
393393
this.$buyWizardMap.find('.js-mapSpinner').removeClass('hide');
394394
$iFrame.insertBefore($currentIframe);
395395
} else {
396-
this.$buyWizardMap.find('.flexContainer')
396+
this.$buyWizardMap.find('.mapWrap')
397397
.prepend($iFrame);
398398
}
399399

0 commit comments

Comments
 (0)