Skip to content

Commit

Permalink
Updating build
Browse files Browse the repository at this point in the history
  • Loading branch information
JedWatson committed Apr 29, 2016
1 parent 894d822 commit aaddc94
Show file tree
Hide file tree
Showing 12 changed files with 18,945 additions and 16,904 deletions.
28 changes: 20 additions & 8 deletions dist/react-select.css
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,10 @@
font-size: inherit;
margin: 0;
outline: none;
line-height: 14px; /* For IE 8 compatibility */
padding: 8px 0 12px; /* For IE 8 compatibility */
line-height: 14px;
/* For IE 8 compatibility */
padding: 8px 0 12px;
/* For IE 8 compatibility */
-webkit-appearance: none;
}
.is-focused .Select-input > input {
Expand Down Expand Up @@ -240,8 +242,15 @@
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
.Select-option.is-selected {
background-color: #f5faff;
/* Fallback color for IE 8 */
background-color: rgba(0, 126, 255, 0.04);
color: #333;
}
.Select-option.is-focused {
background-color: rgb(235, 245, 255); /* Fallback color for IE 8 */
background-color: #ebf5ff;
/* Fallback color for IE 8 */
background-color: rgba(0, 126, 255, 0.08);
color: #333;
}
Expand All @@ -265,10 +274,10 @@
margin-left: 5px;
}
.Select--multi .Select-value {
background-color: rgb(235, 245, 255); /* Fallback color for IE 8 */
background-color: #ebf5ff;
/* Fallback color for IE 8 */
background-color: rgba(0, 126, 255, 0.08);
border-radius: 2px;
border: 1px solid rgb(178, 215, 254); /* Fallback color for IE 8 */
border: 1px solid rgba(0, 126, 255, 0.24);
color: #007eff;
display: inline-block;
Expand Down Expand Up @@ -301,18 +310,21 @@
cursor: pointer;
border-bottom-left-radius: 2px;
border-top-left-radius: 2px;
border-right: 1px solid rgb(178, 215, 254); /* Fallback color for IE 8 */
border-right: 1px solid #c2e0ff;
/* Fallback color for IE 8 */
border-right: 1px solid rgba(0, 126, 255, 0.24);
padding: 1px 5px 3px;
}
.Select--multi .Select-value-icon:hover,
.Select--multi .Select-value-icon:focus {
background-color: rgb(216, 234, 253); /* Fallback color for IE 8 */
background-color: #d8eafd;
/* Fallback color for IE 8 */
background-color: rgba(0, 113, 230, 0.08);
color: #0071e6;
}
.Select--multi .Select-value-icon:active {
background-color: rgb(178, 215, 254); /* Fallback color for IE 8 */
background-color: #c2e0ff;
/* Fallback color for IE 8 */
background-color: rgba(0, 126, 255, 0.24);
}
.Select--multi.is-disabled .Select-value {
Expand Down
Loading

0 comments on commit aaddc94

Please sign in to comment.