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

Commit

Permalink
chore(build): v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dimirc committed Feb 26, 2015
1 parent 529ca4a commit da159d4
Show file tree
Hide file tree
Showing 6 changed files with 1,296 additions and 1,121 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui-select",
"version": "0.9.9",
"version": "0.10.0",
"homepage": "https://github.com/angular-ui/ui-select",
"authors": [
"AngularUI"
Expand Down
43 changes: 36 additions & 7 deletions dist/select.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* ui-select
* http://github.com/angular-ui/ui-select
* Version: 0.9.9 - 2015-02-18T03:49:07.281Z
* Version: 0.10.0 - 2015-02-26T06:35:06.243Z
* License: MIT
*/

Expand Down Expand Up @@ -82,9 +82,6 @@

.ui-select-bootstrap .ui-select-toggle {
position: relative;

/* Instead of center because of .btn */
text-align: left;
}

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

.ui-select-bootstrap > .ui-select-match {
/* Instead of center because of .btn */
text-align: left;
}

.ui-select-bootstrap > .ui-select-match > .caret {
position: absolute;
top: 45%;
Expand All @@ -119,27 +121,54 @@
height: auto;
max-height: 200px;
overflow-x: hidden;
margin-top: -1px;
}

.ui-select-multiple.ui-select-bootstrap {
height: auto;
padding: .3em;
padding: 3px 3px 0 3px;
}

.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
background-color: transparent !important; /* To prevent double background when disabled */
border: none;
outline: none;
height: 1.666666em;
margin-bottom: 3px;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
font-size: 1.6em;
line-height: 0.75;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match-item{
.ui-select-multiple.ui-select-bootstrap .ui-select-match-item {
outline: 0;
margin: 0 3px 3px 0;
}

.ui-select-multiple .ui-select-match-item {
position: relative;
}

.ui-select-multiple .ui-select-match-item.dropping-before:before {
content: "";
position: absolute;
top: 0;
right: 100%;
height: 100%;
margin-right: 2px;
border-left: 1px solid #428bca;
}

.ui-select-multiple .ui-select-match-item.dropping-after:after {
content: "";
position: absolute;
top: 0;
left: 100%;
height: 100%;
margin-left: 2px;
border-right: 1px solid #428bca;
}

.ui-select-bootstrap .ui-select-choices-row>a {
Expand Down Expand Up @@ -181,4 +210,4 @@
/* Mark invalid Bootstrap */
.ui-select-bootstrap.ng-dirty.ng-invalid > button.btn.ui-select-match {
border-color: #D44950;
}
}
Loading

0 comments on commit da159d4

Please sign in to comment.