Browse Source

Remove definition button from wrong pages

1.0
jlukic 10 years ago
parent
commit
dacbfb61c5
  1. 4
      build/less/definitions/elements/button.less
  2. 36
      build/less/definitions/modules/dropdown.js
  3. 13
      build/less/definitions/modules/dropdown.less
  4. 1
      build/less/themes/packages/default/collections/grid.variables
  5. 3
      build/less/themes/packages/default/elements/button.variables
  6. 6
      build/less/themes/packages/raised/elements/button.overrides
  7. 15
      build/less/themes/packages/raised/elements/button.variables
  8. 2
      build/minified/definitions/collections/breadcrumb.min.css
  9. 2
      build/minified/definitions/collections/form.min.css
  10. 2
      build/minified/definitions/collections/grid.min.css
  11. 2
      build/minified/definitions/collections/menu.min.css
  12. 2
      build/minified/definitions/collections/message.min.css
  13. 2
      build/minified/definitions/collections/table.min.css
  14. 4
      build/minified/definitions/elements/button.min.css
  15. 2
      build/minified/definitions/elements/divider.min.css
  16. 2
      build/minified/definitions/elements/flag.min.css
  17. 2
      build/minified/definitions/elements/header.min.css
  18. 2
      build/minified/definitions/elements/icon.min.css
  19. 2
      build/minified/definitions/elements/image.min.css
  20. 2
      build/minified/definitions/elements/input.min.css
  21. 2
      build/minified/definitions/elements/label.min.css
  22. 2
      build/minified/definitions/elements/list.min.css
  23. 2
      build/minified/definitions/elements/loader.min.css
  24. 2
      build/minified/definitions/elements/progress.min.css
  25. 2
      build/minified/definitions/elements/rail.min.css
  26. 2
      build/minified/definitions/elements/reveal.min.css
  27. 2
      build/minified/definitions/elements/segment.min.css
  28. 2
      build/minified/definitions/elements/step.min.css
  29. 2
      build/minified/definitions/globals/reset.min.css
  30. 2
      build/minified/definitions/globals/site.min.css
  31. 2
      build/minified/definitions/modules/accordion.min.css
  32. 2
      build/minified/definitions/modules/chatroom.min.css
  33. 2
      build/minified/definitions/modules/checkbox.min.css
  34. 2
      build/minified/definitions/modules/dimmer.min.css
  35. 4
      build/minified/definitions/modules/dropdown.min.css
  36. 2
      build/minified/definitions/modules/dropdown.min.js
  37. 2
      build/minified/definitions/modules/modal.min.css
  38. 2
      build/minified/definitions/modules/nag.min.css
  39. 2
      build/minified/definitions/modules/popup.min.css
  40. 2
      build/minified/definitions/modules/rating.min.css
  41. 2
      build/minified/definitions/modules/search.min.css
  42. 2
      build/minified/definitions/modules/shape.min.css
  43. 2
      build/minified/definitions/modules/sidebar.min.css
  44. 2
      build/minified/definitions/modules/sticky.min.css
  45. 2
      build/minified/definitions/modules/tab.min.css
  46. 2
      build/minified/definitions/modules/transition.min.css
  47. 2
      build/minified/definitions/modules/video.min.css
  48. 2
      build/minified/definitions/views/card.min.css
  49. 2
      build/minified/definitions/views/comment.min.css
  50. 2
      build/minified/definitions/views/feed.min.css
  51. 2
      build/minified/definitions/views/item.min.css
  52. 2
      build/minified/definitions/views/statistic.min.css
  53. 15
      build/packaged/definitions/css/semantic.css
  54. 4
      build/packaged/definitions/css/semantic.min.css
  55. 36
      build/packaged/definitions/javascript/semantic.js
  56. 8
      build/packaged/definitions/javascript/semantic.min.js
  57. 4
      build/uncompressed/definitions/elements/button.css
  58. 11
      build/uncompressed/definitions/modules/dropdown.css
  59. 36
      build/uncompressed/definitions/modules/dropdown.js
  60. 2
      server/partials/header.html.eco

4
build/less/definitions/elements/button.less

@ -26,12 +26,12 @@
.ui.button { .ui.button {
cursor: pointer; cursor: pointer;
display: inline-block; display: inline-block;
vertical-align: baseline;
min-height: 1em; min-height: 1em;
outline: none; outline: none;
border: none; border: none;
vertical-align: @verticalAlign;
background-color: @backgroundColor; background-color: @backgroundColor;
color: @textColor; color: @textColor;
@ -133,7 +133,7 @@
position: relative; position: relative;
cursor: default; cursor: default;
background-color: @loadingBackgroundColor !important; background: @loadingBackground !important;
text-shadow: none !important; text-shadow: none !important;
color: transparent !important; color: transparent !important;
transition: all 0s linear; transition: all 0s linear;

36
build/less/definitions/modules/dropdown.js

@ -70,7 +70,6 @@ $.fn.dropdown = function(parameters) {
initialize: function() { initialize: function() {
module.debug('Initializing dropdown', settings); module.debug('Initializing dropdown', settings);
module.setup.layout(); module.setup.layout();
module.save.defaults(); module.save.defaults();
module.set.selected(); module.set.selected();
@ -96,6 +95,9 @@ $.fn.dropdown = function(parameters) {
$item $item
.off(eventNamespace) .off(eventNamespace)
; ;
$search
.off(eventNamespace)
;
$module $module
.off(eventNamespace) .off(eventNamespace)
.removeData(moduleNamespace) .removeData(moduleNamespace)
@ -145,21 +147,23 @@ $.fn.dropdown = function(parameters) {
module.debug('Dropdown initialized on a select', selectValues); module.debug('Dropdown initialized on a select', selectValues);
// see if select exists inside a dropdown // see if select exists inside a dropdown
$input = $module; $input = $module;
if($input.parents(selector.dropdown).size() > 0) {
if($module.closest(className.dropdown) > 0) {
module.debug('Creating dropdown menu only from template'); module.debug('Creating dropdown menu only from template');
$module = $module.closest(className.dropdown); $module = $input.closest(selector.dropdown);
$('<div />') if($module.find('.' + className.dropdown).size() === 0) {
.addClass(className.menu) $('<div />')
.html( settings.templates.menu( selectValues )) .addClass(className.menu)
.appendTo($module) .html( settings.templates.menu( selectValues ))
; .appendTo($module)
;
}
} }
else { else {
module.debug('Creating entire dropdown from template'); module.debug('Creating entire dropdown from template');
$module = $('<div />') $module = $('<div />')
.attr('class', $input.attr('class') ) .attr('class', $input.attr('class') )
.addClass(className.selection) .addClass(className.selection)
.addClass(className.dropdown)
.html( settings.templates.dropdown(selectValues) ) .html( settings.templates.dropdown(selectValues) )
.insertBefore($input) .insertBefore($input)
; ;
@ -725,9 +729,11 @@ $.fn.dropdown = function(parameters) {
} }
else { else {
if( optionValue == value ) { if( optionValue == value ) {
module.verbose('Found select item by value', optionValue, value);
$selectedItem = $(this); $selectedItem = $(this);
} }
else if( !$selectedItem && optionText == value ) { else if( !$selectedItem && optionText == value ) {
module.verbose('Found select item by text', optionText, value);
$selectedItem = $(this); $selectedItem = $(this);
} }
} }
@ -1329,11 +1335,12 @@ $.fn.dropdown.settings = {
}, },
selector : { selector : {
text : '> .text:not(.icon)', dropdown : '.ui.dropdown',
input : '> input[type="hidden"], > select', text : '> .text:not(.icon)',
search : '> .search', input : '> input[type="hidden"], > select',
menu : '.menu', search : '> .search, .menu > .search',
item : '.item' menu : '.menu',
item : '.item'
}, },
className : { className : {
@ -1358,7 +1365,6 @@ $.fn.dropdown.settings.templates = {
values = select.values || {}, values = select.values || {},
html = '' html = ''
; ;
html += '<div class="menu">';
$.each(select.values, function(value, name) { $.each(select.values, function(value, name) {
if(value === name) { if(value === name) {
html += '<div class="item">' + name + '</div>'; html += '<div class="item">' + name + '</div>';

13
build/less/definitions/modules/dropdown.less

@ -67,6 +67,15 @@
will-change: transform, opacity; will-change: transform, opacity;
} }
/*--------------
Hidden Input
---------------*/
.ui.dropdown > input[type="hidden"],
.ui.dropdown > select {
display: none !important;
}
/*-------------- /*--------------
Dropdown Icon Dropdown Icon
---------------*/ ---------------*/
@ -264,10 +273,6 @@ select.ui.dropdown {
margin: 0em; margin: 0em;
visibility: hidden; visibility: hidden;
} }
.ui.selection.dropdown > input[type="hidden"],
.ui.selection.dropdown > select {
display: none !important;
}
.ui.selection.dropdown > .text { .ui.selection.dropdown > .text {
margin-right: @selectionTextIconDistance; margin-right: @selectionTextIconDistance;
} }

1
build/less/themes/packages/default/collections/grid.variables

@ -90,4 +90,3 @@
@stackableMobileBorder: 1px solid @borderColor; @stackableMobileBorder: 1px solid @borderColor;
@stackableInvertedMobileBorder: 1px solid @whiteBorderColor; @stackableInvertedMobileBorder: 1px solid @whiteBorderColor;
@doublingRowSpacing: @rowSpacing;

3
build/less/themes/packages/default/elements/button.variables

@ -18,6 +18,7 @@
@borderRadius: 0.25em; @borderRadius: 0.25em;
@borderBoxShadowColor: transparent; @borderBoxShadowColor: transparent;
@borderBoxShadowWidth: 1px; @borderBoxShadowWidth: 1px;
@verticalAlign: baseline;
/* Shadow */ /* Shadow */
@shadowDistance: 0em; @shadowDistance: 0em;
@ -113,7 +114,7 @@
@activeHoverColor: @selectedTextColor; @activeHoverColor: @selectedTextColor;
/* Loading */ /* Loading */
@loadingBackgroundColor: #FFFFFF; @loadingBackground: rgba(0, 0, 0, 0.04);
/*------------------- /*-------------------
Types Types

6
build/less/themes/packages/raised/elements/button.overrides

@ -1,3 +1,9 @@
/******************************* /*******************************
Overrides Overrides
*******************************/ *******************************/
.ui.button.active:not(.basic),
.ui.button:active {
padding-top: @verticalPadding + (@shadowOffset / 2);
padding-bottom: @verticalPadding + (@shadowOffset / 2);
}

15
build/less/themes/packages/raised/elements/button.variables

@ -7,12 +7,21 @@
--------------------*/ --------------------*/
/* Shadow */ /* Shadow */
@verticalAlign: middle;
@backgroundColor: #F8F8F8; @backgroundColor: #F8F8F8;
@backgroundImage: linear-gradient(transparent, rgba(0, 0, 0, 0.05)); @backgroundImage: linear-gradient(transparent, rgba(0, 0, 0, 0.05));
@shadowDistance: 0.25em; @shadowDistance: 0.3em;
@borderBoxShadowColor: @borderColor; @borderBoxShadowColor: @borderColor;
@verticalPadding: 0.9em; @verticalPadding: 1em;
@horizontalPadding: 2em; @horizontalPadding: 2em;
@borderRadius: 0.4em; @borderRadius: 0.4em;
/* transitions */
@transition:
opacity @transitionDuration @transitionEasing,
background-color @transitionDuration @transitionEasing,
box-shadow @transitionDuration @transitionEasing,
color @transitionDuration @transitionEasing,
background @transitionDuration @transitionEasing
;

2
build/minified/definitions/collections/breadcrumb.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.breadcrumb{margin:1em 0;display:inline-block;vertical-align:middle}.ui.breadcrumb:first-child{margin-top:0}.ui.breadcrumb:last-child{margin-bottom:0}.ui.breadcrumb .divider{display:inline-block;opacity:.5;margin:0 .2rem;font-size:.9em;color:rgba(0,0,0,.4);vertical-align:baseline}.ui.breadcrumb a{color:#009fda}.ui.breadcrumb a:hover{color:#00b2f3}.ui.breadcrumb .icon.divider{font-size:.7em;vertical-align:middle}.ui.breadcrumb a.section{cursor:pointer}.ui.breadcrumb .section{display:inline-block;margin:0;padding:0}.ui.breadcrumb.segment{display:inline-block;padding:.5em 1em}.ui.breadcrumb .active.section{font-weight:700}.ui.mini.breadcrumb{font-size:.65em}.ui.tiny.breadcrumb{font-size:.7em}.ui.small.breadcrumb{font-size:.75em}.ui.breadcrumb{font-size:1em}.ui.large.breadcrumb{font-size:1.1em}.ui.big.breadcrumb{font-size:1.05em}.ui.huge.breadcrumb{font-size:1.3em}.ui.massive.breadcrumb{font-size:1.5em} .ui.breadcrumb{margin:1em 0;display:inline-block;vertical-align:middle}.ui.breadcrumb:first-child{margin-top:0}.ui.breadcrumb:last-child{margin-bottom:0}.ui.breadcrumb .divider{display:inline-block;opacity:.5;margin:0 .2rem;font-size:.9em;color:rgba(0,0,0,.4);vertical-align:baseline}.ui.breadcrumb a{color:#009fda}.ui.breadcrumb a:hover{color:#00b2f3}.ui.breadcrumb .icon.divider{font-size:.7em;vertical-align:middle}.ui.breadcrumb a.section{cursor:pointer}.ui.breadcrumb .section{display:inline-block;margin:0;padding:0}.ui.breadcrumb.segment{display:inline-block;padding:.5em 1em}.ui.breadcrumb .active.section{font-weight:700}.ui.mini.breadcrumb{font-size:.65em}.ui.tiny.breadcrumb{font-size:.7em}.ui.small.breadcrumb{font-size:.75em}.ui.breadcrumb{font-size:1em}.ui.large.breadcrumb{font-size:1.1em}.ui.big.breadcrumb{font-size:1.05em}.ui.huge.breadcrumb{font-size:1.3em}.ui.massive.breadcrumb{font-size:1.5em}

2
build/minified/definitions/collections/form.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/collections/grid.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/collections/menu.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/collections/message.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.message{position:relative;min-height:1em;margin:1em 0;background:#efefef;padding:1em 1.5em;line-height:1.3;color:rgba(0,0,0,.8);-webkit-transition:opacity .2s ease,color .2s ease,background .2s ease,box-shadow .2s ease;transition:opacity .2s ease,color .2s ease,background .2s ease,box-shadow .2s ease;border-radius:.25em;box-shadow:0 0 0 1px rgba(0,0,0,.15) inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.message:first-child{margin-top:0}.ui.message:last-child{margin-bottom:0}.ui.message .header{display:block;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.1rem;font-weight:700;margin:0}.ui.message p{opacity:.85;margin:.75em 0}.ui.message p:first-child{margin-top:0}.ui.message p:last-child{margin-bottom:0}.ui.message .header+p{margin-top:.25em}.ui.message ul.list{opacity:.85;list-style-position:inside;margin:.5em 0 0;padding:0}.ui.message ul.list:first-child{margin-top:0}.ui.message ul.list:last-child{margin-bottom:0}.ui.message ul.list li{position:relative;list-style-type:none;margin:0 0 .3em 1em;padding:0}.ui.message ul.list li:before{position:absolute;content:'•';left:-1em;height:100%;vertical-align:baseline}.ui.message ul.list li:last-child{margin-bottom:0}.ui.message>.icon{margin-right:.6em}.ui.message>.close.icon{cursor:pointer;position:absolute;margin:0;top:1em;right:.5em;opacity:.7;-webkit-transition:opacity .1s linear;transition:opacity .1s linear}.ui.message>.close.icon:hover{opacity:1}.ui.message>:first-child{margin-top:0}.ui.message>:last-child{margin-bottom:0}.ui.header.visible,.ui.message.visible{display:block!important}.ui.header.hidden,.ui.message.hidden{display:none}.ui.compact.message{display:inline-block}.ui.attached.message{margin-bottom:-1px;border-radius:.25em .25em 0 0;box-shadow:0 0 0 1px rgba(0,0,0,.1) inset;margin-left:-1px;margin-right:-1px}.ui.attached+.ui.attached.message:not(.top):not(.bottom){margin-top:-1px;border-radius:0}.ui.bottom.attached.message{margin-top:-1px;border-radius:0 0 .25em .25em;box-shadow:0 0 0 1px rgba(0,0,0,.1) inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.bottom.attached.message:not(:last-child){margin-bottom:1em}.ui.attached.icon.message{display:block;width:auto}.ui.icon.message{display:table;width:100%}.ui.icon.message>.icon:not(.close){display:table-cell;vertical-align:middle;font-size:3em;opacity:.8;width:1em}.ui.icon.message>.content{display:table-cell;vertical-align:middle}.ui.icon.message .icon:not(.close)+.content{padding-left:1.5rem}.ui.icon.message .circular.icon+.content{padding-left:2em}.ui.floating.message{box-shadow:0 1px 4px 0 rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.15) inset}.ui.positive.message{background-color:#e4f5dd;color:#3c763d}.ui.attached.positive.message,.ui.positive.message{box-shadow:0 0 0 1px #b7caa7 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.positive.message .header{color:#336534}.ui.negative.message{background-color:#fae8e8;color:#a94442}.ui.attached.negative.message,.ui.negative.message{box-shadow:0 0 0 1px #dbb1b1 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.negative.message .header{color:#973d3b}.ui.info.message{background-color:#e5f6fb;color:#337b92}.ui.attached.info.message,.ui.info.message{box-shadow:0 0 0 1px #aad6df inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.info.message .header{color:#2c6b7f}.ui.warning.message{background-color:#fcf8e3;color:#8a6d3b}.ui.attached.warning.message,.ui.warning.message{box-shadow:0 0 0 1px #d3c4a5 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.warning.message .header{color:#785f33}.ui.error.message{background-color:#fae8e8;color:#a94442}.ui.attached.error.message,.ui.error.message{box-shadow:0 0 0 1px #dbb1b1 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.error.message .header{color:#973d3b}.ui.success.message{background-color:#e4f5dd;color:#3c763d}.ui.attached.success.message,.ui.success.message{box-shadow:0 0 0 1px #b7caa7 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.success.message .header{color:#336534}.ui.black.message,.ui.inverted.message{background-color:#1b1c1d;color:#fff}.ui.blue.message{background-color:#d3e4f3;color:#3b83c0}.ui.blue.message .header{color:#3576ac}.ui.green.message{background-color:#def2e0;color:#1ebc30}.ui.green.message .header{color:#1aa62a}.ui.orange.message{background-color:#f7e5d6;color:#e07b53}.ui.orange.message .header{color:#dc6a3d}.ui.pink.message{background-color:#f9cee6;color:#d9499a}.ui.pink.message .header{color:#d5348e}.ui.purple.message{background-color:#e0ddf5;color:#564f8a}.ui.purple.message .header{color:#4c467a}.ui.red.message{background-color:#f8d5d3;color:#d95c5c}.ui.red.message .header{color:#d44747}.ui.teal.message{background-color:#d2f5f5;color:#10a3a3}.ui.teal.message .header{color:#0e8c8c}.ui.yellow.message{background-color:#fcf5d8;color:#b58105}.ui.yellow.message .header{color:#9c6f04}.ui.small.message{font-size:.875em}.ui.message{font-size:1em}.ui.large.message{font-size:1.125em}.ui.huge.message{font-size:1.5em}.ui.massive.message{font-size:2em} .ui.message{position:relative;min-height:1em;margin:1em 0;background:#efefef;padding:1em 1.5em;line-height:1.3;color:rgba(0,0,0,.8);-webkit-transition:opacity .2s ease,color .2s ease,background .2s ease,box-shadow .2s ease;transition:opacity .2s ease,color .2s ease,background .2s ease,box-shadow .2s ease;border-radius:.25em;box-shadow:0 0 0 1px rgba(0,0,0,.15) inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.message:first-child{margin-top:0}.ui.message:last-child{margin-bottom:0}.ui.message .header{display:block;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.1rem;font-weight:700;margin:0}.ui.message p{opacity:.85;margin:.75em 0}.ui.message p:first-child{margin-top:0}.ui.message p:last-child{margin-bottom:0}.ui.message .header+p{margin-top:.25em}.ui.message ul.list{opacity:.85;list-style-position:inside;margin:.5em 0 0;padding:0}.ui.message ul.list:first-child{margin-top:0}.ui.message ul.list:last-child{margin-bottom:0}.ui.message ul.list li{position:relative;list-style-type:none;margin:0 0 .3em 1em;padding:0}.ui.message ul.list li:before{position:absolute;content:'•';left:-1em;height:100%;vertical-align:baseline}.ui.message ul.list li:last-child{margin-bottom:0}.ui.message>.icon{margin-right:.6em}.ui.message>.close.icon{cursor:pointer;position:absolute;margin:0;top:1em;right:.5em;opacity:.7;-webkit-transition:opacity .1s linear;transition:opacity .1s linear}.ui.message>.close.icon:hover{opacity:1}.ui.message>:first-child{margin-top:0}.ui.message>:last-child{margin-bottom:0}.ui.header.visible,.ui.message.visible{display:block!important}.ui.header.hidden,.ui.message.hidden{display:none}.ui.compact.message{display:inline-block}.ui.attached.message{margin-bottom:-1px;border-radius:.25em .25em 0 0;box-shadow:0 0 0 1px rgba(0,0,0,.1) inset;margin-left:-1px;margin-right:-1px}.ui.attached+.ui.attached.message:not(.top):not(.bottom){margin-top:-1px;border-radius:0}.ui.bottom.attached.message{margin-top:-1px;border-radius:0 0 .25em .25em;box-shadow:0 0 0 1px rgba(0,0,0,.1) inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.bottom.attached.message:not(:last-child){margin-bottom:1em}.ui.attached.icon.message{display:block;width:auto}.ui.icon.message{display:table;width:100%}.ui.icon.message>.icon:not(.close){display:table-cell;vertical-align:middle;font-size:3em;opacity:.8;width:1em}.ui.icon.message>.content{display:table-cell;vertical-align:middle}.ui.icon.message .icon:not(.close)+.content{padding-left:1.5rem}.ui.icon.message .circular.icon+.content{padding-left:2em}.ui.floating.message{box-shadow:0 1px 4px 0 rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.15) inset}.ui.positive.message{background-color:#e4f5dd;color:#3c763d}.ui.attached.positive.message,.ui.positive.message{box-shadow:0 0 0 1px #b7caa7 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.positive.message .header{color:#336534}.ui.negative.message{background-color:#fae8e8;color:#a94442}.ui.attached.negative.message,.ui.negative.message{box-shadow:0 0 0 1px #dbb1b1 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.negative.message .header{color:#973d3b}.ui.info.message{background-color:#e5f6fb;color:#337b92}.ui.attached.info.message,.ui.info.message{box-shadow:0 0 0 1px #aad6df inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.info.message .header{color:#2c6b7f}.ui.warning.message{background-color:#fcf8e3;color:#8a6d3b}.ui.attached.warning.message,.ui.warning.message{box-shadow:0 0 0 1px #d3c4a5 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.warning.message .header{color:#785f33}.ui.error.message{background-color:#fae8e8;color:#a94442}.ui.attached.error.message,.ui.error.message{box-shadow:0 0 0 1px #dbb1b1 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.error.message .header{color:#973d3b}.ui.success.message{background-color:#e4f5dd;color:#3c763d}.ui.attached.success.message,.ui.success.message{box-shadow:0 0 0 1px #b7caa7 inset,0 1px 2px 0 rgba(0,0,0,.05)}.ui.success.message .header{color:#336534}.ui.black.message,.ui.inverted.message{background-color:#1b1c1d;color:#fff}.ui.blue.message{background-color:#d3e4f3;color:#3b83c0}.ui.blue.message .header{color:#3576ac}.ui.green.message{background-color:#def2e0;color:#1ebc30}.ui.green.message .header{color:#1aa62a}.ui.orange.message{background-color:#f7e5d6;color:#e07b53}.ui.orange.message .header{color:#dc6a3d}.ui.pink.message{background-color:#f9cee6;color:#d9499a}.ui.pink.message .header{color:#d5348e}.ui.purple.message{background-color:#e0ddf5;color:#564f8a}.ui.purple.message .header{color:#4c467a}.ui.red.message{background-color:#f8d5d3;color:#d95c5c}.ui.red.message .header{color:#d44747}.ui.teal.message{background-color:#d2f5f5;color:#10a3a3}.ui.teal.message .header{color:#0e8c8c}.ui.yellow.message{background-color:#fcf5d8;color:#b58105}.ui.yellow.message .header{color:#9c6f04}.ui.small.message{font-size:.875em}.ui.message{font-size:1em}.ui.large.message{font-size:1.125em}.ui.huge.message{font-size:1.5em}.ui.massive.message{font-size:2em}

2
build/minified/definitions/collections/table.min.css

File diff suppressed because one or more lines are too long

4
build/minified/definitions/elements/button.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/elements/divider.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.divider{margin:1rem 0;line-height:1;height:0;font-weight:700;text-transform:uppercase;color:rgba(0,0,0,.85);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.ui.divider:not(.vertical):not(.horizontal){border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.2)}.ui.grid>.ui.divider{font-size:1rem}.ui.horizontal.divider{position:relative;height:auto;margin:'';overflow:hidden;line-height:1;text-align:center}.ui.horizontal.divider:after,.ui.horizontal.divider:before{position:absolute;content:'';z-index:3;width:50%;top:50%;height:0;border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.2)}.ui.horizontal.divider:before{margin-left:-51.5%}.ui.horizontal.divider:after{margin-left:1.5%}.ui.vertical.divider{position:absolute;z-index:2;top:50%;left:50%;margin:0;padding:0;width:auto;height:50%;line-height:0;text-align:center}.ui.vertical.divider:after,.ui.vertical.divider:before{position:absolute;left:50%;content:'';z-index:3;border-left:1px solid rgba(0,0,0,.1);border-right:1px solid rgba(255,255,255,.2);width:0;height:-webkit-calc(100% - 1rem);height:calc(100% - 1rem)}.ui.vertical.divider:before{top:-100%}.ui.vertical.divider:after{top:auto;bottom:0}@media only screen and (max-width:767px){.ui.grid .stackable.row .ui.vertical.divider,.ui.stackable.grid .ui.vertical.divider{position:relative;margin:1rem 0;left:0;height:auto;overflow:hidden;line-height:1;text-align:center}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:before{position:absolute;left:auto;content:'';z-index:3;width:50%;top:50%;height:0;border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.2)}.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:before{margin-left:-51.5%}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:after{margin-left:1.5%}}.ui.divider>.icon{margin:0;font-size:1rem;height:1em;vertical-align:middle}.ui.hidden.divider{border-color:transparent!important}.ui.divider.inverted,.ui.horizontal.inverted.divider,.ui.vertical.inverted.divider{color:#fff}.ui.divider.inverted,.ui.divider.inverted:after,.ui.divider.inverted:before{border-top-color:rgba(0,0,0,.15)!important;border-bottom-color:rgba(255,255,255,.15)!important;border-left-color:rgba(0,0,0,.15)!important;border-right-color:rgba(255,255,255,.15)!important}.ui.fitted.divider{margin:0}.ui.clearing.divider{clear:both}.ui.section.divider{margin-top:2rem;margin-bottom:2rem} .ui.divider{margin:1rem 0;line-height:1;height:0;font-weight:700;text-transform:uppercase;color:rgba(0,0,0,.85);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.ui.divider:not(.vertical):not(.horizontal){border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.2)}.ui.grid>.ui.divider{font-size:1rem}.ui.horizontal.divider{position:relative;height:auto;margin:'';overflow:hidden;line-height:1;text-align:center}.ui.horizontal.divider:after,.ui.horizontal.divider:before{position:absolute;content:'';z-index:3;width:50%;top:50%;height:0;border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.2)}.ui.horizontal.divider:before{margin-left:-51.5%}.ui.horizontal.divider:after{margin-left:1.5%}.ui.vertical.divider{position:absolute;z-index:2;top:50%;left:50%;margin:0;padding:0;width:auto;height:50%;line-height:0;text-align:center}.ui.vertical.divider:after,.ui.vertical.divider:before{position:absolute;left:50%;content:'';z-index:3;border-left:1px solid rgba(0,0,0,.1);border-right:1px solid rgba(255,255,255,.2);width:0;height:-webkit-calc(100% - 1rem);height:calc(100% - 1rem)}.ui.vertical.divider:before{top:-100%}.ui.vertical.divider:after{top:auto;bottom:0}@media only screen and (max-width:767px){.ui.grid .stackable.row .ui.vertical.divider,.ui.stackable.grid .ui.vertical.divider{position:relative;margin:1rem 0;left:0;height:auto;overflow:hidden;line-height:1;text-align:center}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:before{position:absolute;left:auto;content:'';z-index:3;width:50%;top:50%;height:0;border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.2)}.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:before{margin-left:-51.5%}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:after{margin-left:1.5%}}.ui.divider>.icon{margin:0;font-size:1rem;height:1em;vertical-align:middle}.ui.hidden.divider{border-color:transparent!important}.ui.divider.inverted,.ui.horizontal.inverted.divider,.ui.vertical.inverted.divider{color:#fff}.ui.divider.inverted,.ui.divider.inverted:after,.ui.divider.inverted:before{border-top-color:rgba(0,0,0,.15)!important;border-bottom-color:rgba(255,255,255,.15)!important;border-left-color:rgba(0,0,0,.15)!important;border-right-color:rgba(255,255,255,.15)!important}.ui.fitted.divider{margin:0}.ui.clearing.divider{clear:both}.ui.section.divider{margin-top:2rem;margin-bottom:2rem}

2
build/minified/definitions/elements/flag.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/elements/header.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/elements/icon.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/elements/image.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.image{position:relative;display:inline-block;vertical-align:middle;max-width:100%;background-color:transparent}img.ui.image{display:block;background:0 0}.ui.image img{display:block;max-width:100%;height:auto}.ui.disabled.image{cursor:default;opacity:.3}.ui.inline.image,.ui.inline.image img{display:inline-block}.ui.top.aligned.image,.ui.top.aligned.image img,.ui.top.aligned.images .image{display:inline-block;vertical-align:top}.ui.middle.aligned.image,.ui.middle.aligned.image img,.ui.middle.aligned.images .image{display:inline-block;vertical-align:middle}.ui.bottom.aligned.image,.ui.bottom.aligned.image img,.ui.bottom.aligned.images .image{display:inline-block;vertical-align:bottom}.ui.rounded.image,.ui.rounded.image img,.ui.rounded.images .image,.ui.rounded.images img{border-radius:.3125em}.ui.bordered.image img,.ui.bordered.images .image,.ui.bordered.images img,img.ui.bordered.image{border:1px solid rgba(0,0,0,.1)}.ui.circular.image,.ui.circular.image img,.ui.circular.images .image,.ui.circular.images img{border-radius:500rem}.ui.fluid.image,.ui.fluid.image img,.ui.fluid.images,.ui.fluid.images img{display:block;width:100%}.ui.avatar.image,.ui.avatar.image img,.ui.avatar.images .image,.ui.avatar.images img{margin-right:.25rem;display:inline-block;width:2.5em;height:2.5em;border-radius:500rem}.ui.floated.image,.ui.floated.images{float:left;margin-right:1em;margin-bottom:1em}.ui.right.floated.image,.ui.right.floated.images{float:right;margin-right:0;margin-bottom:1em;margin-left:1em}.ui.floated.image:last-child,.ui.floated.images:last-child{margin-bottom:0}.ui.centered.image,.ui.centered.images{margin-left:auto;margin-right:auto}.ui.mini.image,.ui.mini.images .image,.ui.mini.images img{width:20px;font-size:.7em}.ui.tiny.image,.ui.tiny.images .image,.ui.tiny.images img{width:80px;font-size:.8em}.ui.small.image,.ui.small.images .image,.ui.small.images img{width:150px;font-size:.875em}.ui.medium.image,.ui.medium.images .image,.ui.medium.images img{width:300px;font-size:1em}.ui.large.image,.ui.large.images .image,.ui.large.images img{width:450px;font-size:1.125em}.ui.big.image,.ui.big.images .image,.ui.big.images img{width:600px;font-size:1.25em}.ui.huge.image,.ui.huge.images .image,.ui.huge.images img{width:800px;font-size:1.375em}.ui.massive.image,.ui.massive.images .image,.ui.massive.images img{width:960px;font-size:1.5em}.ui.images{font-size:0;margin:0 -.25rem}.ui.images .image,.ui.images img{display:inline-block;margin:0 .25rem .5rem} .ui.image{position:relative;display:inline-block;vertical-align:middle;max-width:100%;background-color:transparent}img.ui.image{display:block;background:0 0}.ui.image img{display:block;max-width:100%;height:auto}.ui.disabled.image{cursor:default;opacity:.3}.ui.inline.image,.ui.inline.image img{display:inline-block}.ui.top.aligned.image,.ui.top.aligned.image img,.ui.top.aligned.images .image{display:inline-block;vertical-align:top}.ui.middle.aligned.image,.ui.middle.aligned.image img,.ui.middle.aligned.images .image{display:inline-block;vertical-align:middle}.ui.bottom.aligned.image,.ui.bottom.aligned.image img,.ui.bottom.aligned.images .image{display:inline-block;vertical-align:bottom}.ui.rounded.image,.ui.rounded.image img,.ui.rounded.images .image,.ui.rounded.images img{border-radius:.3125em}.ui.bordered.image img,.ui.bordered.images .image,.ui.bordered.images img,img.ui.bordered.image{border:1px solid rgba(0,0,0,.1)}.ui.circular.image,.ui.circular.image img,.ui.circular.images .image,.ui.circular.images img{border-radius:500rem}.ui.fluid.image,.ui.fluid.image img,.ui.fluid.images,.ui.fluid.images img{display:block;width:100%}.ui.avatar.image,.ui.avatar.image img,.ui.avatar.images .image,.ui.avatar.images img{margin-right:.25rem;display:inline-block;width:2.5em;height:2.5em;border-radius:500rem}.ui.floated.image,.ui.floated.images{float:left;margin-right:1em;margin-bottom:1em}.ui.right.floated.image,.ui.right.floated.images{float:right;margin-right:0;margin-bottom:1em;margin-left:1em}.ui.floated.image:last-child,.ui.floated.images:last-child{margin-bottom:0}.ui.centered.image,.ui.centered.images{margin-left:auto;margin-right:auto}.ui.mini.image,.ui.mini.images .image,.ui.mini.images img{width:20px;font-size:.7em}.ui.tiny.image,.ui.tiny.images .image,.ui.tiny.images img{width:80px;font-size:.8em}.ui.small.image,.ui.small.images .image,.ui.small.images img{width:150px;font-size:.875em}.ui.medium.image,.ui.medium.images .image,.ui.medium.images img{width:300px;font-size:1em}.ui.large.image,.ui.large.images .image,.ui.large.images img{width:450px;font-size:1.125em}.ui.big.image,.ui.big.images .image,.ui.big.images img{width:600px;font-size:1.25em}.ui.huge.image,.ui.huge.images .image,.ui.huge.images img{width:800px;font-size:1.375em}.ui.massive.image,.ui.massive.images .image,.ui.massive.images img{width:960px;font-size:1.5em}.ui.images{font-size:0;margin:0 -.25rem}.ui.images .image,.ui.images img{display:inline-block;margin:0 .25rem .5rem}

2
build/minified/definitions/elements/input.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.input{display:inline-block;position:relative;color:rgba(0,0,0,.8)}.ui.input input{margin:0;width:100%;outline:0;line-height:1.2em;font-family:"Helvetica Neue",Helvetica,Arial;padding:.7em 1em;background:#fff;border:1px solid rgba(0,0,0,.15);color:rgba(0,0,0,.8);border-radius:.325em;-webkit-transition:background-color .3s ease-out,box-shadow .2s ease,border-color .2s ease;transition:background-color .3s ease-out,box-shadow .2s ease,border-color .2s ease;box-shadow:none;box-sizing:border-box;-webkit-tap-highlight-color:rgba(255,255,255,0)}.ui.input input::-webkit-input-placeholder{color:rgba(0,0,0,.4)}.ui.input input::-moz-placeholder{color:rgba(0,0,0,.4)}.ui.input input:active,.ui.input.down input{border-color:rgba(0,0,0,.3);background:#fafafa;color:rgba(0,0,0,.8);box-shadow:none}.ui.loading.input>.icon{background:url(../../themes/packages/default/assets/images/loader-mini.gif) 50% 50% no-repeat}.ui.loading.input>.icon:after,.ui.loading.input>.icon:before{display:none}.ui.input input:focus,.ui.input.focus input{border-color:rgba(0,0,0,.2);background:0 0;color:rgba(0,0,0,.8);box-shadow:none}.ui.input input:focus input::-webkit-input-placeholder,.ui.input.focus input input::-webkit-input-placeholder{color:rgba(0,0,0,.8)}.ui.input input:focus input::-moz-placeholder,.ui.input.focus input input::-moz-placeholder{color:rgba(0,0,0,.8)}.ui.input.error input{background-color:snow;border-color:#e7bebe;color:#d95c5c;box-shadow:none}.ui.input.error input ::-webkit-input-placeholder{color:rgba(255,80,80,.4)}.ui.input.error input ::-moz-placeholder{color:rgba(255,80,80,.4)}.ui.input.error input :focus::-webkit-input-placeholder{color:rgba(255,80,80,.7)}.ui.input.error input :focus::-moz-placeholder{color:rgba(255,80,80,.7)}.ui.transparent.input input{border-color:transparent;background-color:transparent;padding:0}.ui.icon.input>.icon{cursor:default;position:absolute;opacity:.5;top:0;right:0;margin:0;width:2.85em;height:100%;text-align:center;border-radius:0 .325em .325em 0;box-sizing:border-box;-webkit-transition:opacity .3s ease;transition:opacity .3s ease}.ui.icon.input>.icon:after,.ui.icon.input>.icon:before{left:0;position:absolute;text-align:center;top:50%;width:100%;margin-top:-.5em}.ui.icon.input>.link.icon{cursor:pointer}.ui.icon.input input{padding-right:2.85em!important}.ui.icon.input>.circular.icon{top:.35em;right:.5em}.ui.left.icon.input>.icon{right:auto;left:1px;border-radius:.325em 0 0 .325em}.ui.left.icon.input>.circular.icon{right:auto;left:.5em}.ui.left.icon.input>input{padding-left:2.85em!important;padding-right:1em!important}.ui.transparent.icon.input>.icon{width:1.25em}.ui.transparent.icon.input>input{padding-left:0!important;padding-right:1.75em!important}.ui.transparent.left.icon.input>input{padding-left:1.75em!important}.ui.icon.input>input:focus~.icon{opacity:1}.ui.labeled.input .corner.label{top:1px;right:1px;font-size:.75em;border-radius:0 .325em 0 0}.ui.labeled.input input{padding-right:2.5em!important}.ui.labeled.icon.input:not(.left)>input{padding-right:3.25em!important}.ui.labeled.icon.input:not(.left)>.icon{margin-right:1.25em}.ui.action.input{display:table}.ui.action.input>input{display:table-cell;border-top-right-radius:0!important;border-bottom-right-radius:0!important;border-right:none}.ui.action.input>.button,.ui.action.input>.buttons{display:table-cell;border-top-left-radius:0;border-bottom-left-radius:0;white-space:nowrap}.ui.action.input>.button>.icon,.ui.action.input>.buttons>.button>.icon{display:inline;vertical-align:top}.ui.fluid.action.input{display:table;width:100%}.ui.fluid.action.input>.button{width:.01%}.ui.fluid.input{display:block}.ui.mini.input{font-size:.8125em}.ui.small.input{font-size:.875em}.ui.input{font-size:1em}.ui.large.input{font-size:1.125em}.ui.big.input{font-size:1.25em}.ui.huge.input{font-size:1.375em}.ui.massive.input{font-size:1.5rem} .ui.input{display:inline-block;position:relative;color:rgba(0,0,0,.8)}.ui.input input{margin:0;width:100%;outline:0;line-height:1.2em;font-family:"Helvetica Neue",Helvetica,Arial;padding:.7em 1em;background:#fff;border:1px solid rgba(0,0,0,.15);color:rgba(0,0,0,.8);border-radius:.325em;-webkit-transition:background-color .3s ease-out,box-shadow .2s ease,border-color .2s ease;transition:background-color .3s ease-out,box-shadow .2s ease,border-color .2s ease;box-shadow:none;box-sizing:border-box;-webkit-tap-highlight-color:rgba(255,255,255,0)}.ui.input input::-webkit-input-placeholder{color:rgba(0,0,0,.4)}.ui.input input::-moz-placeholder{color:rgba(0,0,0,.4)}.ui.input input:active,.ui.input.down input{border-color:rgba(0,0,0,.3);background:#fafafa;color:rgba(0,0,0,.8);box-shadow:none}.ui.loading.input>.icon{background:url(../../themes/packages/default/assets/images/loader-mini.gif) 50% 50% no-repeat}.ui.loading.input>.icon:after,.ui.loading.input>.icon:before{display:none}.ui.input input:focus,.ui.input.focus input{border-color:rgba(0,0,0,.2);background:0 0;color:rgba(0,0,0,.8);box-shadow:none}.ui.input input:focus input::-webkit-input-placeholder,.ui.input.focus input input::-webkit-input-placeholder{color:rgba(0,0,0,.8)}.ui.input input:focus input::-moz-placeholder,.ui.input.focus input input::-moz-placeholder{color:rgba(0,0,0,.8)}.ui.input.error input{background-color:snow;border-color:#e7bebe;color:#d95c5c;box-shadow:none}.ui.input.error input ::-webkit-input-placeholder{color:rgba(255,80,80,.4)}.ui.input.error input ::-moz-placeholder{color:rgba(255,80,80,.4)}.ui.input.error input :focus::-webkit-input-placeholder{color:rgba(255,80,80,.7)}.ui.input.error input :focus::-moz-placeholder{color:rgba(255,80,80,.7)}.ui.transparent.input input{border-color:transparent;background-color:transparent;padding:0}.ui.icon.input>.icon{cursor:default;position:absolute;opacity:.5;top:0;right:0;margin:0;width:2.85em;height:100%;text-align:center;border-radius:0 .325em .325em 0;box-sizing:border-box;-webkit-transition:opacity .3s ease;transition:opacity .3s ease}.ui.icon.input>.icon:after,.ui.icon.input>.icon:before{left:0;position:absolute;text-align:center;top:50%;width:100%;margin-top:-.5em}.ui.icon.input>.link.icon{cursor:pointer}.ui.icon.input input{padding-right:2.85em!important}.ui.icon.input>.circular.icon{top:.35em;right:.5em}.ui.left.icon.input>.icon{right:auto;left:1px;border-radius:.325em 0 0 .325em}.ui.left.icon.input>.circular.icon{right:auto;left:.5em}.ui.left.icon.input>input{padding-left:2.85em!important;padding-right:1em!important}.ui.transparent.icon.input>.icon{width:1.25em}.ui.transparent.icon.input>input{padding-left:0!important;padding-right:1.75em!important}.ui.transparent.left.icon.input>input{padding-left:1.75em!important}.ui.icon.input>input:focus~.icon{opacity:1}.ui.labeled.input .corner.label{top:1px;right:1px;font-size:.75em;border-radius:0 .325em 0 0}.ui.labeled.input input{padding-right:2.5em!important}.ui.labeled.icon.input:not(.left)>input{padding-right:3.25em!important}.ui.labeled.icon.input:not(.left)>.icon{margin-right:1.25em}.ui.action.input{display:table}.ui.action.input>input{display:table-cell;border-top-right-radius:0!important;border-bottom-right-radius:0!important;border-right:none}.ui.action.input>.button,.ui.action.input>.buttons{display:table-cell;border-top-left-radius:0;border-bottom-left-radius:0;white-space:nowrap}.ui.action.input>.button>.icon,.ui.action.input>.buttons>.button>.icon{display:inline;vertical-align:top}.ui.fluid.action.input{display:table;width:100%}.ui.fluid.action.input>.button{width:.01%}.ui.fluid.input{display:block}.ui.mini.input{font-size:.8125em}.ui.small.input{font-size:.875em}.ui.input{font-size:1em}.ui.large.input{font-size:1.125em}.ui.big.input{font-size:1.25em}.ui.huge.input{font-size:1.375em}.ui.massive.input{font-size:1.5rem}

2
build/minified/definitions/elements/label.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/elements/list.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/elements/loader.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.loader{display:none;position:absolute;top:50%;left:50%;margin:0;text-align:center;z-index:1000;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}.ui.dimmer .loader{display:block}.ui.dimmer .ui.loader,.ui.inverted.loader{color:#fff}.ui.flipping.loader{width:auto;height:auto;background-image:none!important}.ui.flipping.loader .shape{position:relative;margin:0 auto 1em;color:transparent;box-shadow:0 0 0 1px;-webkit-animation:loaderFlipping 1s infinite ease;animation:loaderFlipping 1s infinite ease;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.ui.flipping.loader .shape:after,.ui.flipping.loader .shape:before{position:absolute;content:'';top:0;left:0;box-shadow:0 0 0 1px;-webkit-backface-visibility:hidden;backface-visibility:hidden}.ui.flipping.loader .shape:before{background-color:#3b83c0;-webkit-transform:rotateY(0deg);transform:rotateY(0deg);z-index:2}.ui.flipping.loader .shape:after{background-color:#1b1c1d;-webkit-transform:rotateY(180deg);transform:rotateY(180deg)}.ui.flipping.circular.loader .shape,.ui.flipping.circular.loader .shape:after,.ui.flipping.circular.loader .shape:before{border-radius:500rem}.ui.mini.flipping.loader .shape,.ui.mini.flipping.loader .shape:after,.ui.mini.flipping.loader .shape:before{width:16px;height:16px}.ui.flipping.loader .shape,.ui.flipping.loader .shape:after,.ui.flipping.loader .shape:before{width:32px;height:32px}@-webkit-keyframes loaderFlipping{0%{-webkit-transform:perspective(6em) rotateX(0deg) rotateY(0deg);transform:perspective(6em) rotateX(0deg) rotateY(0deg)}50%{-webkit-transform:perspective(6em) rotateX(0deg) rotateY(-180deg);transform:perspective(6em) rotateX(0deg) rotateY(-180deg)}100%{-webkit-transform:perspective(6em) rotateX(0deg) rotateY(-360deg);transform:perspective(6em) rotateX(0deg) rotateY(-360deg)}}@keyframes loaderFlipping{0%{-webkit-transform:perspective(6em) rotateX(0deg) rotateY(0deg);transform:perspective(6em) rotateX(0deg) rotateY(0deg)}50%{-webkit-transform:perspective(6em) rotateX(0deg) rotateY(-180deg);transform:perspective(6em) rotateX(0deg) rotateY(-180deg)}100%{-webkit-transform:perspective(6em) rotateX(0deg) rotateY(-360deg);transform:perspective(6em) rotateX(0deg) rotateY(-360deg)}}.ui.text.loader{width:auto!important;height:auto!important;text-align:center;font-style:normal}.ui.mini.text.loader{min-width:16px;padding-top:31px}.ui.small.text.loader{min-width:24px;padding-top:39px}.ui.text.loader{min-width:32px;padding-top:47px}.ui.large.text.loader{min-width:64px;padding-top:79px}.ui.loader.active,.ui.loader.visible{display:block}.ui.loader.disabled,.ui.loader.hidden{display:none}.ui.inverted.dimmer .ui.mini.loader,.ui.mini.loader{width:16px;height:16px;font-size:.8em;background-image:url(../../themes/packages/default/assets/images/loader-mini.gif)}.ui.inverted.dimmer .ui.small.loader,.ui.small.loader{width:24px;height:24px;font-size:.875em;background-image:url(../../themes/packages/default/assets/images/loader-small.gif)}.ui.inverted.dimmer .ui.loader,.ui.loader{width:32px;height:32px;font-size:1em;background:url(../../themes/packages/default/assets/images/loader-medium.gif) 50% 0 no-repeat}.ui.inverted.dimmer .ui.loader.large,.ui.loader.large{width:64px;height:64px;font-size:1.2em;background-image:url(../../themes/packages/default/assets/images/loader-large.gif)}.ui.inverted.dimmer .ui.loader{color:rgba(0,0,0,.8)}.ui.dimmer .mini.ui.loader,.ui.inverted .mini.ui.loader{background-image:url(../../themes/packages/default/assets/images/loader-mini-inverted.gif)}.ui.dimmer .small.ui.loader,.ui.inverted .small.ui.loader{background-image:url(../../themes/packages/default/assets/images/loader-small-inverted.gif)}.ui.dimmer .ui.loader,.ui.inverted.loader{background-image:url(../../themes/packages/default/assets/images/loader-medium-inverted.gif)}.ui.dimmer .large.ui.loader,.ui.inverted .large.ui.loader{background-image:url(../../themes/packages/default/assets/images/loader-large-inverted.gif)}.ui.inline.loader{position:static;vertical-align:middle;margin:0;-webkit-transform:none;-ms-transform:none;transform:none}.ui.inline.loader.active,.ui.inline.loader.visible{display:inline-block} .ui.loader{display:none;position:absolute;top:50%;left:50%;margin:0;text-align:center;z-index:1000;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}.ui.dimmer .loader{display:block}.ui.dimmer .ui.loader,.ui.inverted.loader{color:#fff}.ui.flipping.loader{width:auto;height:auto;background-image:none!important}.ui.flipping.loader .shape{position:relative;margin:0 auto 1em;color:transparent;box-shadow:0 0 0 1px;-webkit-animation:loaderFlipping 1s infinite ease;animation:loaderFlipping 1s infinite ease;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.ui.flipping.loader .shape:after,.ui.flipping.loader .shape:before{position:absolute;content:'';top:0;left:0;box-shadow:0 0 0 1px;-webkit-backface-visibility:hidden;backface-visibility:hidden}.ui.flipping.loader .shape:before{background-color:#3b83c0;-webkit-transform:rotateY(0deg);transform:rotateY(0deg);z-index:2}.ui.flipping.loader .shape:after{background-color:#1b1c1d;-webkit-transform:rotateY(180deg);transform:rotateY(180deg)}.ui.flipping.circular.loader .shape,.ui.flipping.circular.loader .shape:after,.ui.flipping.circular.loader .shape:before{border-radius:500rem}.ui.mini.flipping.loader .shape,.ui.mini.flipping.loader .shape:after,.ui.mini.flipping.loader .shape:before{width:16px;height:16px}.ui.flipping.loader .shape,.ui.flipping.loader .shape:after,.ui.flipping.loader .shape:before{width:32px;height:32px}@-webkit-keyframes loaderFlipping{0%{-webkit-transform:perspective(6em) rotateX(0deg) rotateY(0deg);transform:perspective(6em) rotateX(0deg) rotateY(0deg)}50%{-webkit-transform:perspective(6em) rotateX(0deg) rotateY(-180deg);transform:perspective(6em) rotateX(0deg) rotateY(-180deg)}100%{-webkit-transform:perspective(6em) rotateX(0deg) rotateY(-360deg);transform:perspective(6em) rotateX(0deg) rotateY(-360deg)}}@keyframes loaderFlipping{0%{-webkit-transform:perspective(6em) rotateX(0deg) rotateY(0deg);transform:perspective(6em) rotateX(0deg) rotateY(0deg)}50%{-webkit-transform:perspective(6em) rotateX(0deg) rotateY(-180deg);transform:perspective(6em) rotateX(0deg) rotateY(-180deg)}100%{-webkit-transform:perspective(6em) rotateX(0deg) rotateY(-360deg);transform:perspective(6em) rotateX(0deg) rotateY(-360deg)}}.ui.text.loader{width:auto!important;height:auto!important;text-align:center;font-style:normal}.ui.mini.text.loader{min-width:16px;padding-top:31px}.ui.small.text.loader{min-width:24px;padding-top:39px}.ui.text.loader{min-width:32px;padding-top:47px}.ui.large.text.loader{min-width:64px;padding-top:79px}.ui.loader.active,.ui.loader.visible{display:block}.ui.loader.disabled,.ui.loader.hidden{display:none}.ui.inverted.dimmer .ui.mini.loader,.ui.mini.loader{width:16px;height:16px;font-size:.8em;background-image:url(../../themes/packages/default/assets/images/loader-mini.gif)}.ui.inverted.dimmer .ui.small.loader,.ui.small.loader{width:24px;height:24px;font-size:.875em;background-image:url(../../themes/packages/default/assets/images/loader-small.gif)}.ui.inverted.dimmer .ui.loader,.ui.loader{width:32px;height:32px;font-size:1em;background:url(../../themes/packages/default/assets/images/loader-medium.gif) 50% 0 no-repeat}.ui.inverted.dimmer .ui.loader.large,.ui.loader.large{width:64px;height:64px;font-size:1.2em;background-image:url(../../themes/packages/default/assets/images/loader-large.gif)}.ui.inverted.dimmer .ui.loader{color:rgba(0,0,0,.8)}.ui.dimmer .mini.ui.loader,.ui.inverted .mini.ui.loader{background-image:url(../../themes/packages/default/assets/images/loader-mini-inverted.gif)}.ui.dimmer .small.ui.loader,.ui.inverted .small.ui.loader{background-image:url(../../themes/packages/default/assets/images/loader-small-inverted.gif)}.ui.dimmer .ui.loader,.ui.inverted.loader{background-image:url(../../themes/packages/default/assets/images/loader-medium-inverted.gif)}.ui.dimmer .large.ui.loader,.ui.inverted .large.ui.loader{background-image:url(../../themes/packages/default/assets/images/loader-large-inverted.gif)}.ui.inline.loader{position:static;vertical-align:middle;margin:0;-webkit-transform:none;-ms-transform:none;transform:none}.ui.inline.loader.active,.ui.inline.loader.visible{display:inline-block}

2
build/minified/definitions/elements/progress.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.progress{border:1px solid rgba(0,0,0,.1);width:100%;height:35px;background-color:#FAFAFA;padding:5px;border-radius:.3125em}.ui.progress .bar{display:inline-block;width:0;height:100%;background-color:#CCC;border-radius:3px;-webkit-transition:width 1s ease-in-out,background-color 1s ease-out;transition:width 1s ease-in-out,background-color 1s ease-out}.ui.successful.progress .bar{background-color:#5bbd72!important}.ui.successful.progress .bar,.ui.successful.progress .bar::after{-webkit-animation:none!important;animation:none!important}.ui.warning.progress .bar{background-color:#e9bd16!important}.ui.warning.progress .bar,.ui.warning.progress .bar::after{-webkit-animation:none!important;animation:none!important}.ui.failed.progress .bar{background-color:#d95c5c!important}.ui.failed.progress .bar,.ui.failed.progress .bar::after{-webkit-animation:none!important;animation:none!important}.ui.active.progress .bar{position:relative}.ui.active.progress .bar::after{content:'';opacity:0;position:absolute;top:0;left:0;right:0;bottom:0;background:#FFF;border-radius:3px;-webkit-animation:progress-active 2s ease-out infinite;animation:progress-active 2s ease-out infinite}@-webkit-keyframes progress-active{0%{opacity:0;width:0}50%{opacity:.3}100%{opacity:0;width:100%}}@keyframes progress-active{0%{opacity:0;width:0}50%{opacity:.3}100%{opacity:0;width:100%}}.ui.disabled.progress{opacity:.35}.ui.disabled.progress .bar,.ui.disabled.progress .bar::after{-webkit-animation:none!important;animation:none!important}.ui.progress.attached{position:relative;border:none}.ui.progress.attached,.ui.progress.attached .bar{display:block;height:3px;padding:0;overflow:hidden;border-radius:0 0 .3125em .3125em}.ui.progress.attached .bar{border-radius:0}.ui.progress.top.attached,.ui.progress.top.attached .bar{top:0;border-radius:.3125em .3125em 0 0}.ui.progress.top.attached .bar{border-radius:0}.ui.blue.progress .bar{background-color:#3b83c0}.ui.black.progress .bar{background-color:#1b1c1d}.ui.green.progress .bar{background-color:#5bbd72}.ui.red.progress .bar{background-color:#d95c5c}.ui.purple.progress .bar{background-color:#564f8a}.ui.teal.progress .bar{background-color:#00b5ad}.ui.progress.striped .bar{background-size:30px 30px;background-image:-webkit-linear-gradient(315deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(135deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.ui.progress.active.striped .bar:after{-webkit-animation:none;animation:none}.ui.progress.active.striped .bar{-webkit-animation:progress-striped 3s linear infinite;animation:progress-striped 3s linear infinite}@-webkit-keyframes progress-striped{0%{background-position:0 0}100%{background-position:60px 0}}@keyframes progress-striped{0%{background-position:0 0}100%{background-position:60px 0}}.ui.small.progress .bar{height:14px} .ui.progress{border:1px solid rgba(0,0,0,.1);width:100%;height:35px;background-color:#FAFAFA;padding:5px;border-radius:.3125em}.ui.progress .bar{display:inline-block;width:0;height:100%;background-color:#CCC;border-radius:3px;-webkit-transition:width 1s ease-in-out,background-color 1s ease-out;transition:width 1s ease-in-out,background-color 1s ease-out}.ui.successful.progress .bar{background-color:#5bbd72!important}.ui.successful.progress .bar,.ui.successful.progress .bar::after{-webkit-animation:none!important;animation:none!important}.ui.warning.progress .bar{background-color:#e9bd16!important}.ui.warning.progress .bar,.ui.warning.progress .bar::after{-webkit-animation:none!important;animation:none!important}.ui.failed.progress .bar{background-color:#d95c5c!important}.ui.failed.progress .bar,.ui.failed.progress .bar::after{-webkit-animation:none!important;animation:none!important}.ui.active.progress .bar{position:relative}.ui.active.progress .bar::after{content:'';opacity:0;position:absolute;top:0;left:0;right:0;bottom:0;background:#FFF;border-radius:3px;-webkit-animation:progress-active 2s ease-out infinite;animation:progress-active 2s ease-out infinite}@-webkit-keyframes progress-active{0%{opacity:0;width:0}50%{opacity:.3}100%{opacity:0;width:100%}}@keyframes progress-active{0%{opacity:0;width:0}50%{opacity:.3}100%{opacity:0;width:100%}}.ui.disabled.progress{opacity:.35}.ui.disabled.progress .bar,.ui.disabled.progress .bar::after{-webkit-animation:none!important;animation:none!important}.ui.progress.attached{position:relative;border:none}.ui.progress.attached,.ui.progress.attached .bar{display:block;height:3px;padding:0;overflow:hidden;border-radius:0 0 .3125em .3125em}.ui.progress.attached .bar{border-radius:0}.ui.progress.top.attached,.ui.progress.top.attached .bar{top:0;border-radius:.3125em .3125em 0 0}.ui.progress.top.attached .bar{border-radius:0}.ui.blue.progress .bar{background-color:#3b83c0}.ui.black.progress .bar{background-color:#1b1c1d}.ui.green.progress .bar{background-color:#5bbd72}.ui.red.progress .bar{background-color:#d95c5c}.ui.purple.progress .bar{background-color:#564f8a}.ui.teal.progress .bar{background-color:#00b5ad}.ui.progress.striped .bar{background-size:30px 30px;background-image:-webkit-linear-gradient(315deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(135deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.ui.progress.active.striped .bar:after{-webkit-animation:none;animation:none}.ui.progress.active.striped .bar{-webkit-animation:progress-striped 3s linear infinite;animation:progress-striped 3s linear infinite}@-webkit-keyframes progress-striped{0%{background-position:0 0}100%{background-position:60px 0}}@keyframes progress-striped{0%{background-position:0 0}100%{background-position:60px 0}}.ui.small.progress .bar{height:14px}

2
build/minified/definitions/elements/rail.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.rail{position:absolute;top:0;width:300px;box-sizing:content-box}.ui.left.rail{left:auto;right:100%;padding:0 2rem 0 0;margin:0 2rem 0 0}.ui.right.rail{left:100%;right:auto;padding:0 0 0 2rem;margin:0 0 0 2rem}.ui.left.dividing.rail{padding:0 2.5rem 0 0;margin:0 2.5rem 0 0;border-right:1px solid rgba(0,0,0,.1)}.ui.right.dividing.rail{border-left:1px solid rgba(0,0,0,.1);padding:0 0 0 2.5rem;margin:0 0 0 2.5rem}.ui.close.left.rail{padding:0 1em 0 0;margin:0 1em 0 0}.ui.close.right.rail{padding:0 0 0 1em;margin:0 0 0 1em}.ui.very.close.left.rail{padding:0 .5em 0 0;margin:0 .5em 0 0}.ui.very.close.right.rail{padding:0 0 0 .5em;margin:0 0 0 .5em}.ui.rail{font-size:1em} .ui.rail{position:absolute;top:0;width:300px;box-sizing:content-box}.ui.left.rail{left:auto;right:100%;padding:0 2rem 0 0;margin:0 2rem 0 0}.ui.right.rail{left:100%;right:auto;padding:0 0 0 2rem;margin:0 0 0 2rem}.ui.left.dividing.rail{padding:0 2.5rem 0 0;margin:0 2.5rem 0 0;border-right:1px solid rgba(0,0,0,.1)}.ui.right.dividing.rail{border-left:1px solid rgba(0,0,0,.1);padding:0 0 0 2.5rem;margin:0 0 0 2.5rem}.ui.close.left.rail{padding:0 1em 0 0;margin:0 1em 0 0}.ui.close.right.rail{padding:0 0 0 1em;margin:0 0 0 1em}.ui.very.close.left.rail{padding:0 .5em 0 0;margin:0 .5em 0 0}.ui.very.close.right.rail{padding:0 0 0 .5em;margin:0 0 0 .5em}.ui.rail{font-size:1em}

2
build/minified/definitions/elements/reveal.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.reveal{display:inline-block;position:relative!important;z-index:2!important;font-size:0!important}.ui.reveal>.content{font-size:1rem!important}.ui.reveal>.visible.content{position:absolute!important;top:0!important;left:0!important;z-index:4!important;-webkit-transition:all .8s cubic-bezier(0.175,.885,.32,1) .15s;transition:all .8s cubic-bezier(0.175,.885,.32,1) .15s}.ui.reveal>.hidden.content{position:relative!important;z-index:3!important}.ui.reveal.button{overflow:hidden}.ui.slide.reveal{position:relative!important;display:block;overflow:hidden!important;white-space:nowrap}.ui.slide.reveal>.content{display:block;float:left;-ms-box-sizing:border-box;box-sizing:border-box;margin:0;-webkit-transition:top .8s cubic-bezier(0.175,.885,.32,1) .15s,left .8s cubic-bezier(0.175,.885,.32,1) .15s,right .8s cubic-bezier(0.175,.885,.32,1) .15s,bottom .8s cubic-bezier(0.175,.885,.32,1) .15s;transition:top .8s cubic-bezier(0.175,.885,.32,1) .15s,left .8s cubic-bezier(0.175,.885,.32,1) .15s,right .8s cubic-bezier(0.175,.885,.32,1) .15s,bottom .8s cubic-bezier(0.175,.885,.32,1) .15s}.ui.slide.reveal>.visible.content{position:relative!important}.ui.slide.reveal>.hidden.content{position:absolute!important;left:100%!important;width:100%!important}.ui.slide.reveal:hover>.visible.content{left:-100%!important}.ui.slide.reveal:hover>.hidden.content{left:0!important}.ui.right.slide.reveal>.visible.content{left:0}.ui.right.slide.reveal>.hidden.content{left:auto!important;right:100%!important}.ui.right.slide.reveal:hover>.visible.content{left:100%!important;right:auto!important}.ui.right.slide.reveal:hover>.hidden.content{left:auto!important;right:0!important}.ui.up.slide.reveal>.visible.content{top:0!important;left:0!important;right:auto!important;bottom:auto!important}.ui.up.slide.reveal>.hidden.content{top:100%!important;left:0!important;right:auto!important;bottom:auto!important}.ui.slide.up.reveal:hover>.visible.content{top:-100%!important;left:0!important}.ui.slide.up.reveal:hover>.hidden.content{top:0!important;left:0!important}.ui.down.slide.reveal>.visible.content{top:auto!important;right:auto!important;bottom:auto!important;bottom:0!important}.ui.down.slide.reveal>.hidden.content{top:auto!important;right:auto!important;bottom:100%!important;left:0!important}.ui.slide.down.reveal:hover>.visible.content{left:0!important;bottom:-100%!important}.ui.slide.down.reveal:hover>.hidden.content{left:0!important;bottom:0!important}.ui.fade.reveal>.visible.content{opacity:1}.ui.fade.reveal:hover>.visible.content{opacity:0}.ui.move.left.reveal>.visible.content,.ui.move.reveal>.visible.content{left:auto!important;top:auto!important;bottom:auto!important;right:0!important}.ui.move.left.reveal:hover>.visible.content,.ui.move.reveal:hover>.visible.content{right:100%!important}.ui.move.right.reveal>.visible.content{right:auto!important;top:auto!important;bottom:auto!important;left:0!important}.ui.move.right.reveal:hover>.visible.content{left:100%!important}.ui.move.up.reveal>.visible.content{right:auto!important;left:auto!important;top:auto!important;bottom:0!important}.ui.move.up.reveal:hover>.visible.content{bottom:100%!important}.ui.move.down.reveal>.visible.content{right:auto!important;left:auto!important;top:0!important;bottom:auto!important}.ui.move.down.reveal:hover>.visible.content{top:100%!important}.ui.rotate.reveal>.visible.content{-webkit-transition-duration:.8s;transition-duration:.8s;-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.ui.rotate.reveal>.visible.content,.ui.rotate.right.reveal>.visible.content{-webkit-transform-origin:bottom right;-ms-transform-origin:bottom right;transform-origin:bottom right}.ui.rotate.reveal:hover>.visible.content,.ui.rotate.right.reveal:hover>.visible.content{-webkit-transform:rotate(110deg);-ms-transform:rotate(110deg);transform:rotate(110deg)}.ui.rotate.left.reveal>.visible.content{-webkit-transform-origin:bottom left;-ms-transform-origin:bottom left;transform-origin:bottom left}.ui.rotate.left.reveal:hover>.visible.content{-webkit-transform:rotate(-110deg);-ms-transform:rotate(-110deg);transform:rotate(-110deg)}.ui.disabled.reveal{opacity:1!important}.ui.disabled.reveal>.content{-webkit-transition:none!important;transition:none!important}.ui.disabled.reveal:hover>.visible.content{position:static!important;display:block!important;opacity:1!important;top:0!important;left:0!important;right:auto!important;bottom:auto!important;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}.ui.disabled.reveal:hover>.hidden.content{display:none!important}.ui.masked.reveal{overflow:hidden}.ui.instant.reveal>.content{-webkit-transition-delay:0s!important;transition-delay:0s!important} .ui.reveal{display:inline-block;position:relative!important;z-index:2!important;font-size:0!important}.ui.reveal>.content{font-size:1rem!important}.ui.reveal>.visible.content{position:absolute!important;top:0!important;left:0!important;z-index:4!important;-webkit-transition:all .8s cubic-bezier(0.175,.885,.32,1) .15s;transition:all .8s cubic-bezier(0.175,.885,.32,1) .15s}.ui.reveal>.hidden.content{position:relative!important;z-index:3!important}.ui.reveal.button{overflow:hidden}.ui.slide.reveal{position:relative!important;display:block;overflow:hidden!important;white-space:nowrap}.ui.slide.reveal>.content{display:block;float:left;-ms-box-sizing:border-box;box-sizing:border-box;margin:0;-webkit-transition:top .8s cubic-bezier(0.175,.885,.32,1) .15s,left .8s cubic-bezier(0.175,.885,.32,1) .15s,right .8s cubic-bezier(0.175,.885,.32,1) .15s,bottom .8s cubic-bezier(0.175,.885,.32,1) .15s;transition:top .8s cubic-bezier(0.175,.885,.32,1) .15s,left .8s cubic-bezier(0.175,.885,.32,1) .15s,right .8s cubic-bezier(0.175,.885,.32,1) .15s,bottom .8s cubic-bezier(0.175,.885,.32,1) .15s}.ui.slide.reveal>.visible.content{position:relative!important}.ui.slide.reveal>.hidden.content{position:absolute!important;left:100%!important;width:100%!important}.ui.slide.reveal:hover>.visible.content{left:-100%!important}.ui.slide.reveal:hover>.hidden.content{left:0!important}.ui.right.slide.reveal>.visible.content{left:0}.ui.right.slide.reveal>.hidden.content{left:auto!important;right:100%!important}.ui.right.slide.reveal:hover>.visible.content{left:100%!important;right:auto!important}.ui.right.slide.reveal:hover>.hidden.content{left:auto!important;right:0!important}.ui.up.slide.reveal>.visible.content{top:0!important;left:0!important;right:auto!important;bottom:auto!important}.ui.up.slide.reveal>.hidden.content{top:100%!important;left:0!important;right:auto!important;bottom:auto!important}.ui.slide.up.reveal:hover>.visible.content{top:-100%!important;left:0!important}.ui.slide.up.reveal:hover>.hidden.content{top:0!important;left:0!important}.ui.down.slide.reveal>.visible.content{top:auto!important;right:auto!important;bottom:auto!important;bottom:0!important}.ui.down.slide.reveal>.hidden.content{top:auto!important;right:auto!important;bottom:100%!important;left:0!important}.ui.slide.down.reveal:hover>.visible.content{left:0!important;bottom:-100%!important}.ui.slide.down.reveal:hover>.hidden.content{left:0!important;bottom:0!important}.ui.fade.reveal>.visible.content{opacity:1}.ui.fade.reveal:hover>.visible.content{opacity:0}.ui.move.left.reveal>.visible.content,.ui.move.reveal>.visible.content{left:auto!important;top:auto!important;bottom:auto!important;right:0!important}.ui.move.left.reveal:hover>.visible.content,.ui.move.reveal:hover>.visible.content{right:100%!important}.ui.move.right.reveal>.visible.content{right:auto!important;top:auto!important;bottom:auto!important;left:0!important}.ui.move.right.reveal:hover>.visible.content{left:100%!important}.ui.move.up.reveal>.visible.content{right:auto!important;left:auto!important;top:auto!important;bottom:0!important}.ui.move.up.reveal:hover>.visible.content{bottom:100%!important}.ui.move.down.reveal>.visible.content{right:auto!important;left:auto!important;top:0!important;bottom:auto!important}.ui.move.down.reveal:hover>.visible.content{top:100%!important}.ui.rotate.reveal>.visible.content{-webkit-transition-duration:.8s;transition-duration:.8s;-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.ui.rotate.reveal>.visible.content,.ui.rotate.right.reveal>.visible.content{-webkit-transform-origin:bottom right;-ms-transform-origin:bottom right;transform-origin:bottom right}.ui.rotate.reveal:hover>.visible.content,.ui.rotate.right.reveal:hover>.visible.content{-webkit-transform:rotate(110deg);-ms-transform:rotate(110deg);transform:rotate(110deg)}.ui.rotate.left.reveal>.visible.content{-webkit-transform-origin:bottom left;-ms-transform-origin:bottom left;transform-origin:bottom left}.ui.rotate.left.reveal:hover>.visible.content{-webkit-transform:rotate(-110deg);-ms-transform:rotate(-110deg);transform:rotate(-110deg)}.ui.disabled.reveal{opacity:1!important}.ui.disabled.reveal>.content{-webkit-transition:none!important;transition:none!important}.ui.disabled.reveal:hover>.visible.content{position:static!important;display:block!important;opacity:1!important;top:0!important;left:0!important;right:auto!important;bottom:auto!important;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}.ui.disabled.reveal:hover>.hidden.content{display:none!important}.ui.masked.reveal{overflow:hidden}.ui.instant.reveal>.content{-webkit-transition-delay:0s!important;transition-delay:0s!important}

2
build/minified/definitions/elements/segment.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/elements/step.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/globals/reset.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a{background:0 0}a:focus{outline:dotted thin}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}hr{box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}input[type=email],input[type=password],input[type=search],input[type=text]{-webkit-appearance:none;-moz-appearance:none} article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a{background:0 0}a:focus{outline:dotted thin}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}hr{box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}input[type=email],input[type=password],input[type=search],input[type=text]{-webkit-appearance:none;-moz-appearance:none}

2
build/minified/definitions/globals/site.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic);*,:after,:before{box-sizing:border-box}body,html{height:100%;font-smoothing:antialiased}body{margin:0;padding:0;min-width:292px;background:#f7f7f7;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:14px;line-height:1.33;color:rgba(0,0,0,.8);overflow-x:hidden}h1,h2,h3,h4,h5{margin:1em 0 1rem;padding:0}p{margin:0 0 1em}p:first-child{margin-top:0}p:last-child{margin-bottom:0}a{color:#009fda;text-decoration:none}a:hover{color:#00b2f3}::-webkit-selection{background-color:#ffc;color:rgba(0,0,0,.8)}::-moz-selection{background-color:#ffc;color:rgba(0,0,0,.8)}::selection{background-color:#ffc;color:rgba(0,0,0,.8)} @import url(http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic);*,:after,:before{box-sizing:border-box}body,html{height:100%;font-smoothing:antialiased}body{margin:0;padding:0;min-width:292px;background:#f7f7f7;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:14px;line-height:1.33;color:rgba(0,0,0,.8);overflow-x:hidden}h1,h2,h3,h4,h5{margin:1em 0 1rem;padding:0}p{margin:0 0 1em}p:first-child{margin-top:0}p:last-child{margin-bottom:0}a{color:#009fda;text-decoration:none}a:hover{color:#00b2f3}::-webkit-selection{background-color:#ffc;color:rgba(0,0,0,.8)}::-moz-selection{background-color:#ffc;color:rgba(0,0,0,.8)}::selection{background-color:#ffc;color:rgba(0,0,0,.8)}

2
build/minified/definitions/modules/accordion.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/modules/chatroom.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.chatroom{background-color:#F8F8F8;padding:0}.ui.chatroom .room{position:relative;background-color:#FFF;overflow:hidden;height:286px;border:1px solid rgba(0,0,0,.1);border-top:none;border-bottom:none}.ui.chatroom .room .loader{display:none;margin:-25px 0 0 -25px}.ui.chatroom .actions{overflow:hidden;background-color:#EEE;padding:4px;border:1px solid rgba(0,0,0,.1);border-radius:5px 5px 0 0}.ui.chatroom .actions .button{float:right;margin-left:3px}.ui.chatroom .actions .message{float:left;margin-left:6px;font-size:11px;color:#AAA;text-shadow:0 -1px 0 rgba(255,255,255,.8);line-height:28px}.ui.chatroom .actions .message .loader{display:inline-block;margin-right:8px}.ui.chatroom .log{float:left;overflow:auto;overflow-x:hidden;overflow-y:auto}.ui.chatroom .log .message{padding:3px 0;border-top:1px dotted #DADADA}.ui.chatroom .log .message:first-child{border-top:none}.ui.chatroom .status{padding:5px 0;color:#AAA;font-size:12px;font-style:italic;line-height:1.33;border-top:1px dotted #DADADA}.ui.chatroom .log .status:first-child{border-top:none}.ui.chatroom .log .flag{float:left}.ui.chatroom .log p{margin-left:0}.ui.chatroom .log .author{font-weight:700;-webkit-transition:color .3s ease-out;transition:color .3s ease-out}.ui.chatroom .log a.author:hover{opacity:.8}.ui.chatroom .log .message.admin p{font-weight:700;margin:1px 0 0 23px}.ui.chatroom .log .divider{margin:-1px 0;font-size:11px;padding:10px 0;border-top:1px solid #F8F8F8;border-bottom:1px solid #F8F8F8}.ui.chatroom .log .divider .rule{top:50%;width:15%}.ui.chatroom .log .divider .label{color:#777;margin:0}.ui.chatroom .room .list{position:relative;overflow:auto;overflow-x:hidden;overflow-y:auto;float:left;background-color:#EEE;border-left:1px solid #DDD}.ui.chatroom .room .list .user{display:table;padding:3px 7px;border-bottom:1px solid #DDD}.ui.chatroom .room .list .user:hover{background-color:#F8F8F8}.ui.chatroom .room .list .image{display:table-cell;vertical-align:middle;width:20px}.ui.chatroom .room .list .image img{width:20px;height:20px;vertical-align:middle}.ui.chatroom .room .list p{display:table-cell;vertical-align:middle;padding-left:7px;padding-right:14px;font-size:11px;line-height:1.2;font-weight:700}.ui.chatroom .room .list a:hover{opacity:.8}.ui.chatroom .talk{border:1px solid rgba(0,0,0,.1);padding:5px 0 0;background-color:#EEE;border-radius:0 0 5px 5px}.ui.chatroom .talk .avatar,.ui.chatroom .talk .button,.ui.chatroom .talk input{float:left}.ui.chatroom .talk .avatar img{display:block;width:30px;height:30px;margin-right:4px;border-radius:500rem}.ui.chatroom .talk input{border:1px solid #CCC;margin:0;width:196px;height:14px;padding:8px 5px;font-size:12px;color:#555}.ui.chatroom .talk input.focus{border:1px solid #AAA}.ui.chatroom .send{width:80px;height:32px;margin-left:-1px;padding:4px 12px;font-size:12px;line-height:23px;box-shadow:0 0 0 1px rgba(0,0,0,.1) inset;border-radius:0 5px 5px 0}.ui.chatroom .talk .log-in.button{display:block;float:none;margin-top:-6px;height:22px;border-radius:0 0 4px 4px}.ui.chatroom .talk .log-in.button i{vertical-align:text-top}.ui.chatroom .log .team.flag{width:18px}.ui.chatroom.loading .loader{display:block}.ui.chatroom{width:330px;height:370px}.ui.chatroom .room .container{width:3000px}.ui.chatroom .log{width:314px;height:278px;padding:4px 7px}.ui.chatroom .room .list{width:124px;height:278px;padding:4px 0}.ui.chatroom .room .list .user{width:110px}.ui.chatroom .talk{height:40px} .ui.chatroom{background-color:#F8F8F8;padding:0}.ui.chatroom .room{position:relative;background-color:#FFF;overflow:hidden;height:286px;border:1px solid rgba(0,0,0,.1);border-top:none;border-bottom:none}.ui.chatroom .room .loader{display:none;margin:-25px 0 0 -25px}.ui.chatroom .actions{overflow:hidden;background-color:#EEE;padding:4px;border:1px solid rgba(0,0,0,.1);border-radius:5px 5px 0 0}.ui.chatroom .actions .button{float:right;margin-left:3px}.ui.chatroom .actions .message{float:left;margin-left:6px;font-size:11px;color:#AAA;text-shadow:0 -1px 0 rgba(255,255,255,.8);line-height:28px}.ui.chatroom .actions .message .loader{display:inline-block;margin-right:8px}.ui.chatroom .log{float:left;overflow:auto;overflow-x:hidden;overflow-y:auto}.ui.chatroom .log .message{padding:3px 0;border-top:1px dotted #DADADA}.ui.chatroom .log .message:first-child{border-top:none}.ui.chatroom .status{padding:5px 0;color:#AAA;font-size:12px;font-style:italic;line-height:1.33;border-top:1px dotted #DADADA}.ui.chatroom .log .status:first-child{border-top:none}.ui.chatroom .log .flag{float:left}.ui.chatroom .log p{margin-left:0}.ui.chatroom .log .author{font-weight:700;-webkit-transition:color .3s ease-out;transition:color .3s ease-out}.ui.chatroom .log a.author:hover{opacity:.8}.ui.chatroom .log .message.admin p{font-weight:700;margin:1px 0 0 23px}.ui.chatroom .log .divider{margin:-1px 0;font-size:11px;padding:10px 0;border-top:1px solid #F8F8F8;border-bottom:1px solid #F8F8F8}.ui.chatroom .log .divider .rule{top:50%;width:15%}.ui.chatroom .log .divider .label{color:#777;margin:0}.ui.chatroom .room .list{position:relative;overflow:auto;overflow-x:hidden;overflow-y:auto;float:left;background-color:#EEE;border-left:1px solid #DDD}.ui.chatroom .room .list .user{display:table;padding:3px 7px;border-bottom:1px solid #DDD}.ui.chatroom .room .list .user:hover{background-color:#F8F8F8}.ui.chatroom .room .list .image{display:table-cell;vertical-align:middle;width:20px}.ui.chatroom .room .list .image img{width:20px;height:20px;vertical-align:middle}.ui.chatroom .room .list p{display:table-cell;vertical-align:middle;padding-left:7px;padding-right:14px;font-size:11px;line-height:1.2;font-weight:700}.ui.chatroom .room .list a:hover{opacity:.8}.ui.chatroom .talk{border:1px solid rgba(0,0,0,.1);padding:5px 0 0;background-color:#EEE;border-radius:0 0 5px 5px}.ui.chatroom .talk .avatar,.ui.chatroom .talk .button,.ui.chatroom .talk input{float:left}.ui.chatroom .talk .avatar img{display:block;width:30px;height:30px;margin-right:4px;border-radius:500rem}.ui.chatroom .talk input{border:1px solid #CCC;margin:0;width:196px;height:14px;padding:8px 5px;font-size:12px;color:#555}.ui.chatroom .talk input.focus{border:1px solid #AAA}.ui.chatroom .send{width:80px;height:32px;margin-left:-1px;padding:4px 12px;font-size:12px;line-height:23px;box-shadow:0 0 0 1px rgba(0,0,0,.1) inset;border-radius:0 5px 5px 0}.ui.chatroom .talk .log-in.button{display:block;float:none;margin-top:-6px;height:22px;border-radius:0 0 4px 4px}.ui.chatroom .talk .log-in.button i{vertical-align:text-top}.ui.chatroom .log .team.flag{width:18px}.ui.chatroom.loading .loader{display:block}.ui.chatroom{width:330px;height:370px}.ui.chatroom .room .container{width:3000px}.ui.chatroom .log{width:314px;height:278px;padding:4px 7px}.ui.chatroom .room .list{width:124px;height:278px;padding:4px 0}.ui.chatroom .room .list .user{width:110px}.ui.chatroom .talk{height:40px}

2
build/minified/definitions/modules/checkbox.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/modules/dimmer.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.dimmable{position:relative}.ui.dimmer{display:none;position:absolute;top:0!important;left:0!important;width:0;height:0;text-align:center;vertical-align:middle;background:rgba(0,0,0,.85);opacity:0;line-height:1;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-transition:background-color .5s linear;transition:background-color .5s linear;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;will-transform:opacity;z-index:1000}.ui.dimmer>.content{width:100%;height:100%;display:table;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ui.dimmer>.content>div{display:table-cell;vertical-align:middle;color:#fff}.ui.segment>.ui.dimmer{border-radius:inherit!important}.dimmed.dimmable:not(body){overflow:hidden}.dimmed.dimmable>.ui.animating.dimmer,.dimmed.dimmable>.ui.visible.dimmer,.ui.active.dimmer{display:block;width:100%;height:100%;opacity:1}.ui.disabled.dimmer{width:0!important;height:0!important}.ui.page.dimmer{position:fixed;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-perspective:2000px;perspective:2000px;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center}body.dimmed.dimmable{overflow:hidden}body.dimmable>.dimmer{position:fixed}body.dimmed.dimmable>:not(.dimmer){-webkit-filter:'';filter:''}.ui.dimmer>.top.aligned.content>*{vertical-align:top}.ui.dimmer>.bottom.aligned.content>*{vertical-align:bottom}.ui.inverted.dimmer{background:rgba(255,255,255,.85)}.ui.inverted.dimmer>.content>*{color:#fff}.ui.simple.dimmer{display:block;overflow:hidden;opacity:1;z-index:-100;background-color:transparent}.dimmed.dimmable>.ui.simple.dimmer{overflow:visible;opacity:1;width:100%;height:100%;background:rgba(0,0,0,.85);z-index:1}.ui.simple.inverted.dimmer{background:rgba(255,255,255,0)}.dimmed.dimmable>.ui.simple.inverted.dimmer{background:rgba(255,255,255,.85)} .dimmable{position:relative}.ui.dimmer{display:none;position:absolute;top:0!important;left:0!important;width:0;height:0;text-align:center;vertical-align:middle;background:rgba(0,0,0,.85);opacity:0;line-height:1;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-transition:background-color .5s linear;transition:background-color .5s linear;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;will-transform:opacity;z-index:1000}.ui.dimmer>.content{width:100%;height:100%;display:table;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ui.dimmer>.content>div{display:table-cell;vertical-align:middle;color:#fff}.ui.segment>.ui.dimmer{border-radius:inherit!important}.dimmed.dimmable:not(body){overflow:hidden}.dimmed.dimmable>.ui.animating.dimmer,.dimmed.dimmable>.ui.visible.dimmer,.ui.active.dimmer{display:block;width:100%;height:100%;opacity:1}.ui.disabled.dimmer{width:0!important;height:0!important}.ui.page.dimmer{position:fixed;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-perspective:2000px;perspective:2000px;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center}body.dimmed.dimmable{overflow:hidden}body.dimmable>.dimmer{position:fixed}body.dimmed.dimmable>:not(.dimmer){-webkit-filter:'';filter:''}.ui.dimmer>.top.aligned.content>*{vertical-align:top}.ui.dimmer>.bottom.aligned.content>*{vertical-align:bottom}.ui.inverted.dimmer{background:rgba(255,255,255,.85)}.ui.inverted.dimmer>.content>*{color:#fff}.ui.simple.dimmer{display:block;overflow:hidden;opacity:1;z-index:-100;background-color:transparent}.dimmed.dimmable>.ui.simple.dimmer{overflow:visible;opacity:1;width:100%;height:100%;background:rgba(0,0,0,.85);z-index:1}.ui.simple.inverted.dimmer{background:rgba(255,255,255,0)}.dimmed.dimmable>.ui.simple.inverted.dimmer{background:rgba(255,255,255,.85)}

4
build/minified/definitions/modules/dropdown.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/modules/dropdown.min.js

File diff suppressed because one or more lines are too long

2
build/minified/definitions/modules/modal.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/modules/nag.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.nag{display:none;opacity:.95;position:relative;top:0;left:0;z-index:101;min-height:0;width:100%;margin:0;padding:.5em 1em;background:#555;box-shadow:0 1px 2px 0 rgba(0,0,0,.2);font-size:1rem;text-align:center;color:rgba(0,0,0,.8);border-radius:0 0 .25em .25em;-webkit-transition:.2s background ease;transition:.2s background ease}a.ui.nag{cursor:pointer}.ui.nag>.title{display:inline-block;margin:0 .5em;color:#fff}.ui.nag>.close.icon{cursor:pointer;opacity:.4;position:absolute;top:50%;right:1em;font-size:1em;margin:-.5em 0 0;color:#fff;-webkit-transition:opacity .2s ease;transition:opacity .2s ease}.ui.nag:hover{background:#555;opacity:1}.ui.nag .close:hover{opacity:1}.ui.overlay.nag{position:absolute;display:block}.ui.fixed.nag{position:fixed}.ui.bottom.nag,.ui.bottom.nags{border-radius:.25em .25em 0 0;top:auto;bottom:0}.ui.inverted.nag,.ui.inverted.nags .nag{background-color:#f0f0f0;color:rgba(0,0,0,.85)}.ui.inverted.nag .close,.ui.inverted.nag .title,.ui.inverted.nags .nag .close,.ui.inverted.nags .nag .title{color:rgba(0,0,0,.4)}.ui.nags .nag{border-radius:0!important}.ui.nags .nag:last-child{border-radius:0 0 .25em .25em}.ui.bottom.nags .nag:last-child{border-radius:.25em .25em 0 0} .ui.nag{display:none;opacity:.95;position:relative;top:0;left:0;z-index:101;min-height:0;width:100%;margin:0;padding:.5em 1em;background:#555;box-shadow:0 1px 2px 0 rgba(0,0,0,.2);font-size:1rem;text-align:center;color:rgba(0,0,0,.8);border-radius:0 0 .25em .25em;-webkit-transition:.2s background ease;transition:.2s background ease}a.ui.nag{cursor:pointer}.ui.nag>.title{display:inline-block;margin:0 .5em;color:#fff}.ui.nag>.close.icon{cursor:pointer;opacity:.4;position:absolute;top:50%;right:1em;font-size:1em;margin:-.5em 0 0;color:#fff;-webkit-transition:opacity .2s ease;transition:opacity .2s ease}.ui.nag:hover{background:#555;opacity:1}.ui.nag .close:hover{opacity:1}.ui.overlay.nag{position:absolute;display:block}.ui.fixed.nag{position:fixed}.ui.bottom.nag,.ui.bottom.nags{border-radius:.25em .25em 0 0;top:auto;bottom:0}.ui.inverted.nag,.ui.inverted.nags .nag{background-color:#f0f0f0;color:rgba(0,0,0,.85)}.ui.inverted.nag .close,.ui.inverted.nag .title,.ui.inverted.nags .nag .close,.ui.inverted.nags .nag .title{color:rgba(0,0,0,.4)}.ui.nags .nag{border-radius:0!important}.ui.nags .nag:last-child{border-radius:0 0 .25em .25em}.ui.bottom.nags .nag:last-child{border-radius:.25em .25em 0 0}

2
build/minified/definitions/modules/popup.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.popup{display:none;position:absolute;top:0;right:0;z-index:900;border:1px solid #ccc;max-width:250px;background-color:#fff;padding:.8em 1em;font-weight:400;font-style:normal;color:rgba(0,0,0,.8);border-radius:.25em;box-shadow:0 2px 4px rgba(0,0,0,.1)}.ui.popup>.header{padding:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.125em;line-height:1.2;font-weight:700}.ui.popup>.header+.content{padding-top:.5em}.ui.popup:before{position:absolute;content:'';width:.75em;height:.75em;background:#fff;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:2;box-shadow:1px 1px 0 0 #b3b3b3}.ui.popup{margin:0}.ui.popup.bottom{margin:.75em 0 0}.ui.popup.top{margin:0 0 .75em}.ui.popup.left.center{margin:0 .75em 0 0}.ui.popup.right.center{margin:0 0 0 .75em}.ui.bottom.center.popup:before{margin-left:-.325em;top:-.325em;left:50%;right:auto;bottom:auto;box-shadow:-1px -1px 0 0 #b3b3b3}.ui.bottom.left.popup{margin-left:0}.ui.bottom.left.popup:before{top:-.325em;left:1em;right:auto;bottom:auto;margin-left:0;box-shadow:-1px -1px 0 0 #b3b3b3}.ui.bottom.right.popup{margin-right:0}.ui.bottom.right.popup:before{top:-.325em;right:1em;bottom:auto;left:auto;margin-left:0;box-shadow:-1px -1px 0 0 #b3b3b3}.ui.top.center.popup:before{top:auto;right:auto;bottom:-.325em;left:50%;margin-left:-.325em}.ui.top.left.popup{margin-left:0}.ui.top.left.popup:before{bottom:-.325em;left:1em;top:auto;right:auto;margin-left:0}.ui.top.right.popup{margin-right:0}.ui.top.right.popup:before{bottom:-.325em;right:1em;top:auto;left:auto;margin-left:0}.ui.left.center.popup:before{top:50%;right:-.325em;bottom:auto;left:auto;margin-top:-.325em;box-shadow:1px -1px 0 0 #b3b3b3}.ui.right.center.popup:before{top:50%;left:-.325em;bottom:auto;right:auto;margin-top:-.325em;box-shadow:-1px 1px 0 0 #b3b3b3}.ui.loading.popup{display:block;visibility:hidden;z-index:-1}.ui.animating.popup,.ui.visible.popup{display:block}.ui.wide.popup{width:350px;max-width:350px}.ui[class*="very wide"].popup{width:550px;max-width:550px}.ui.fluid.popup{width:100%;max-width:99999px}.ui.inverted.popup{background:#1b1c1d;color:#fff;border:none;box-shadow:none}.ui.inverted.popup .header{background-color:none;color:#fff}.ui.inverted.popup:before{background-color:#1b1c1d;box-shadow:none}.ui.flowing.popup{max-width:9999px}.ui.small.popup{font-size:.8rem}.ui.popup{font-size:.875rem}.ui.large.popup{font-size:1rem}.ui.huge.popup{font-size:1.1rem} .ui.popup{display:none;position:absolute;top:0;right:0;z-index:900;border:1px solid #ccc;max-width:250px;background-color:#fff;padding:.8em 1em;font-weight:400;font-style:normal;color:rgba(0,0,0,.8);border-radius:.25em;box-shadow:0 2px 4px rgba(0,0,0,.1)}.ui.popup>.header{padding:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.125em;line-height:1.2;font-weight:700}.ui.popup>.header+.content{padding-top:.5em}.ui.popup:before{position:absolute;content:'';width:.75em;height:.75em;background:#fff;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:2;box-shadow:1px 1px 0 0 #b3b3b3}.ui.popup{margin:0}.ui.popup.bottom{margin:.75em 0 0}.ui.popup.top{margin:0 0 .75em}.ui.popup.left.center{margin:0 .75em 0 0}.ui.popup.right.center{margin:0 0 0 .75em}.ui.bottom.center.popup:before{margin-left:-.325em;top:-.325em;left:50%;right:auto;bottom:auto;box-shadow:-1px -1px 0 0 #b3b3b3}.ui.bottom.left.popup{margin-left:0}.ui.bottom.left.popup:before{top:-.325em;left:1em;right:auto;bottom:auto;margin-left:0;box-shadow:-1px -1px 0 0 #b3b3b3}.ui.bottom.right.popup{margin-right:0}.ui.bottom.right.popup:before{top:-.325em;right:1em;bottom:auto;left:auto;margin-left:0;box-shadow:-1px -1px 0 0 #b3b3b3}.ui.top.center.popup:before{top:auto;right:auto;bottom:-.325em;left:50%;margin-left:-.325em}.ui.top.left.popup{margin-left:0}.ui.top.left.popup:before{bottom:-.325em;left:1em;top:auto;right:auto;margin-left:0}.ui.top.right.popup{margin-right:0}.ui.top.right.popup:before{bottom:-.325em;right:1em;top:auto;left:auto;margin-left:0}.ui.left.center.popup:before{top:50%;right:-.325em;bottom:auto;left:auto;margin-top:-.325em;box-shadow:1px -1px 0 0 #b3b3b3}.ui.right.center.popup:before{top:50%;left:-.325em;bottom:auto;right:auto;margin-top:-.325em;box-shadow:-1px 1px 0 0 #b3b3b3}.ui.loading.popup{display:block;visibility:hidden;z-index:-1}.ui.animating.popup,.ui.visible.popup{display:block}.ui.wide.popup{width:350px;max-width:350px}.ui[class*="very wide"].popup{width:550px;max-width:550px}.ui.fluid.popup{width:100%;max-width:99999px}.ui.inverted.popup{background:#1b1c1d;color:#fff;border:none;box-shadow:none}.ui.inverted.popup .header{background-color:none;color:#fff}.ui.inverted.popup:before{background-color:#1b1c1d;box-shadow:none}.ui.flowing.popup{max-width:9999px}.ui.small.popup{font-size:.8rem}.ui.popup{font-size:.875rem}.ui.large.popup{font-size:1rem}.ui.huge.popup{font-size:1.1rem}

2
build/minified/definitions/modules/rating.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/modules/search.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.search{position:relative;text-shadow:none;font-style:normal;font-weight:400}.ui.search input{border-radius:500rem}.ui.search .prompt~.search.icon{cursor:pointer}.ui.search .results{display:none;position:absolute;z-index:998;top:100%;left:0;overflow:hidden;background:#fff;margin-top:.5em;width:380px;border-radius:.25em;box-shadow:0 1px 3px 1px rgba(0,0,0,.2)}.ui.search .result{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;cursor:pointer;overflow:hidden;font-size:.9em;padding:.5em 1em;color:rgba(0,0,0,.8);line-height:1.33}.ui.search .result:first-child{border-top:none}.ui.search .result .image{float:right;overflow:hidden;background:0 0;width:5em;height:3em;border-radius:.25em}.ui.search .result .image img{display:block;width:auto;height:100%}.ui.search .result .image+.content{margin:0 6em 0 0}.ui.search .result .title{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:400;color:rgba(0,0,0,.85)}.ui.search .result .description{color:rgba(0,0,0,.8)}.ui.search .result .price{float:right;color:#5bbd72}.ui.search .message{padding:1em}.ui.search .message .header{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.2em;font-weight:700;color:rgba(0,0,0,.8)}.ui.search .message .description{margin-top:.25rem;font-size:1rem;color:rgba(0,0,0,.8)}.ui.search .all{display:block;border-top:1px solid rgba(0,0,0,.1);background-color:#f0f0f0;height:2em;line-height:2em;color:rgba(0,0,0,.8);font-weight:700;text-align:center}.ui.search .all:hover,.ui.search .result:hover,.ui.search .results .category .result:hover{background:#fafafa}.ui.search.loading .input .icon{background:url(../../themes/packages/default/assets/images/loader-mini.gif) 50% 50% no-repeat}.ui.search.loading .input .icon:after,.ui.search.loading .input .icon:before{display:none}.ui.search .results .category.active{background-color:#f1f1f1}.ui.search .results .category.active>.name{color:rgba(0,0,0,.8)}.ui.search .result.active,.ui.search .results .category .result.active{border-left-color:transparent;background-color:#f0f0f0;box-shadow:2px 0 2px 0 rgba(0,0,0,.2)}.ui.search .result.active .description,.ui.search .result.active .title{color:rgba(0,0,0,.85)}.ui.right.aligned.search .results{right:0;left:auto}.ui.search .results .category{background:#f0f0f0;box-shadow:0 -1px 0 0 rgba(0,0,0,.1)}.ui.search .results .category,.ui.search .results .category .result{position:relative;-webkit-transition:background .2s ease,border-color .2s ease;transition:background .2s ease,border-color .2s ease}.ui.search .results .category:first-child{box-shadow:none}.ui.search .results .category>.name{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;float:.9em;float:left;padding:.4em 0 0 1em;font-weight:700;color:rgba(0,0,0,.4)}.ui.search .results .category .result{background-color:#fff;margin-left:100px;border-left:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(0,0,0,.1)}.ui.search{font-size:1em}.ui.large.search{font-size:1.1em} .ui.search{position:relative;text-shadow:none;font-style:normal;font-weight:400}.ui.search input{border-radius:500rem}.ui.search .prompt~.search.icon{cursor:pointer}.ui.search .results{display:none;position:absolute;z-index:998;top:100%;left:0;overflow:hidden;background:#fff;margin-top:.5em;width:380px;border-radius:.25em;box-shadow:0 1px 3px 1px rgba(0,0,0,.2)}.ui.search .result{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;cursor:pointer;overflow:hidden;font-size:.9em;padding:.5em 1em;color:rgba(0,0,0,.8);line-height:1.33}.ui.search .result:first-child{border-top:none}.ui.search .result .image{float:right;overflow:hidden;background:0 0;width:5em;height:3em;border-radius:.25em}.ui.search .result .image img{display:block;width:auto;height:100%}.ui.search .result .image+.content{margin:0 6em 0 0}.ui.search .result .title{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:400;color:rgba(0,0,0,.85)}.ui.search .result .description{color:rgba(0,0,0,.8)}.ui.search .result .price{float:right;color:#5bbd72}.ui.search .message{padding:1em}.ui.search .message .header{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.2em;font-weight:700;color:rgba(0,0,0,.8)}.ui.search .message .description{margin-top:.25rem;font-size:1rem;color:rgba(0,0,0,.8)}.ui.search .all{display:block;border-top:1px solid rgba(0,0,0,.1);background-color:#f0f0f0;height:2em;line-height:2em;color:rgba(0,0,0,.8);font-weight:700;text-align:center}.ui.search .all:hover,.ui.search .result:hover,.ui.search .results .category .result:hover{background:#fafafa}.ui.search.loading .input .icon{background:url(../../themes/packages/default/assets/images/loader-mini.gif) 50% 50% no-repeat}.ui.search.loading .input .icon:after,.ui.search.loading .input .icon:before{display:none}.ui.search .results .category.active{background-color:#f1f1f1}.ui.search .results .category.active>.name{color:rgba(0,0,0,.8)}.ui.search .result.active,.ui.search .results .category .result.active{border-left-color:transparent;background-color:#f0f0f0;box-shadow:2px 0 2px 0 rgba(0,0,0,.2)}.ui.search .result.active .description,.ui.search .result.active .title{color:rgba(0,0,0,.85)}.ui.right.aligned.search .results{right:0;left:auto}.ui.search .results .category{background:#f0f0f0;box-shadow:0 -1px 0 0 rgba(0,0,0,.1)}.ui.search .results .category,.ui.search .results .category .result{position:relative;-webkit-transition:background .2s ease,border-color .2s ease;transition:background .2s ease,border-color .2s ease}.ui.search .results .category:first-child{box-shadow:none}.ui.search .results .category>.name{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;float:.9em;float:left;padding:.4em 0 0 1em;font-weight:700;color:rgba(0,0,0,.4)}.ui.search .results .category .result{background-color:#fff;margin-left:100px;border-left:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(0,0,0,.1)}.ui.search{font-size:1em}.ui.large.search{font-size:1.1em}

2
build/minified/definitions/modules/shape.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.shape{position:relative;display:inline-block;-webkit-perspective:2000px;perspective:2000px}.ui.shape .sides{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.ui.shape .side{opacity:1;width:100%;margin:0!important;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none}.ui.cube.shape .side{min-width:15em;height:15em;padding:2em;background-color:#e6e6e6;color:rgba(0,0,0,.8);box-shadow:0 0 2px rgba(0,0,0,.3)}.ui.cube.shape .side>.content{width:100%;height:100%;display:table;text-align:center;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ui.cube.shape .side>.content>div{display:table-cell;vertical-align:middle;font-size:2em}.ui.text.shape.animating .sides{position:static}.ui.text.shape .side{white-space:nowrap}.ui.text.shape .side>*{white-space:normal}.ui.loading.shape{position:absolute;top:-9999px;left:-9999px}.ui.shape .animating.side{position:absolute;top:0;left:0;z-index:100}.ui.shape .hidden.side{opacity:.4}.ui.shape.animating{-webkit-transition:all .6s ease-in-out;transition:all .6s ease-in-out}.ui.shape.animating .sides{position:absolute;-webkit-transition:all .6s ease-in-out;transition:all .6s ease-in-out}.ui.shape.animating .side{-webkit-transition:opacity .6s ease-in-out;transition:opacity .6s ease-in-out}.ui.shape .active.side{display:block} .ui.shape{position:relative;display:inline-block;-webkit-perspective:2000px;perspective:2000px}.ui.shape .sides{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.ui.shape .side{opacity:1;width:100%;margin:0!important;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none}.ui.cube.shape .side{min-width:15em;height:15em;padding:2em;background-color:#e6e6e6;color:rgba(0,0,0,.8);box-shadow:0 0 2px rgba(0,0,0,.3)}.ui.cube.shape .side>.content{width:100%;height:100%;display:table;text-align:center;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ui.cube.shape .side>.content>div{display:table-cell;vertical-align:middle;font-size:2em}.ui.text.shape.animating .sides{position:static}.ui.text.shape .side{white-space:nowrap}.ui.text.shape .side>*{white-space:normal}.ui.loading.shape{position:absolute;top:-9999px;left:-9999px}.ui.shape .animating.side{position:absolute;top:0;left:0;z-index:100}.ui.shape .hidden.side{opacity:.4}.ui.shape.animating{-webkit-transition:all .6s ease-in-out;transition:all .6s ease-in-out}.ui.shape.animating .sides{position:absolute;-webkit-transition:all .6s ease-in-out;transition:all .6s ease-in-out}.ui.shape.animating .side{-webkit-transition:opacity .6s ease-in-out;transition:opacity .6s ease-in-out}.ui.shape .active.side{display:block}

2
build/minified/definitions/modules/sidebar.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/modules/sticky.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.sticky{position:static;-webkit-transition:width .2s ease,height .2s ease,top .2s ease,bottom .2s ease;transition:width .2s ease,height .2s ease,top .2s ease,bottom .2s ease}.ui.sticky.bound{position:absolute;left:auto;right:auto}.ui.sticky.fixed{position:fixed;left:auto;right:auto}.ui.sticky.bound.top,.ui.sticky.fixed.top{top:0;bottom:auto}.ui.sticky.bound.bottom,.ui.sticky.fixed.bottom{top:auto;bottom:0}.ui.native.sticky{position:-webkit-sticky;position:-moz-sticky;position:-ms-sticky;position:-o-sticky;position:sticky} .ui.sticky{position:static;-webkit-transition:width .2s ease,height .2s ease,top .2s ease,bottom .2s ease;transition:width .2s ease,height .2s ease,top .2s ease,bottom .2s ease}.ui.sticky.bound{position:absolute;left:auto;right:auto}.ui.sticky.fixed{position:fixed;left:auto;right:auto}.ui.sticky.bound.top,.ui.sticky.fixed.top{top:0;bottom:auto}.ui.sticky.bound.bottom,.ui.sticky.fixed.bottom{top:auto;bottom:0}.ui.native.sticky{position:-webkit-sticky;position:-moz-sticky;position:-ms-sticky;position:-o-sticky;position:sticky}

2
build/minified/definitions/modules/tab.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.tab{display:none}.ui.tab.active,.ui.tab.open{display:block}.ui.tab.loading{position:relative;overflow:hidden;display:block;min-height:250px}.ui.tab.loading *{position:relative!important;left:-10000px!important}.ui.tab.loading:after{border:none;position:absolute;top:50px;left:0;content:'Loading...';color:rgba(0,0,0,.4);width:100%;height:100%;padding-top:50px;text-align:center;background:url(../../themes/packages/default/assets/images/loader-large.gif) 50% 0 no-repeat;visibility:visible} .ui.tab{display:none}.ui.tab.active,.ui.tab.open{display:block}.ui.tab.loading{position:relative;overflow:hidden;display:block;min-height:250px}.ui.tab.loading *{position:relative!important;left:-10000px!important}.ui.tab.loading:after{border:none;position:absolute;top:50px;left:0;content:'Loading...';color:rgba(0,0,0,.4);width:100%;height:100%;padding-top:50px;text-align:center;background:url(../../themes/packages/default/assets/images/loader-large.gif) 50% 0 no-repeat;visibility:visible}

2
build/minified/definitions/modules/transition.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/modules/video.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.video{background-color:#ddd;position:relative;max-width:100%;padding-bottom:56.25%;height:0;overflow:hidden}.ui.video .placeholder{background-color:#333}.ui.video .play{cursor:pointer;position:absolute;top:0;left:0;z-index:10;width:100%;height:100%;opacity:.8;-webkit-transition:opacity .3s;transition:opacity .3s}.ui.video .play.icon:before{position:absolute;top:50%;left:50%;z-index:11;background:rgba(0,0,0,.3);width:8rem;height:8rem;line-height:8rem;border-radius:500rem;color:#fff;font-size:8rem;text-shadow:none;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}.ui.video .placeholder{position:absolute;top:0;left:0;display:block;width:100%;height:100%}.ui.video .embed embed,.ui.video .embed iframe,.ui.video .embed object{position:absolute;border:none;width:100%;height:100%;top:0;left:0;margin:0;padding:0}.ui.video .play:hover{opacity:1}.ui.video.active .placeholder,.ui.video.active .play{display:none}.ui.video.active .embed{display:inline} .ui.video{background-color:#ddd;position:relative;max-width:100%;padding-bottom:56.25%;height:0;overflow:hidden}.ui.video .placeholder{background-color:#333}.ui.video .play{cursor:pointer;position:absolute;top:0;left:0;z-index:10;width:100%;height:100%;opacity:.8;-webkit-transition:opacity .3s;transition:opacity .3s}.ui.video .play.icon:before{position:absolute;top:50%;left:50%;z-index:11;background:rgba(0,0,0,.3);width:8rem;height:8rem;line-height:8rem;border-radius:500rem;color:#fff;font-size:8rem;text-shadow:none;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}.ui.video .placeholder{position:absolute;top:0;left:0;display:block;width:100%;height:100%}.ui.video .embed embed,.ui.video .embed iframe,.ui.video .embed object{position:absolute;border:none;width:100%;height:100%;top:0;left:0;margin:0;padding:0}.ui.video .play:hover{opacity:1}.ui.video.active .placeholder,.ui.video.active .play{display:none}.ui.video.active .embed{display:inline}

2
build/minified/definitions/views/card.min.css

File diff suppressed because one or more lines are too long

2
build/minified/definitions/views/comment.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.comments{margin:1.5em 0;max-width:650px}.ui.comments:first-child{margin-top:0}.ui.comments:last-child{margin-bottom:0}.ui.comments .comment{position:relative;background:0 0;margin:.5em 0 0;padding:.5em 0 0;border:none;border-top:none;line-height:1.2}.ui.comments .comment:first-child{margin-top:0;padding-top:0}.ui.comments .comment .comments{margin:0 0 .5em .5em;padding:1em 0 1em 1em}.ui.comments .comment .comments:before{position:absolute;top:0;left:0}.ui.comments .comment .comments .comment{border:none;border-top:none;background:0 0}.ui.comments .comment .avatar{display:block;width:2.5em;height:auto;float:left;margin:.2em 0 0}.ui.comments .comment .avatar img,.ui.comments .comment img.avatar{display:block;margin:0 auto;width:100%;height:100%;border-radius:.25rem}.ui.comments .comment>.content{display:block}.ui.comments .comment>.avatar~.content{margin-left:3.5em}.ui.comments .comment .author{font-size:1em;color:rgba(0,0,0,.8);font-weight:700}.ui.comments .comment a.author{cursor:pointer}.ui.comments .comment a.author:hover{color:#00b2f3}.ui.comments .comment .metadata{display:inline-block;margin-left:.5em;color:rgba(0,0,0,.4);font-size:.875em}.ui.comments .comment .metadata>*{display:inline-block;margin:0 .5em 0 0}.ui.comments .comment .metadata>:last-child{margin-right:0}.ui.comments .comment .text{margin:.25em 0 .5em;font-size:1em;word-wrap:break-word;color:rgba(0,0,0,.8);line-height:1.3}.ui.comments .comment .actions{font-size:.875em}.ui.comments .comment .actions a{cursor:pointer;display:inline-block;margin:0 .75em 0 0;color:rgba(0,0,0,.4)}.ui.comments .comment .actions a:last-child{margin-right:0}.ui.comments .comment .actions a.active,.ui.comments .comment .actions a:hover{color:rgba(0,0,0,.8)}.ui.comments>.reply.form{margin-top:1em}.ui.comments .comment .reply.form{width:100%;margin-top:1em}.ui.comments .reply.form textarea{font-size:1em;height:12em}.ui.collapsed.comments,.ui.comments .collapsed.comment,.ui.comments .collapsed.comments{display:none}.ui.threaded.comments .comment .comments{margin:-1.5em 0 -1em 1.25em;padding:3em 0 2em 2.25em;box-shadow:-1px 0 0 rgba(0,0,0,.1)}.ui.minimal.comments .comment .actions{opacity:0;position:absolute;top:0;right:0;left:auto;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;-webkit-transition-delay:.1s;transition-delay:.1s}.ui.minimal.comments .comment>.content:hover>.actions{opacity:1}.ui.small.comments{font-size:.9em}.ui.comments{font-size:1em}.ui.large.comments{font-size:1.1em}.ui.huge.comments{font-size:1.2em} .ui.comments{margin:1.5em 0;max-width:650px}.ui.comments:first-child{margin-top:0}.ui.comments:last-child{margin-bottom:0}.ui.comments .comment{position:relative;background:0 0;margin:.5em 0 0;padding:.5em 0 0;border:none;border-top:none;line-height:1.2}.ui.comments .comment:first-child{margin-top:0;padding-top:0}.ui.comments .comment .comments{margin:0 0 .5em .5em;padding:1em 0 1em 1em}.ui.comments .comment .comments:before{position:absolute;top:0;left:0}.ui.comments .comment .comments .comment{border:none;border-top:none;background:0 0}.ui.comments .comment .avatar{display:block;width:2.5em;height:auto;float:left;margin:.2em 0 0}.ui.comments .comment .avatar img,.ui.comments .comment img.avatar{display:block;margin:0 auto;width:100%;height:100%;border-radius:.25rem}.ui.comments .comment>.content{display:block}.ui.comments .comment>.avatar~.content{margin-left:3.5em}.ui.comments .comment .author{font-size:1em;color:rgba(0,0,0,.8);font-weight:700}.ui.comments .comment a.author{cursor:pointer}.ui.comments .comment a.author:hover{color:#00b2f3}.ui.comments .comment .metadata{display:inline-block;margin-left:.5em;color:rgba(0,0,0,.4);font-size:.875em}.ui.comments .comment .metadata>*{display:inline-block;margin:0 .5em 0 0}.ui.comments .comment .metadata>:last-child{margin-right:0}.ui.comments .comment .text{margin:.25em 0 .5em;font-size:1em;word-wrap:break-word;color:rgba(0,0,0,.8);line-height:1.3}.ui.comments .comment .actions{font-size:.875em}.ui.comments .comment .actions a{cursor:pointer;display:inline-block;margin:0 .75em 0 0;color:rgba(0,0,0,.4)}.ui.comments .comment .actions a:last-child{margin-right:0}.ui.comments .comment .actions a.active,.ui.comments .comment .actions a:hover{color:rgba(0,0,0,.8)}.ui.comments>.reply.form{margin-top:1em}.ui.comments .comment .reply.form{width:100%;margin-top:1em}.ui.comments .reply.form textarea{font-size:1em;height:12em}.ui.collapsed.comments,.ui.comments .collapsed.comment,.ui.comments .collapsed.comments{display:none}.ui.threaded.comments .comment .comments{margin:-1.5em 0 -1em 1.25em;padding:3em 0 2em 2.25em;box-shadow:-1px 0 0 rgba(0,0,0,.1)}.ui.minimal.comments .comment .actions{opacity:0;position:absolute;top:0;right:0;left:auto;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;-webkit-transition-delay:.1s;transition-delay:.1s}.ui.minimal.comments .comment>.content:hover>.actions{opacity:1}.ui.small.comments{font-size:.9em}.ui.comments{font-size:1em}.ui.large.comments{font-size:1.1em}.ui.huge.comments{font-size:1.2em}

2
build/minified/definitions/views/feed.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.feed{margin:1em}.ui.feed:first-child,.ui.feed:last-child{margin-top:0}.ui.feed>.event{display:table;width:100%;padding:.5rem 0;margin:0;background:0 0;border-top:none}.ui.feed>.event:first-child{border-top:0;padding-top:0}.ui.feed>.event:last-child{padding-bottom:0}.ui.feed>.event>.label{display:table-cell;width:2.5em;height:2.5em;vertical-align:top;text-align:left}.ui.feed>.event>.label .icon{opacity:1;font-size:1.5em;width:100%;padding:.25em;background:0 0;border:none;border-radius:none;color:rgba(0,0,0,.6)}.ui.feed>.event>.label img{width:100%;height:auto;border-radius:500rem}.ui.feed>.event>.label+.content{padding:.5em 0 .5em 1.5em}.ui.feed>.event>.content{display:table-cell;vertical-align:top;text-align:left;word-wrap:break-word}.ui.feed>.event:last-child>.content{padding-bottom:0}.ui.feed>.event>.content a{cursor:pointer}.ui.feed>.event>.content .date{margin:-.5rem 0 0;padding:0;font-weight:400;font-size:1em;font-style:normal;color:rgba(0,0,0,.4)}.ui.feed>.event>.content .summary{margin:0;font-size:1em;font-weight:700;color:rgba(0,0,0,.8)}.ui.feed>.event>.content .summary img{display:inline-block;width:auto;height:2em;margin:-.25em .25em 0 0;border-radius:.25em;vertical-align:middle}.ui.feed>.event>.content .user{display:inline-block;font-weight:700;margin-right:0;vertical-align:baseline}.ui.feed>.event>.content .user img{margin:-.25em .25em 0 0;width:auto;height:2em;vertical-align:middle}.ui.feed>.event>.content .summary>.date{display:inline-block;float:none;font-weight:400;font-size:.875em;font-style:normal;margin:0 0 0 .5em;padding:0;color:rgba(0,0,0,.4)}.ui.feed>.event>.content .extra{margin:.5em 0 0;background:0 0;padding:0;color:rgba(0,0,0,.8)}.ui.feed>.event>.content .extra.images img{display:inline-block;margin:0 .25em 0 0;width:6em}.ui.feed>.event>.content .extra.text{padding:.5em 1em;border-left:3px solid rgba(0,0,0,.2);font-size:1em;max-width:500px;line-height:1.33}.ui.feed>.event>.content .meta{display:inline-block;font-size:.875em;margin:.5em 0 0;background:0 0;border:none;border-radius:0;box-shadow:none;padding:0;color:rgba(0,0,0,.6)}.ui.feed>.event>.content .meta>*{position:relative;margin-left:.75em}.ui.feed>.event>.content .meta>:after{content:'';color:rgba(0,0,0,.2);top:0;left:-1em;opacity:1;position:absolute;vertical-align:top}.ui.feed>.event>.content .meta .like{color:'';-webkit-transition:.2s color ease;transition:.2s color ease}.ui.feed>.event>.content .meta .like:hover .icon{color:#ff2733}.ui.feed>.event>.content .meta .active.like .icon{color:#ef404a}.ui.feed>.event>.content .meta>:first-child{margin-left:0}.ui.feed>.event>.content .meta>:first-child::after{display:none}.ui.feed>.event>.content .meta a,.ui.feed>.event>.content .meta>.icon{cursor:pointer;opacity:1;color:rgba(0,0,0,.5);-webkit-transition:color .25s ease;transition:color .25s ease}.ui.feed>.event>.content .meta a:hover,.ui.feed>.event>.content .meta a:hover .icon,.ui.feed>.event>.content .meta>.icon:hover{color:rgba(0,0,0,.8)}.ui.small.feed{font-size:.9em}.ui.feed{font-size:1em}.ui.large.feed{font-size:1.1em} .ui.feed{margin:1em}.ui.feed:first-child,.ui.feed:last-child{margin-top:0}.ui.feed>.event{display:table;width:100%;padding:.5rem 0;margin:0;background:0 0;border-top:none}.ui.feed>.event:first-child{border-top:0;padding-top:0}.ui.feed>.event:last-child{padding-bottom:0}.ui.feed>.event>.label{display:table-cell;width:2.5em;height:2.5em;vertical-align:top;text-align:left}.ui.feed>.event>.label .icon{opacity:1;font-size:1.5em;width:100%;padding:.25em;background:0 0;border:none;border-radius:none;color:rgba(0,0,0,.6)}.ui.feed>.event>.label img{width:100%;height:auto;border-radius:500rem}.ui.feed>.event>.label+.content{padding:.5em 0 .5em 1.5em}.ui.feed>.event>.content{display:table-cell;vertical-align:top;text-align:left;word-wrap:break-word}.ui.feed>.event:last-child>.content{padding-bottom:0}.ui.feed>.event>.content a{cursor:pointer}.ui.feed>.event>.content .date{margin:-.5rem 0 0;padding:0;font-weight:400;font-size:1em;font-style:normal;color:rgba(0,0,0,.4)}.ui.feed>.event>.content .summary{margin:0;font-size:1em;font-weight:700;color:rgba(0,0,0,.8)}.ui.feed>.event>.content .summary img{display:inline-block;width:auto;height:2em;margin:-.25em .25em 0 0;border-radius:.25em;vertical-align:middle}.ui.feed>.event>.content .user{display:inline-block;font-weight:700;margin-right:0;vertical-align:baseline}.ui.feed>.event>.content .user img{margin:-.25em .25em 0 0;width:auto;height:2em;vertical-align:middle}.ui.feed>.event>.content .summary>.date{display:inline-block;float:none;font-weight:400;font-size:.875em;font-style:normal;margin:0 0 0 .5em;padding:0;color:rgba(0,0,0,.4)}.ui.feed>.event>.content .extra{margin:.5em 0 0;background:0 0;padding:0;color:rgba(0,0,0,.8)}.ui.feed>.event>.content .extra.images img{display:inline-block;margin:0 .25em 0 0;width:6em}.ui.feed>.event>.content .extra.text{padding:.5em 1em;border-left:3px solid rgba(0,0,0,.2);font-size:1em;max-width:500px;line-height:1.33}.ui.feed>.event>.content .meta{display:inline-block;font-size:.875em;margin:.5em 0 0;background:0 0;border:none;border-radius:0;box-shadow:none;padding:0;color:rgba(0,0,0,.6)}.ui.feed>.event>.content .meta>*{position:relative;margin-left:.75em}.ui.feed>.event>.content .meta>:after{content:'';color:rgba(0,0,0,.2);top:0;left:-1em;opacity:1;position:absolute;vertical-align:top}.ui.feed>.event>.content .meta .like{color:'';-webkit-transition:.2s color ease;transition:.2s color ease}.ui.feed>.event>.content .meta .like:hover .icon{color:#ff2733}.ui.feed>.event>.content .meta .active.like .icon{color:#ef404a}.ui.feed>.event>.content .meta>:first-child{margin-left:0}.ui.feed>.event>.content .meta>:first-child::after{display:none}.ui.feed>.event>.content .meta a,.ui.feed>.event>.content .meta>.icon{cursor:pointer;opacity:1;color:rgba(0,0,0,.5);-webkit-transition:color .25s ease;transition:color .25s ease}.ui.feed>.event>.content .meta a:hover,.ui.feed>.event>.content .meta a:hover .icon,.ui.feed>.event>.content .meta>.icon:hover{color:rgba(0,0,0,.8)}.ui.small.feed{font-size:.9em}.ui.feed{font-size:1em}.ui.large.feed{font-size:1.1em}

2
build/minified/definitions/views/item.min.css

@ -8,7 +8,7 @@
* Released under the MIT license * Released under the MIT license
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* *
* Released: 09/20/2014 * Released: 09/21/2014
*/ */
.ui.items>.item{table-layout:fixed;display:table;margin:1em 0;width:100%;min-height:0;background:0 0;padding:0;border:none;border-radius:0;box-shadow:none;-webkit-transition:box-shadow .25s ease;transition:box-shadow .25s ease;z-index:''}.ui.items>.item a{cursor:pointer}.ui.items{margin:1.5em 0}.ui.items:first-child{margin-top:0}.ui.items:last-child{margin-bottom:0}.ui.items>.item{min-width:100%}.ui.items>.item:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item:first-child{margin-top:0}.ui.items>.item:last-child{margin-bottom:0}.ui.items>.item>.image{position:relative;display:table-cell;float:none;margin:0;padding:0;max-height:'';vertical-align:top}.ui.items>.item>.image>img{display:block;width:100%;height:auto;border-radius:.125rem;border:none}.ui.items>.item>.image:only-child>img{border-radius:0}.ui.items>.item>.image:not(.ui){width:175px}.ui.items>.item>.content{display:block;background:0 0;margin:0;padding:0;box-shadow:none;font-size:1em;border:none;border-radius:0}.ui.items>.item>.content:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item>.image+.content{width:100%;display:table-cell;margin-left:0;vertical-align:top;padding-left:1.5em}.ui.items>.item>.content>.header{display:inline-block;margin:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;color:rgba(0,0,0,.85)}.ui.items>.item>.content>.header:not(.ui){font-size:1.2em}.ui.items>.item>.content>.meta+.description{margin-top:.6em}.ui.items>.item .left.floated{float:left}.ui.items>.item [class*="right floated"]{float:right}.ui.items>.item .content img{display:inline-block;vertical-align:middle;width:2em}.ui.items>.item .avatar img,.ui.items>.item img.avatar{width:2em;height:2em;border-radius:500rem}.ui.items>.item>.content>.description{font-size:1.1em;line-height:1.2;color:rgba(0,0,0,.8)}.ui.items>.item>.content p{margin:0 0 .5em}.ui.items>.item>.content p:last-child{margin-bottom:0}.ui.items>.item .meta{font-size:1em;color:rgba(0,0,0,.6)}.ui.items>.item .meta *{margin-right:.3em}.ui.items>.item .meta :last-child{margin-right:0}.ui.items>.item .meta [class*="right floated"]{margin-right:0;margin-left:.3em}.ui.items>.item>.content a{color:#009fda;-webkit-transition:color .25s ease;transition:color .25s ease}.ui.items>.item>.content a:hover{color:#00b2f3}.ui.items>.item>.content>a.header{color:rgba(0,0,0,.85)}.ui.items>.item>.content>a.header:hover{color:#00b2f3}.ui.items>.item .meta a{color:rgba(0,0,0,.4)}.ui.items>.item .meta a:hover{color:rgba(0,0,0,.8)}.ui.items>.item>.content .star.icon{cursor:pointer;opacity:.75;-webkit-transition:color .25s ease;transition:color .25s ease}.ui.items>.item>.content .star.icon:hover{opacity:1;color:#ac9400}.ui.items>.item>.content .active.star.icon{color:#e9b539}.ui.items>.item>.content .like.icon{cursor:pointer;opacity:.75;-webkit-transition:color .25s ease;transition:color .25s ease}.ui.items>.item>.content .like.icon:hover{opacity:1;color:#ffadae}.ui.items>.item>.content .active.like.icon{color:#ef404a}.ui.items>.item .extra{display:block;position:relative;background:0 0;margin:1em 0 0;width:100%;padding:.25em 0 0;top:0;left:0;color:rgba(0,0,0,.4);box-shadow:none;-webkit-transition:color .25s ease;transition:color .25s ease;border-top:none}.ui.items>.item .extra>*{margin-right:.5em}.ui.items>.item .extra>[class*="right floated"]{margin-left:.5em}.ui.items>.item .extra:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item>.image+[class*="top aligned"].content{vertical-align:top}.ui.items>.item>.image+[class*="middle aligned"].content{vertical-align:middle}.ui.items>.item>.image+[class*="bottom aligned"].content{vertical-align:bottom}.ui.divided.items>.item{border-top:1px solid rgba(0,0,0,.1);margin:0;padding:1em 0}.ui.divided.items>.item:first-child{border-top:none;margin-top:0;padding-top:0}.ui.divided.items>.item:last-child{margin-bottom:0;padding-bottom:0}.ui.items a.item:hover,.ui.link.item>.item:hover{cursor:pointer}.ui.items a.item:hover .content .header,.ui.link.item>.item:hover .content .header{color:#00b2f3}.ui.items>.item{font-size:1em} .ui.items>.item{table-layout:fixed;display:table;margin:1em 0;width:100%;min-height:0;background:0 0;padding:0;border:none;border-radius:0;box-shadow:none;-webkit-transition:box-shadow .25s ease;transition:box-shadow .25s ease;z-index:''}.ui.items>.item a{cursor:pointer}.ui.items{margin:1.5em 0}.ui.items:first-child{margin-top:0}.ui.items:last-child{margin-bottom:0}.ui.items>.item{min-width:100%}.ui.items>.item:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item:first-child{margin-top:0}.ui.items>.item:last-child{margin-bottom:0}.ui.items>.item>.image{position:relative;display:table-cell;float:none;margin:0;padding:0;max-height:'';vertical-align:top}.ui.items>.item>.image>img{display:block;width:100%;height:auto;border-radius:.125rem;border:none}.ui.items>.item>.image:only-child>img{border-radius:0}.ui.items>.item>.image:not(.ui){width:175px}.ui.items>.item>.content{display:block;background:0 0;margin:0;padding:0;box-shadow:none;font-size:1em;border:none;border-radius:0}.ui.items>.item>.content:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item>.image+.content{width:100%;display:table-cell;margin-left:0;vertical-align:top;padding-left:1.5em}.ui.items>.item>.content>.header{display:inline-block;margin:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;color:rgba(0,0,0,.85)}.ui.items>.item>.content>.header:not(.ui){font-size:1.2em}.ui.items>.item>.content>.meta+.description{margin-top:.6em}.ui.items>.item .left.floated{float:left}.ui.items>.item [class*="right floated"]{float:right}.ui.items>.item .content img{display:inline-block;vertical-align:middle;width:2em}.ui.items>.item .avatar img,.ui.items>.item img.avatar{width:2em;height:2em;border-radius:500rem}.ui.items>.item>.content>.description{font-size:1.1em;line-height:1.2;color:rgba(0,0,0,.8)}.ui.items>.item>.content p{margin:0 0 .5em}.ui.items>.item>.content p:last-child{margin-bottom:0}.ui.items>.item .meta{font-size:1em;color:rgba(0,0,0,.6)}.ui.items>.item .meta *{margin-right:.3em}.ui.items>.item .meta :last-child{margin-right:0}.ui.items>.item .meta [class*="right floated"]{margin-right:0;margin-left:.3em}.ui.items>.item>.content a{color:#009fda;-webkit-transition:color .25s ease;transition:color .25s ease}.ui.items>.item>.content a:hover{color:#00b2f3}.ui.items>.item>.content>a.header{color:rgba(0,0,0,.85)}.ui.items>.item>.content>a.header:hover{color:#00b2f3}.ui.items>.item .meta a{color:rgba(0,0,0,.4)}.ui.items>.item .meta a:hover{color:rgba(0,0,0,.8)}.ui.items>.item>.content .star.icon{cursor:pointer;opacity:.75;-webkit-transition:color .25s ease;transition:color .25s ease}.ui.items>.item>.content .star.icon:hover{opacity:1;color:#ac9400}.ui.items>.item>.content .active.star.icon{color:#e9b539}.ui.items>.item>.content .like.icon{cursor:pointer;opacity:.75;-webkit-transition:color .25s ease;transition:color .25s ease}.ui.items>.item>.content .like.icon:hover{opacity:1;color:#ffadae}.ui.items>.item>.content .active.like.icon{color:#ef404a}.ui.items>.item .extra{display:block;position:relative;background:0 0;margin:1em 0 0;width:100%;padding:.25em 0 0;top:0;left:0;color:rgba(0,0,0,.4);box-shadow:none;-webkit-transition:color .25s ease;transition:color .25s ease;border-top:none}.ui.items>.item .extra>*{margin-right:.5em}.ui.items>.item .extra>[class*="right floated"]{margin-left:.5em}.ui.items>.item .extra:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item>.image+[class*="top aligned"].content{vertical-align:top}.ui.items>.item>.image+[class*="middle aligned"].content{vertical-align:middle}.ui.items>.item>.image+[class*="bottom aligned"].content{vertical-align:bottom}.ui.divided.items>.item{border-top:1px solid rgba(0,0,0,.1);margin:0;padding:1em 0}.ui.divided.items>.item:first-child{border-top:none;margin-top:0;padding-top:0}.ui.divided.items>.item:last-child{margin-bottom:0;padding-bottom:0}.ui.items a.item:hover,.ui.link.item>.item:hover{cursor:pointer}.ui.items a.item:hover .content .header,.ui.link.item>.item:hover .content .header{color:#00b2f3}.ui.items>.item{font-size:1em}

2
build/minified/definitions/views/statistic.min.css

File diff suppressed because one or more lines are too long

15
build/packaged/definitions/css/semantic.css

@ -5459,10 +5459,10 @@
.ui.button { .ui.button {
cursor: pointer; cursor: pointer;
display: inline-block; display: inline-block;
vertical-align: baseline;
min-height: 1em; min-height: 1em;
outline: none; outline: none;
border: none; border: none;
vertical-align: baseline;
background-color: #e0e0e0; background-color: #e0e0e0;
color: rgba(0, 0, 0, 0.6); color: rgba(0, 0, 0, 0.6);
margin: 0em 0.25em 0em 0em; margin: 0em 0.25em 0em 0em;
@ -5547,7 +5547,7 @@
.ui.loading.button { .ui.loading.button {
position: relative; position: relative;
cursor: default; cursor: default;
background-color: #ffffff !important; background: rgba(0, 0, 0, 0.04) !important;
text-shadow: none !important; text-shadow: none !important;
color: transparent !important; color: transparent !important;
-webkit-transition: all 0s linear; -webkit-transition: all 0s linear;
@ -19543,6 +19543,13 @@ b Types
z-index: 11; z-index: 11;
will-change: transform, opacity; will-change: transform, opacity;
} }
/*--------------
Hidden Input
---------------*/
.ui.dropdown > input[type="hidden"],
.ui.dropdown > select {
display: none !important;
}
/*-------------- /*--------------
Dropdown Icon Dropdown Icon
---------------*/ ---------------*/
@ -19709,10 +19716,6 @@ select.ui.dropdown {
margin: 0em; margin: 0em;
visibility: hidden; visibility: hidden;
} }
.ui.selection.dropdown > input[type="hidden"],
.ui.selection.dropdown > select {
display: none !important;
}
.ui.selection.dropdown > .text { .ui.selection.dropdown > .text {
margin-right: 2em; margin-right: 2em;
} }

4
build/packaged/definitions/css/semantic.min.css

File diff suppressed because one or more lines are too long

36
build/packaged/definitions/javascript/semantic.js

@ -6743,7 +6743,6 @@ $.fn.dropdown = function(parameters) {
initialize: function() { initialize: function() {
module.debug('Initializing dropdown', settings); module.debug('Initializing dropdown', settings);
module.setup.layout(); module.setup.layout();
module.save.defaults(); module.save.defaults();
module.set.selected(); module.set.selected();
@ -6769,6 +6768,9 @@ $.fn.dropdown = function(parameters) {
$item $item
.off(eventNamespace) .off(eventNamespace)
; ;
$search
.off(eventNamespace)
;
$module $module
.off(eventNamespace) .off(eventNamespace)
.removeData(moduleNamespace) .removeData(moduleNamespace)
@ -6818,21 +6820,23 @@ $.fn.dropdown = function(parameters) {
module.debug('Dropdown initialized on a select', selectValues); module.debug('Dropdown initialized on a select', selectValues);
// see if select exists inside a dropdown // see if select exists inside a dropdown
$input = $module; $input = $module;
if($input.parents(selector.dropdown).size() > 0) {
if($module.closest(className.dropdown) > 0) {
module.debug('Creating dropdown menu only from template'); module.debug('Creating dropdown menu only from template');
$module = $module.closest(className.dropdown); $module = $input.closest(selector.dropdown);
$('<div />') if($module.find('.' + className.dropdown).size() === 0) {
.addClass(className.menu) $('<div />')
.html( settings.templates.menu( selectValues )) .addClass(className.menu)
.appendTo($module) .html( settings.templates.menu( selectValues ))
; .appendTo($module)
;
}
} }
else { else {
module.debug('Creating entire dropdown from template'); module.debug('Creating entire dropdown from template');
$module = $('<div />') $module = $('<div />')
.attr('class', $input.attr('class') ) .attr('class', $input.attr('class') )
.addClass(className.selection) .addClass(className.selection)
.addClass(className.dropdown)
.html( settings.templates.dropdown(selectValues) ) .html( settings.templates.dropdown(selectValues) )
.insertBefore($input) .insertBefore($input)
; ;
@ -7398,9 +7402,11 @@ $.fn.dropdown = function(parameters) {
} }
else { else {
if( optionValue == value ) { if( optionValue == value ) {
module.verbose('Found select item by value', optionValue, value);
$selectedItem = $(this); $selectedItem = $(this);
} }
else if( !$selectedItem && optionText == value ) { else if( !$selectedItem && optionText == value ) {
module.verbose('Found select item by text', optionText, value);
$selectedItem = $(this); $selectedItem = $(this);
} }
} }
@ -8002,11 +8008,12 @@ $.fn.dropdown.settings = {
}, },
selector : { selector : {
text : '> .text:not(.icon)', dropdown : '.ui.dropdown',
input : '> input[type="hidden"], > select', text : '> .text:not(.icon)',
search : '> .search', input : '> input[type="hidden"], > select',
menu : '.menu', search : '> .search, .menu > .search',
item : '.item' menu : '.menu',
item : '.item'
}, },
className : { className : {
@ -8031,7 +8038,6 @@ $.fn.dropdown.settings.templates = {
values = select.values || {}, values = select.values || {},
html = '' html = ''
; ;
html += '<div class="menu">';
$.each(select.values, function(value, name) { $.each(select.values, function(value, name) {
if(value === name) { if(value === name) {
html += '<div class="item">' + name + '</div>'; html += '<div class="item">' + name + '</div>';

8
build/packaged/definitions/javascript/semantic.min.js

File diff suppressed because one or more lines are too long

4
build/uncompressed/definitions/elements/button.css

@ -204,10 +204,10 @@
.ui.button { .ui.button {
cursor: pointer; cursor: pointer;
display: inline-block; display: inline-block;
vertical-align: baseline;
min-height: 1em; min-height: 1em;
outline: none; outline: none;
border: none; border: none;
vertical-align: baseline;
background-color: #e0e0e0; background-color: #e0e0e0;
color: rgba(0, 0, 0, 0.6); color: rgba(0, 0, 0, 0.6);
margin: 0em 0.25em 0em 0em; margin: 0em 0.25em 0em 0em;
@ -292,7 +292,7 @@
.ui.loading.button { .ui.loading.button {
position: relative; position: relative;
cursor: default; cursor: default;
background-color: #ffffff !important; background: rgba(0, 0, 0, 0.04) !important;
text-shadow: none !important; text-shadow: none !important;
color: transparent !important; color: transparent !important;
-webkit-transition: all 0s linear; -webkit-transition: all 0s linear;

11
build/uncompressed/definitions/modules/dropdown.css

@ -233,6 +233,13 @@ b Types
z-index: 11; z-index: 11;
will-change: transform, opacity; will-change: transform, opacity;
} }
/*--------------
Hidden Input
---------------*/
.ui.dropdown > input[type="hidden"],
.ui.dropdown > select {
display: none !important;
}
/*-------------- /*--------------
Dropdown Icon Dropdown Icon
---------------*/ ---------------*/
@ -399,10 +406,6 @@ select.ui.dropdown {
margin: 0em; margin: 0em;
visibility: hidden; visibility: hidden;
} }
.ui.selection.dropdown > input[type="hidden"],
.ui.selection.dropdown > select {
display: none !important;
}
.ui.selection.dropdown > .text { .ui.selection.dropdown > .text {
margin-right: 2em; margin-right: 2em;
} }

36
build/uncompressed/definitions/modules/dropdown.js

@ -70,7 +70,6 @@ $.fn.dropdown = function(parameters) {
initialize: function() { initialize: function() {
module.debug('Initializing dropdown', settings); module.debug('Initializing dropdown', settings);
module.setup.layout(); module.setup.layout();
module.save.defaults(); module.save.defaults();
module.set.selected(); module.set.selected();
@ -96,6 +95,9 @@ $.fn.dropdown = function(parameters) {
$item $item
.off(eventNamespace) .off(eventNamespace)
; ;
$search
.off(eventNamespace)
;
$module $module
.off(eventNamespace) .off(eventNamespace)
.removeData(moduleNamespace) .removeData(moduleNamespace)
@ -145,21 +147,23 @@ $.fn.dropdown = function(parameters) {
module.debug('Dropdown initialized on a select', selectValues); module.debug('Dropdown initialized on a select', selectValues);
// see if select exists inside a dropdown // see if select exists inside a dropdown
$input = $module; $input = $module;
if($input.parents(selector.dropdown).size() > 0) {
if($module.closest(className.dropdown) > 0) {
module.debug('Creating dropdown menu only from template'); module.debug('Creating dropdown menu only from template');
$module = $module.closest(className.dropdown); $module = $input.closest(selector.dropdown);
$('<div />') if($module.find('.' + className.dropdown).size() === 0) {
.addClass(className.menu) $('<div />')
.html( settings.templates.menu( selectValues )) .addClass(className.menu)
.appendTo($module) .html( settings.templates.menu( selectValues ))
; .appendTo($module)
;
}
} }
else { else {
module.debug('Creating entire dropdown from template'); module.debug('Creating entire dropdown from template');
$module = $('<div />') $module = $('<div />')
.attr('class', $input.attr('class') ) .attr('class', $input.attr('class') )
.addClass(className.selection) .addClass(className.selection)
.addClass(className.dropdown)
.html( settings.templates.dropdown(selectValues) ) .html( settings.templates.dropdown(selectValues) )
.insertBefore($input) .insertBefore($input)
; ;
@ -725,9 +729,11 @@ $.fn.dropdown = function(parameters) {
} }
else { else {
if( optionValue == value ) { if( optionValue == value ) {
module.verbose('Found select item by value', optionValue, value);
$selectedItem = $(this); $selectedItem = $(this);
} }
else if( !$selectedItem && optionText == value ) { else if( !$selectedItem && optionText == value ) {
module.verbose('Found select item by text', optionText, value);
$selectedItem = $(this); $selectedItem = $(this);
} }
} }
@ -1329,11 +1335,12 @@ $.fn.dropdown.settings = {
}, },
selector : { selector : {
text : '> .text:not(.icon)', dropdown : '.ui.dropdown',
input : '> input[type="hidden"], > select', text : '> .text:not(.icon)',
search : '> .search', input : '> input[type="hidden"], > select',
menu : '.menu', search : '> .search, .menu > .search',
item : '.item' menu : '.menu',
item : '.item'
}, },
className : { className : {
@ -1358,7 +1365,6 @@ $.fn.dropdown.settings.templates = {
values = select.values || {}, values = select.values || {},
html = '' html = ''
; ;
html += '<div class="menu">';
$.each(select.values, function(value, name) { $.each(select.values, function(value, name) {
if(value === name) { if(value === name) {
html += '<div class="item">' + name + '</div>'; html += '<div class="item">' + name + '</div>';

2
server/partials/header.html.eco

@ -19,9 +19,11 @@
<i class="help icon" data-title="What are Modules?" data-content="Modules are UI elements that include behaviors as part of their definition. Modules require some knowledge of Javascript to trigger."></i> <i class="help icon" data-title="What are Modules?" data-content="Modules are UI elements that include behaviors as part of their definition. Modules require some knowledge of Javascript to trigger."></i>
</a> </a>
<% end %> <% end %>
<% if @document.type is 'UI Element' or @document.type is 'UI View' or @document.type is 'UI Collection' or @document.type is 'UI Module': %>
<div class="ui right floated basic overview button"> <div class="ui right floated basic overview button">
Definition Definition
</div> </div>
<% end %>
<% if @document.themes?: %> <% if @document.themes?: %>
<div class="ui floating dropdown theme basic button" data-element="<%= @document.element %>" data-type="<%= @document.elementType %>"> <div class="ui floating dropdown theme basic button" data-element="<%= @document.element %>" data-type="<%= @document.elementType %>">
<span class="text">Theme</span> <span class="text">Theme</span>

Loading…
Cancel
Save