Skip to content

Commit b8707e1

Browse files
committed
Fixed filters select field styling inconsistency
1 parent b41d107 commit b8707e1

File tree

4 files changed

+20
-1
lines changed

4 files changed

+20
-1
lines changed

dist/assets/css/storelocator.css

+8
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,14 @@
114114
display: block;
115115
float: left;
116116
margin-right: 8px; }
117+
.bh-sl-container .bh-sl-filters-container .bh-sl-filters li select {
118+
box-sizing: border-box;
119+
border: 1px solid #cccccc;
120+
border-radius: 4px;
121+
font: normal 14px/18px Arial, Helvetica, sans-serif;
122+
line-height: 16px;
123+
padding: 6px 12px;
124+
-webkit-border-radius: 4px; }
117125
.bh-sl-container .bh-sl-map-container {
118126
clear: left;
119127
float: left;

dist/assets/css/storelocator.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

readme.md

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ for even faster loading.
3333
which will be applied as the initial Google Maps zoom value and will then fall back to the mapSettings zoom level after
3434
a search is performed.
3535
* Added fullMapStartBlank example file.
36+
* Fixed filters select field styling inconsistency.
3637
* Moved pagination container within map container div in pagination example to avoid confusion when combined with modal option.
3738
* Reworked styling so that all HTML example files are responsive by default.
3839
* Updated map-container ID in all example files with bh-sl prefix.

src/css/storelocator.scss

+10
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,16 @@ $tabletLarge: '(min-width: 1024px)';
162162
float: left;
163163
margin-right: 8px;
164164
}
165+
166+
select {
167+
box-sizing: border-box;
168+
border: 1px solid $gray;
169+
border-radius: 4px;
170+
font: normal 14px/18px $arialFont;
171+
line-height: 16px;
172+
padding: 6px 12px;
173+
-webkit-border-radius: 4px;
174+
}
165175
}
166176
}
167177
}

0 commit comments

Comments
 (0)