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

Commit da159d4

Browse files
committed
chore(build): v0.10.0
1 parent 529ca4a commit da159d4

File tree

6 files changed

+1296
-1121
lines changed

6 files changed

+1296
-1121
lines changed

Diff for: bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ui-select",
3-
"version": "0.9.9",
3+
"version": "0.10.0",
44
"homepage": "https://github.com/angular-ui/ui-select",
55
"authors": [
66
"AngularUI"

Diff for: dist/select.css

+36-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* ui-select
33
* http://github.com/angular-ui/ui-select
4-
* Version: 0.9.9 - 2015-02-18T03:49:07.281Z
4+
* Version: 0.10.0 - 2015-02-26T06:35:06.243Z
55
* License: MIT
66
*/
77

@@ -82,9 +82,6 @@
8282

8383
.ui-select-bootstrap .ui-select-toggle {
8484
position: relative;
85-
86-
/* Instead of center because of .btn */
87-
text-align: left;
8885
}
8986

9087
.ui-select-bootstrap .ui-select-toggle > .caret {
@@ -107,6 +104,11 @@
107104
border-bottom-right-radius: 0;
108105
}
109106

107+
.ui-select-bootstrap > .ui-select-match {
108+
/* Instead of center because of .btn */
109+
text-align: left;
110+
}
111+
110112
.ui-select-bootstrap > .ui-select-match > .caret {
111113
position: absolute;
112114
top: 45%;
@@ -119,27 +121,54 @@
119121
height: auto;
120122
max-height: 200px;
121123
overflow-x: hidden;
124+
margin-top: -1px;
122125
}
123126

124127
.ui-select-multiple.ui-select-bootstrap {
125128
height: auto;
126-
padding: .3em;
129+
padding: 3px 3px 0 3px;
127130
}
128131

129132
.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
130133
background-color: transparent !important; /* To prevent double background when disabled */
131134
border: none;
132135
outline: none;
133136
height: 1.666666em;
137+
margin-bottom: 3px;
134138
}
135139

136140
.ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
137141
font-size: 1.6em;
138142
line-height: 0.75;
139143
}
140144

141-
.ui-select-multiple.ui-select-bootstrap .ui-select-match-item{
145+
.ui-select-multiple.ui-select-bootstrap .ui-select-match-item {
142146
outline: 0;
147+
margin: 0 3px 3px 0;
148+
}
149+
150+
.ui-select-multiple .ui-select-match-item {
151+
position: relative;
152+
}
153+
154+
.ui-select-multiple .ui-select-match-item.dropping-before:before {
155+
content: "";
156+
position: absolute;
157+
top: 0;
158+
right: 100%;
159+
height: 100%;
160+
margin-right: 2px;
161+
border-left: 1px solid #428bca;
162+
}
163+
164+
.ui-select-multiple .ui-select-match-item.dropping-after:after {
165+
content: "";
166+
position: absolute;
167+
top: 0;
168+
left: 100%;
169+
height: 100%;
170+
margin-left: 2px;
171+
border-right: 1px solid #428bca;
143172
}
144173

145174
.ui-select-bootstrap .ui-select-choices-row>a {
@@ -181,4 +210,4 @@
181210
/* Mark invalid Bootstrap */
182211
.ui-select-bootstrap.ng-dirty.ng-invalid > button.btn.ui-select-match {
183212
border-color: #D44950;
184-
}
213+
}

0 commit comments

Comments
 (0)