Skip to content

Commit

Permalink
Rebuild dist
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Jun 12, 2016
1 parent 85a69ae commit edda7f8
Show file tree
Hide file tree
Showing 29 changed files with 720 additions and 400 deletions.
2 changes: 1 addition & 1 deletion dist/components/api.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/components/checkbox.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/components/dropdown.js
Expand Up @@ -875,7 +875,7 @@ $.fn.dropdown = function(parameters) {
$selectedItem = ($currentlySelected.length > 0)
? $currentlySelected
: $activeItem,
hasSelected = ($selectedItem.size() > 0)
hasSelected = ($selectedItem.length > 0)
;
if(hasSelected) {
module.debug('Forcing partial selection to selected item', $selectedItem);
Expand Down Expand Up @@ -1288,7 +1288,7 @@ $.fn.dropdown = function(parameters) {
? $currentlySelected
: $activeItem,
$visibleItems = ($selectedItem.length > 0)
? $selectedItem.siblings(':not(.' + className.filtered +')').andSelf()
? $selectedItem.siblings(':not(.' + className.filtered +')').addBack()
: $menu.children(':not(.' + className.filtered +')'),
$subMenu = $selectedItem.children(selector.menu),
$parentMenu = $selectedItem.closest(selector.menu),
Expand Down
4 changes: 2 additions & 2 deletions dist/components/dropdown.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/components/icon.min.css

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion dist/components/label.css
Expand Up @@ -127,7 +127,8 @@ a.ui.label {
}

/* Padding on next content after a label */
.ui.top.attached.label:first-child + :not(.attached) {
.ui.top.attached.label:first-child + :not(.attached),
.ui.top.attached.label + [class*="right floated"] + * {
margin-top: 2rem !important;
}
.ui.bottom.attached.label:first-child ~ :last-child:not(.attached) {
Expand Down
2 changes: 1 addition & 1 deletion dist/components/label.min.css

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions dist/components/menu.css
Expand Up @@ -1101,6 +1101,8 @@ Floated Menu / Item
}
.ui.vertical.text.menu .item {
margin: 0.57142857em 0em;
padding-left: 0em;
padding-right: 0em;
}
.ui.vertical.text.menu .item > i.icon {
float: none;
Expand Down Expand Up @@ -1420,8 +1422,7 @@ Floated Menu / Item
/*--- Pressed ---*/

.ui.inverted.menu a.item:active,
.ui.inverted.menu .link.item:active,
.ui.inverted.menu a.item:active {
.ui.inverted.menu .link.item:active {
background: rgba(255, 255, 255, 0.08);
color: #ffffff;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/components/menu.min.css

Large diffs are not rendered by default.

0 comments on commit edda7f8

Please sign in to comment.