Skip to content

Commit c223729

Browse files
author
Florian Kissling
committed
Merge pull request #59 from fk/bootstrap3
bootstrap3 v1.4.4
2 parents d61fd48 + ddce1a1 commit c223729

File tree

9 files changed

+20
-16
lines changed

9 files changed

+20
-16
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ in latest Chrome, Safari, Firefox, Opera (Mac) and IE8-IE10.
1515

1616
##### Changelog
1717

18+
###### v1.4.4
19+
20+
* Don't hardcode :focus box-shadow colour ([#58](https://github.com/t0m/select2-bootstrap-css/issues/58)).
21+
1822
###### v1.4.3
1923

2024
* Removed gradient for `.select2-dropdown-open.select2-drop-above [class^="select2-choice"]` in IE <= 9; really fixes [#35](https://github.com/t0m/select2-bootstrap-css/issues/35).

_jekyll/css/select2-bootstrap.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Select2 Bootstrap 3 CSS v1.4.3
2+
* Select2 Bootstrap 3 CSS v1.4.4
33
* Tested with Bootstrap v3.3.1 and Select2 v3.3.2, v3.4.1-v3.4.5, v3.5.1, v3.5.2, master
44
* in latest Chrome, Safari, Firefox, Opera (Mac) and IE8-IE11
55
* MIT License
@@ -280,8 +280,8 @@
280280
.select2-container-multi.select2-container-active .select2-choices {
281281
border-color: #66afe9;
282282
outline: none;
283-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
284-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
283+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
284+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
285285
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
286286
-o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
287287
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "select2-bootstrap-css",
3-
"version": "1.4.3",
3+
"version": "1.4.4",
44
"main": [
55
"select2-bootstrap.css"
66
],

docs/css/select2-bootstrap.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Select2 Bootstrap 3 CSS v1.4.3
2+
* Select2 Bootstrap 3 CSS v1.4.4
33
* Tested with Bootstrap v3.3.1 and Select2 v3.3.2, v3.4.1-v3.4.5, v3.5.1, v3.5.2, master
44
* in latest Chrome, Safari, Firefox, Opera (Mac) and IE8-IE11
55
* MIT License
@@ -280,8 +280,8 @@
280280
.select2-container-multi.select2-container-active .select2-choices {
281281
border-color: #66afe9;
282282
outline: none;
283-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
284-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
283+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
284+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
285285
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
286286
-o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
287287
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

lib/select2-bootstrap.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Select2 Bootstrap 3 CSS v1.4.3
2+
* Select2 Bootstrap 3 CSS v1.4.4
33
* Tested with Bootstrap v3.3.1 and Select2 v3.3.2, v3.4.1-v3.4.5, v3.5.1, v3.5.2, master
44
* in latest Chrome, Safari, Firefox, Opera (Mac) and IE8-IE11
55
* MIT License
@@ -266,7 +266,7 @@
266266
.select2-container-multi.select2-container-active .select2-choices {
267267
border-color: @input-border-focus;
268268
outline: none;
269-
@shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
269+
@shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px fade(@input-border-focus, 60%);
270270
.box-shadow(@shadow);
271271
@transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
272272
.transition(@transition);

lib/select2-bootstrap.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Select2 Bootstrap 3 CSS v1.4.3
2+
* Select2 Bootstrap 3 CSS v1.4.4
33
* Tested with Bootstrap v3.3.1 and Select2 v3.3.2, v3.4.1-v3.4.5, v3.5.1, v3.5.2, master
44
* in latest Chrome, Safari, Firefox, Opera (Mac) and IE8-IE11
55
* MIT License
@@ -266,7 +266,7 @@
266266
.select2-container-multi.select2-container-active .select2-choices {
267267
border-color: $input-border-focus;
268268
outline: none;
269-
$shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
269+
$shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba($input-border-focus, 0.6);
270270
@include box-shadow($shadow);
271271
$transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
272272
@include transition($transition);

lib/select2-bootstrap/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module Select2
22
module Bootstrap
33
# This is updated via the `grunt bump` command, which has a pretty
44
# unflexible matching syntax.
5-
VERSION_STRING = "'version': '1.4.3'"
5+
VERSION_STRING = "'version': '1.4.4'"
66
# Then, just the version.
77
VERSION = VERSION_STRING.match(/\d+\.\d+\.\d+/)[0]
88
end

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "select2-bootstrap-css",
3-
"version": "1.4.3",
3+
"version": "1.4.4",
44
"description": "simple css to make select2 widgets fit in with bootstrap",
55
"main": "",
66
"directories": {

select2-bootstrap.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Select2 Bootstrap 3 CSS v1.4.3
2+
* Select2 Bootstrap 3 CSS v1.4.4
33
* Tested with Bootstrap v3.3.1 and Select2 v3.3.2, v3.4.1-v3.4.5, v3.5.1, v3.5.2, master
44
* in latest Chrome, Safari, Firefox, Opera (Mac) and IE8-IE11
55
* MIT License
@@ -280,8 +280,8 @@
280280
.select2-container-multi.select2-container-active .select2-choices {
281281
border-color: #66afe9;
282282
outline: none;
283-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
284-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
283+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
284+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
285285
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
286286
-o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
287287
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

0 commit comments

Comments
 (0)