Skip to content

Commit 3a830f2

Browse files
committed
Released 0.8.0.
1 parent 5b384e9 commit 3a830f2

18 files changed

+884
-373
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "selectize",
33
"keywords": ["select", "ui", "form", "input", "control", "autocomplete", "tagging", "tag"],
44
"description": "Selectize is a jQuery-based custom <select> UI control. Useful for tagging, contact lists, country selectors, etc.",
5-
"version": "0.7.7",
5+
"version": "0.8.0",
66
"license": "Apache License, Version 2.0",
77
"readmeFilename": "README.md",
88
"repository": {

dist/css/selectize.bootstrap2.css

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.bootstrap2.css (v0.7.7) - Bootstrap 2 Theme
2+
* selectize.bootstrap2.css (v0.8.0) - Bootstrap 2 Theme
33
* Copyright (c) 2013 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -115,6 +115,14 @@
115115
border-left-color: #0077b3;
116116
}
117117

118+
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
119+
background: none;
120+
}
121+
122+
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
123+
border-left-color: #e0e0e0;
124+
}
125+
118126
.selectize-control {
119127
position: relative;
120128
}
@@ -130,7 +138,7 @@
130138
}
131139

132140
.selectize-input,
133-
.selectize-control.single .selectize-input.focus {
141+
.selectize-control.single .selectize-input.input-active {
134142
display: inline-block;
135143
cursor: text;
136144
background: #ffffff;
@@ -312,8 +320,8 @@
312320
cursor: pointer;
313321
}
314322

315-
.selectize-control.single .selectize-input.focus,
316-
.selectize-control.single .selectize-input.focus input {
323+
.selectize-control.single .selectize-input.input-active,
324+
.selectize-control.single .selectize-input.input-active input {
317325
cursor: text;
318326
}
319327

@@ -337,6 +345,15 @@
337345
border-width: 0 5px 5px 5px;
338346
}
339347

348+
.selectize-control.rtl.single .selectize-input:after {
349+
right: auto;
350+
left: 15px;
351+
}
352+
353+
.selectize-control.rtl .selectize-input > input {
354+
margin: 0 4px 0 -2px !important;
355+
}
356+
340357
.selectize-control .selectize-input.disabled {
341358
background-color: #ffffff;
342359
opacity: 0.5;
@@ -413,8 +430,9 @@
413430
display: none;
414431
}
415432

416-
.selectize-input.focus,
417-
.selectize-input.focus:hover {
433+
.selectize-input.input-active,
434+
.selectize-input.input-active:hover,
435+
.selectize-control.multi .selectize-input.focus {
418436
background: #ffffff !important;
419437
border-color: rgba(82, 168, 236, 0.8) !important;
420438
outline: 0 !important;

dist/css/selectize.bootstrap3.css

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.bootstrap3.css (v0.7.7) - Bootstrap 3 Theme
2+
* selectize.bootstrap3.css (v0.8.0) - Bootstrap 3 Theme
33
* Copyright (c) 2013 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -115,6 +115,14 @@
115115
border-left-color: rgba(0, 0, 0, 0);
116116
}
117117

118+
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
119+
background: none;
120+
}
121+
122+
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
123+
border-left-color: rgba(77, 77, 77, 0);
124+
}
125+
118126
.selectize-control {
119127
position: relative;
120128
}
@@ -130,7 +138,7 @@
130138
}
131139

132140
.selectize-input,
133-
.selectize-control.single .selectize-input.focus {
141+
.selectize-control.single .selectize-input.input-active {
134142
display: inline-block;
135143
cursor: text;
136144
background: #ffffff;
@@ -312,8 +320,8 @@
312320
cursor: pointer;
313321
}
314322

315-
.selectize-control.single .selectize-input.focus,
316-
.selectize-control.single .selectize-input.focus input {
323+
.selectize-control.single .selectize-input.input-active,
324+
.selectize-control.single .selectize-input.input-active input {
317325
cursor: text;
318326
}
319327

@@ -337,6 +345,15 @@
337345
border-width: 0 5px 5px 5px;
338346
}
339347

348+
.selectize-control.rtl.single .selectize-input:after {
349+
right: auto;
350+
left: 17px;
351+
}
352+
353+
.selectize-control.rtl .selectize-input > input {
354+
margin: 0 4px 0 -2px !important;
355+
}
356+
340357
.selectize-control .selectize-input.disabled {
341358
background-color: #ffffff;
342359
opacity: 0.5;

dist/css/selectize.css

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.css (v0.7.7)
2+
* selectize.css (v0.8.0)
33
* Copyright (c) 2013 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -115,6 +115,14 @@
115115
border-left-color: #cacaca;
116116
}
117117

118+
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
119+
background: none;
120+
}
121+
122+
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
123+
border-left-color: #ffffff;
124+
}
125+
118126
.selectize-control {
119127
position: relative;
120128
}
@@ -130,7 +138,7 @@
130138
}
131139

132140
.selectize-input,
133-
.selectize-control.single .selectize-input.focus {
141+
.selectize-control.single .selectize-input.input-active {
134142
display: inline-block;
135143
cursor: text;
136144
background: #ffffff;
@@ -312,8 +320,8 @@
312320
cursor: pointer;
313321
}
314322

315-
.selectize-control.single .selectize-input.focus,
316-
.selectize-control.single .selectize-input.focus input {
323+
.selectize-control.single .selectize-input.input-active,
324+
.selectize-control.single .selectize-input.input-active input {
317325
cursor: text;
318326
}
319327

@@ -337,6 +345,15 @@
337345
border-width: 0 5px 5px 5px;
338346
}
339347

348+
.selectize-control.rtl.single .selectize-input:after {
349+
right: auto;
350+
left: 15px;
351+
}
352+
353+
.selectize-control.rtl .selectize-input > input {
354+
margin: 0 4px 0 -2px !important;
355+
}
356+
340357
.selectize-control .selectize-input.disabled {
341358
background-color: #fafafa;
342359
opacity: 0.5;

dist/css/selectize.default.css

Lines changed: 30 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.default.css (v0.7.7) - Default Theme
2+
* selectize.default.css (v0.8.0) - Default Theme
33
* Copyright (c) 2013 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -115,6 +115,14 @@
115115
border-left-color: #00578d;
116116
}
117117

118+
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
119+
background: none;
120+
}
121+
122+
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
123+
border-left-color: #aaaaaa;
124+
}
125+
118126
.selectize-control {
119127
position: relative;
120128
}
@@ -130,7 +138,7 @@
130138
}
131139

132140
.selectize-input,
133-
.selectize-control.single .selectize-input.focus {
141+
.selectize-control.single .selectize-input.input-active {
134142
display: inline-block;
135143
cursor: text;
136144
background: #ffffff;
@@ -312,8 +320,8 @@
312320
cursor: pointer;
313321
}
314322

315-
.selectize-control.single .selectize-input.focus,
316-
.selectize-control.single .selectize-input.focus input {
323+
.selectize-control.single .selectize-input.input-active,
324+
.selectize-control.single .selectize-input.input-active input {
317325
cursor: text;
318326
}
319327

@@ -337,6 +345,15 @@
337345
border-width: 0 5px 5px 5px;
338346
}
339347

348+
.selectize-control.rtl.single .selectize-input:after {
349+
right: auto;
350+
left: 15px;
351+
}
352+
353+
.selectize-control.rtl .selectize-input > input {
354+
margin: 0 4px 0 -2px !important;
355+
}
356+
340357
.selectize-control .selectize-input.disabled {
341358
background-color: #fafafa;
342359
opacity: 0.5;
@@ -351,11 +368,19 @@
351368
color: #999;
352369
text-shadow: none;
353370
background: none;
354-
border-color: #e6e6e6;
355371
-webkit-box-shadow: none;
356372
box-shadow: none;
357373
}
358374

375+
.selectize-control.multi .selectize-input.disabled [data-value],
376+
.selectize-control.multi .selectize-input.disabled [data-value] .remove {
377+
border-color: #e6e6e6;
378+
}
379+
380+
.selectize-control.multi .selectize-input.disabled [data-value] .remove {
381+
background: none;
382+
}
383+
359384
.selectize-control.multi .selectize-input [data-value] {
360385
text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
361386
background-color: #1b9dec;

dist/css/selectize.legacy.css

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* selectize.legacy.css (v0.7.7) - Default Theme
2+
* selectize.legacy.css (v0.8.0) - Default Theme
33
* Copyright (c) 2013 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
@@ -115,6 +115,14 @@
115115
border-left-color: #6f9839;
116116
}
117117

118+
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
119+
background: none;
120+
}
121+
122+
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
123+
border-left-color: #b4b4b4;
124+
}
125+
118126
.selectize-control {
119127
position: relative;
120128
}
@@ -130,7 +138,7 @@
130138
}
131139

132140
.selectize-input,
133-
.selectize-control.single .selectize-input.focus {
141+
.selectize-control.single .selectize-input.input-active {
134142
display: inline-block;
135143
cursor: text;
136144
background: #ffffff;
@@ -312,8 +320,8 @@
312320
cursor: pointer;
313321
}
314322

315-
.selectize-control.single .selectize-input.focus,
316-
.selectize-control.single .selectize-input.focus input {
323+
.selectize-control.single .selectize-input.input-active,
324+
.selectize-control.single .selectize-input.input-active input {
317325
cursor: text;
318326
}
319327

@@ -337,6 +345,15 @@
337345
border-width: 0 5px 5px 5px;
338346
}
339347

348+
.selectize-control.rtl.single .selectize-input:after {
349+
right: auto;
350+
left: 15px;
351+
}
352+
353+
.selectize-control.rtl .selectize-input > input {
354+
margin: 0 4px 0 -2px !important;
355+
}
356+
340357
.selectize-control .selectize-input.disabled {
341358
background-color: #fafafa;
342359
opacity: 0.5;

0 commit comments

Comments
 (0)