Skip to content

Commit

Permalink
Rebuild 1.7 add date
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Jan 14, 2015
1 parent d32ce3b commit b9b7fd6
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 53 deletions.
2 changes: 1 addition & 1 deletion RELEASE-NOTES.md
@@ -1,6 +1,6 @@
## RELEASE NOTES

### Version 1.7.0 -
### Version 1.7.0 - January 14, 2015

**Major Changes**
- **Project** - Right-to-left (RTL) support added. New gulp tasks for RTL file generation. Docs do not yet support RTL.*Thanks @MohammadYounes!*.
Expand Down
40 changes: 16 additions & 24 deletions dist/components/dropdown.css
Expand Up @@ -117,7 +117,7 @@
-webkit-touch-callout: none;
}
.ui.dropdown .menu > .item:first-child {
border-top: none;
border-top-width: 0px;
}

/*--------------
Expand All @@ -126,15 +126,15 @@

.ui.dropdown > .text > [class*="right floated"],
.ui.dropdown .menu .item > [class*="right floated"] {
float: right;
margin-right: 0em;
margin-left: 1em;
float: right !important;
margin-right: 0em !important;
margin-left: 1em !important;
}
.ui.dropdown > .text > [class*="left floated"],
.ui.dropdown .menu .item > [class*="left floated"] {
float: right;
margin-left: 0em;
margin-right: 1em;
float: left !important;
margin-left: 0em !important;
margin-right: 1em !important;
}
.ui.dropdown .menu .item > .icon.floated,
.ui.dropdown .menu .item > .flag.floated,
Expand Down Expand Up @@ -359,26 +359,18 @@ select.ui.dropdown {
min-width: 0px;
}

/* Remove Selection */
.ui.selection.dropdown > .delete.icon {
opacity: 0.6;
}
.ui.selection.dropdown > .delete.icon:hover {
opacity: 1;
}

/* Selection Menu */
.ui.selection.dropdown .menu {
overflow-x: hidden;
overflow-y: auto;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-overflow-scrolling: touch;
border-top: none !important;
border-top-width: 0px !important;
width: auto;
margin: 0px -1px;
min-width: -webkit-calc(100% + 2px);
min-width: calc(100% + 2px);
min-width: -webkit-calc(100% + 2px );
min-width: calc(100% + 2px );
outline: none;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
-webkit-transition: box-shadow 0.2s ease, border 0.2s ease;
Expand Down Expand Up @@ -444,7 +436,7 @@ select.ui.dropdown {
}
.ui.selection.visible.dropdown:hover .menu {
border: 1px solid rgba(39, 41, 43, 0.3);
box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.12);
box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
}

/* Visible */
Expand Down Expand Up @@ -759,7 +751,7 @@ select.ui.dropdown {
.ui.upward.dropdown > .menu {
top: auto;
bottom: 100%;
box-shadow: 0px -1px 4px 0px rgba(39, 41, 43, 0.15);
box-shadow: 0px 0px 4px 0px rgba(39, 41, 43, 0.15);
border-radius: 0.2857rem 0.2857rem 0em 0em;
}

Expand All @@ -775,14 +767,14 @@ select.ui.dropdown {

/* Selection */
.ui.upward.selection.dropdown .menu {
border-top: 1px solid rgba(39, 41, 43, 0.15) !important;
border-bottom: none !important;
border-top-width: 1px !important;
border-bottom-width: 0px !important;
}
.ui.upward.selection.dropdown:hover {
box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
}
.ui.upward.selection.visible.dropdown:hover {
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05);
}
.ui.active.upward.selection.dropdown,
.ui.visible.upward.selection.dropdown {
Expand All @@ -792,7 +784,7 @@ select.ui.dropdown {
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
}
.ui.upward.selection.visible.dropdown:hover .menu {
box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.12);
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
}

/*--------------
Expand Down

0 comments on commit b9b7fd6

Please sign in to comment.