Skip to content

Commit 775023d

Browse files
committed
Tweaked list label width styling
1 parent ae23790 commit 775023d

9 files changed

+16
-8
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-storelocator-plugin",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"description": "This jQuery plugin takes advantage of Google Maps API version 3 to create an easy to implement store locator. No back-end programming is required, you just need to feed it KML, XML, or JSON data with all the location information.",
55
"repository": {
66
"type": "git",

dist/assets/css/storelocator.css

+3-1
Original file line numberDiff line numberDiff line change
@@ -162,12 +162,14 @@
162162
background: #00192d;
163163
border-radius: 15px;
164164
color: white;
165+
display: block;
165166
float: left;
166167
font-weight: bold;
167168
margin: 10px 0 0 15px;
168169
padding: 4px 7px;
169170
text-align: center;
170-
width: 13px; }
171+
width: auto;
172+
min-width: 13px; }
171173
.bh-sl-container .bh-sl-loc-list .list-details {
172174
float: left;
173175
margin-left: 6px;

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.

dist/assets/js/plugins/storeLocator/jquery.storelocator.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! jQuery Google Maps Store Locator - v2.3.1 - 2015-12-13
1+
/*! jQuery Google Maps Store Locator - v2.3.2 - 2015-12-14
22
* http://www.bjornblog.com/web/jquery-store-locator-plugin
33
* Copyright (c) 2015 Bjorn Holine; Licensed MIT */
44

dist/assets/js/plugins/storeLocator/jquery.storelocator.min.js

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-storelocator-plugin",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"description": "This jQuery plugin takes advantage of Google Maps API version 3 to create an easy to implement store locator. No back-end programming is required, you just need to feed it KML, XML, or JSON data with all the location information.",
55
"repository": {
66
"type": "git",

readme.md

+4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ for even faster loading.
2727

2828
## Changelog
2929

30+
### Version 2.3.2
31+
32+
* Tweaked list label width styling.
33+
3034
### Version 2.3.1
3135

3236
* Added preventative styling to inline directions panel table.

src/css/storelocator.scss

+3-1
Original file line numberDiff line numberDiff line change
@@ -234,12 +234,14 @@ $tabletLarge: '(min-width: 1024px)';
234234
background: darken( $blue, 20% );
235235
border-radius: 15px;
236236
color: $white;
237+
display: block;
237238
float: left;
238239
font-weight: bold;
239240
margin: 10px 0 0 15px;
240241
padding: 4px 7px;
241242
text-align: center;
242-
width: 13px;
243+
width: auto;
244+
min-width: 13px;
243245
}
244246

245247
.list-details {

storelocator.jquery.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"title": "jQuery Google Maps Store Locator",
44
"description": "This jQuery plugin takes advantage of Google Maps API version 3 to create an easy to implement store locator. No back-end programming is required, you just need to feed it KML, XML, or JSON data with all the location information.",
55
"keywords": ["jquery","locator","store", "location", "locations", "maps", "map", "stores", "find"],
6-
"version": "2.3.1",
6+
"version": "2.3.2",
77
"author": {
88
"name": "Bjorn Holine",
99
"url": "http://www.bjornblog.com/"

0 commit comments

Comments
 (0)