Browse Source

Iteration on kitchen

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

30
build/less/definitions/behaviors/form.js

@ -757,6 +757,36 @@ $.fn.form.settings = {
urlRegExp = /(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/
;
return urlRegExp.test(value);
},
integer: function(value, range) {
var
intRegExp = /^\-?\d+$/,
min,
max,
parts
;
if (range === undefined || range === '' || range === '..') {
// do nothing
}
else if (range.indexOf('..') == -1) {
if (intRegExp.test(range)) {
min = max = range - 0;
}
}
else {
parts = range.split('..', 2);
if (intRegExp.test(parts[0])) {
min = parts[0] - 0;
}
if (intRegExp.test(parts[1])) {
max = parts[1] - 0;
}
}
return (
intRegExp.test(value) &&
(min === undefined || value >= min) &&
(max === undefined || value <= max)
);
}
}

18
build/less/definitions/collections/form.less

@ -154,6 +154,24 @@
width: auto;
}
/*--------------------
Basic Select
---------------------*/
.ui.form select {
display: block;
height: auto;
width: 100%;
background: @selectBackground;
border: @selectBorder;
border-radius: @selectBorderRadius;
box-shadow: @selectBoxShadow;
padding: @selectPadding;
color: @selectColor;
transition: @selectTransition;
}
/*--------------------
Dropdown
---------------------*/

20
build/less/definitions/elements/label.less

@ -80,8 +80,9 @@ a.ui.label {
/* Detail */
.ui.label .detail {
display: inline-block;
vertical-align: top;
font-weight: @detailFontWeight;
margin-left: @detailMargin;
font-weight: bold;
opacity: @detailOpacity;
}
.ui.label .detail .icon {
@ -118,12 +119,12 @@ a.ui.label {
--------------------*/
/* Padding on next content after a label */
.ui.top.attached.label:first-child + * {
margin-top: @attachedSegmentPadding;
.ui.top.attached.label:first-child + :not(.attached) {
margin-top: @attachedSegmentPadding !important;
}
.ui.bottom.attached.label:first-child ~ :last-child {
.ui.bottom.attached.label:first-child ~ :last-child:not(.attached) {
margin-top: 0em;
margin-bottom: @attachedSegmentPadding;
margin-bottom: @attachedSegmentPadding !important;
}
@ -440,7 +441,6 @@ a.ui.label {
opacity: 0.5;
}
/*-------------------
Hover
--------------------*/
@ -948,9 +948,17 @@ a.ui.yellow.label:hover:before {
.ui.large.label {
font-size: @large;
}
.ui.big.labels .label,
.ui.big.label {
font-size: @big;
}
.ui.huge.labels .label,
.ui.huge.label {
font-size: @huge;
}
.ui.massive.labels .label,
.ui.massive.label {
font-size: @massive;
}
.loadUIOverrides();

6
build/less/definitions/elements/segment.less

@ -458,13 +458,14 @@
box-shadow: @attachedBoxShadow;
border: @attachedBorder;
}
.ui.segment.attached + .ui.segment.attached {
border-top: none;
}
/* Top */
.ui[class*="top attached"].segment {
top: @attachedTopOffset;
bottom: 0px;
border-bottom: none;
margin-top: @margin;
margin-bottom: 0em;
border-radius: @borderRadius @borderRadius 0em 0em;
@ -475,7 +476,6 @@
/* Bottom */
.ui.segment[class*="bottom attached"] {
border-top: none;
top: @attachedBottomOffset;
bottom: 0px;
margin-top: 0em;

1
build/less/definitions/elements/step.less

@ -268,6 +268,7 @@
width: 100%;
}
/* Attached */
.attached.ui.steps {
margin: 0em;

2
build/less/definitions/modules/dimmer.less

@ -48,7 +48,7 @@
transition: @transition;
user-select: none;
will-transform: opacity;
will-change: opacity;
z-index: @zIndex;
}

3
build/less/definitions/modules/modal.js

@ -78,6 +78,7 @@ $.fn.modal = function(parameters) {
}
$dimmable = $context
.dimmer({
debug : settings.debug,
closable : false,
useCSS : true,
duration : {
@ -259,6 +260,7 @@ $.fn.modal = function(parameters) {
module.debug('Showing modal with css animations');
$module
.transition({
debug : settings.debug,
animation : settings.transition + ' in',
duration : settings.duration,
complete : function() {
@ -341,6 +343,7 @@ $.fn.modal = function(parameters) {
if(settings.transition && $.fn.transition !== undefined && $module.transition('is supported')) {
$module
.transition({
debug : settings.debug,
animation : settings.transition + ' out',
duration : settings.duration,
complete : function() {

17
build/less/definitions/modules/popup.js

@ -202,7 +202,7 @@ $.fn.popup = function(parameters) {
.appendTo( $context )
;
}
if(settings.hoverable && module.cache === undefined ) {
if(settings.hoverable) {
module.bind.popup();
}
$.proxy(settings.onCreate, $popup)();
@ -211,6 +211,9 @@ $.fn.popup = function(parameters) {
module.verbose('Pre-existing popup found, reverting to inline');
settings.inline = true;
module.refresh();
if(settings.hoverable) {
module.bind.popup();
}
}
else {
module.debug('No content specified skipping display', element);
@ -622,13 +625,11 @@ $.fn.popup = function(parameters) {
bind: {
popup: function() {
if(settings.hoverable) {
module.verbose('Allowing hover events on popup to prevent closing');
$popup
.on('mouseenter', module.event.start)
.on('mouseleave', module.event.end)
;
}
module.verbose('Allowing hover events on popup to prevent closing');
$popup
.on('mouseenter', module.event.start)
.on('mouseleave', module.event.end)
;
},
close:function() {
if(settings.on == 'click' && settings.closable) {

49
build/less/definitions/modules/progress.less

@ -38,26 +38,24 @@
}
/* Indicating */
.ui.indicating.progress .bar[style^="width: 3"]{
background-color: #D9A65C;
.ui.indicating.progress .bar[style^="width: 3"] {
background-color: @indicatingSecondColor;
}
.ui.indicating.progress .bar[style^="width: 4"],
.ui.indicating.progress .bar[style^="width: 5"] {
background-color: #E6BB48;
background-color: @indicatingThirdColor;
}
.ui.indicating.progress .bar[style^="width: 6"] {
background-color: #DDC928;
background-color: @indicatingFourthColor;
}
.ui.indicating.progress .bar[style^="width: 7"],
.ui.indicating.progress .bar[style^="width: 8"] {
background-color: #B4D95C;
background-color: @indicatingFifthColor;
}
.ui.indicating.progress .bar[style^="width: 9"],
.ui.indicating.progress .bar[style^="width: 100"] {
background-color: #66DA81;
background-color: @indicatingSixthColor;
}
/* Single Digits Last */
.ui.indicating.progress .bar[style^="width: 1%"],
.ui.indicating.progress .bar[style^="width: 2%"],
.ui.indicating.progress .bar[style^="width: 3%"],
@ -69,7 +67,40 @@
.ui.indicating.progress .bar[style^="width: 9%"],
.ui.indicating.progress .bar[style^="width: 1"],
.ui.indicating.progress .bar[style^="width: 2"] {
background-color: #D95C5C;
background-color: @indicatingFirstColor;
}
/* Single Digits Last */
.ui.indicating.progress .bar[style^="width: 1%"] + .label,
.ui.indicating.progress .bar[style^="width: 2%"] + .label,
.ui.indicating.progress .bar[style^="width: 3%"] + .label,
.ui.indicating.progress .bar[style^="width: 4%"] + .label,
.ui.indicating.progress .bar[style^="width: 5%"] + .label,
.ui.indicating.progress .bar[style^="width: 6%"] + .label,
.ui.indicating.progress .bar[style^="width: 7%"] + .label,
.ui.indicating.progress .bar[style^="width: 8%"] + .label,
.ui.indicating.progress .bar[style^="width: 9%"] + .label,
.ui.indicating.progress .bar[style^="width: 1"] + .label,
.ui.indicating.progress .bar[style^="width: 2"] + .label {
color: @indicatingFirstColor;
}
.ui.indicating.progress .bar[style^="width: 3"] + .label {
color: @indicatingSecondColor;
}
.ui.indicating.progress .bar[style^="width: 4"] + .label,
.ui.indicating.progress .bar[style^="width: 5"] + .label {
color: @indicatingThirdColor;
}
.ui.indicating.progress .bar[style^="width: 6"] + .label {
color: @indicatingFourthColor;
}
.ui.indicating.progress .bar[style^="width: 7"] + .label,
.ui.indicating.progress .bar[style^="width: 8"] + .label {
color: @indicatingFifthColor;
}
.ui.indicating.progress .bar[style^="width: 9"] + .label,
.ui.indicating.progress .bar[style^="width: 100"] + .label {
color: @indicatingSixthColor;
}
/*******************************

26
build/less/definitions/modules/transition.js

@ -221,13 +221,13 @@ $.fn.transition = function() {
.one(animationEnd + eventNamespace, module.complete)
;
module.set.duration(settings.duration);
module.debug('Starting tween', settings.animation, $module.attr('class'));
module.debug('Starting tween', animation, $module.attr('class'));
},
display: function() {
var
style = $module.attr('style') || '',
style = module.get.style(),
displayType = module.get.displayType(),
overrideStyle = style + ';display: ' + displayType + ' !important;'
overrideStyle = style + 'display: ' + displayType + ' !important;'
;
if( $module.css('display') !== displayType ) {
module.verbose('Setting inline visibility to', displayType);
@ -306,9 +306,13 @@ $.fn.transition = function() {
module.verbose('Saving existence of transition', animation, exists);
},
conditions: function() {
var
clasName = $module.attr('class') || false,
style = $module.attr('style') || ''
;
module.cache = {
className : $module.attr('class'),
style : $module.attr('style')
style : module.get.style()
};
module.verbose('Saving original attributes', module.cache);
}
@ -329,12 +333,6 @@ $.fn.transition = function() {
module.verbose('Restoring original style attribute', module.cache.style);
$module.attr('style', module.cache.style);
}
else {
if(module.get.displayType() === 'block') {
module.verbose('Removing inline style override, element defaults to block');
$module.removeAttr('style');
}
}
if(module.is.looping()) {
module.remove.looping();
}
@ -431,6 +429,12 @@ $.fn.transition = function() {
}
return module.displayType;
},
style: function() {
var
style = $module.attr('style') || ''
;
return style.replace(/display.*?;/, '');
},
transitionExists: function(animation) {
return $.fn.transition.exists[animation];
},
@ -499,11 +503,11 @@ $.fn.transition = function() {
module.verbose('Determining whether animation exists');
$clone = $('<' + tagName + ' />').addClass( elementClass ).insertAfter($module);
currentAnimation = $clone
.addClass(animation)
.removeClass(className.inward)
.removeClass(className.outward)
.addClass(className.animating)
.addClass(className.transition)
.addClass(animation)
.css(animationName)
;
inAnimation = $clone

9
build/less/themes/packages/default/collections/form.variables

@ -51,6 +51,15 @@
;
@inputBoxShadow: 0em 0em 0em 0em transparent inset;
/* Select */
@selectBackground: @white;
@selectBorderRadius: @inputBorderRadius;
@selectBorder: @inputBorder;
@selectPadding: 0.62em @inputHorizontalPadding;
@selectBoxShadow: @inputBoxShadow;
@selectTransition: @inputTransition;
@selectColor: @inputColor;
/* Text Area */
@textAreaPadding: @inputVerticalPadding @inputHorizontalPadding;
@textAreaHeight: 12em;

2
build/less/themes/packages/default/elements/image.variables

@ -20,7 +20,7 @@
/* Avatar */
@avatarSize: 2.5em;
@avatarMargin: @imageHorizontalMargin;
@avatarMargin: 0.25em;
/*-------------------

16
build/less/themes/packages/default/elements/label.variables

@ -34,6 +34,7 @@
@linkOpacity: 0.8;
@iconDistance: 0.75em;
@detailFontWeight: bold;
@detailOpacity: 0.8;
@detailIconDistance: 0.25em;
@detailMargin: 1em;
@ -139,9 +140,12 @@
--------------------*/
/* Sizing */
@mini: 0.7rem;
@tiny: 0.75rem;
@small: 0.8rem;
@medium: 0.875rem;
@large: 1rem;
@huge: 1.25rem;
@mini : 0.6428em;
@tiny : 0.7142em;
@small : 0.7857em;
@medium : 0.8571em;
@large : 1em;
@big : 1.1428em;
@huge : 1.2857em;
@massive : 1.4285em;

4
build/less/themes/packages/default/modules/checkbox.variables

@ -78,17 +78,17 @@
/* Slider */
@sliderHandleSize: 1.5rem;
@sliderHandleOffset: (1rem - @sliderHandleSize) / 2;
@sliderLineWidth: 3.5rem;
@sliderWidth: @sliderLineWidth;
@sliderHeight: 1rem;
@sliderHeight: (@sliderHandleSize + @sliderHandleOffset);
@sliderLineHeight: 0.25rem;
@sliderLineVerticalOffset: 0.4rem;
@sliderLineColor: @neutralCheckbox;
@sliderLineRadius: @circularRadius;
@sliderHandleOffset: (1rem - @sliderHandleSize) / 2;
@sliderTravelDistance: @sliderLineWidth - @sliderHandleSize;
@sliderLabelDistance: @sliderLineWidth + 1rem;

12
build/less/themes/packages/default/modules/progress.variables

@ -59,6 +59,18 @@
@labelTextAlign: center;
@labelTransition: color 1s @defaultEasing;
/*-------------------
Types
--------------------*/
@indicatingFirstColor: #D95C5C;
@indicatingSecondColor: #D9A65C;
@indicatingThirdColor: #E6BB48;
@indicatingFourthColor: #DDC928;
@indicatingFifthColor: #B4D95C;
@indicatingSixthColor: #66DA81;
/*-------------------
States
--------------------*/

30
build/less/themes/packages/default/modules/transition.overrides

@ -101,7 +101,7 @@
---------------*/
.slide.down.transition.in {
animation-name: slide;
animation-name: slideIn;
transform-origin: 50% 0%;
-ms-transform-origin: 50% 0%;
-webkit-transform-origin: 50% 0%;
@ -112,7 +112,7 @@
}
.slide.up.transition.in {
animation-name: slide;
animation-name: slideIn;
transform-origin: 50% 100%;
}
.slide.up.transition.out {
@ -120,7 +120,7 @@
transform-origin: 50% 100%;
}
@keyframes slide {
@keyframes slideIn {
0% {
opacity: 0;
transform: scaleY(0);
@ -153,21 +153,21 @@
}
.horizontal.flip.transition.in,
.horizontal.flip.transition.out {
animation-name: horizontalFlip;
animation-name: horizontalFlipIn;
}
.horizontal.flip.transition.out {
animation-name: horizontalFlipOut;
}
.vertical.flip.transition.in,
.vertical.flip.transition.out {
animation-name: verticalFlip;
animation-name: verticalFlipIn;
}
.vertical.flip.transition.out {
animation-name: verticalFlipOut;
}
/* Horizontal */
@keyframes horizontalFlip {
@keyframes horizontalFlipIn {
0% {
transform: rotateY(-90deg);
opacity: 0;
@ -190,7 +190,7 @@
}
/* Vertical */
@keyframes verticalFlip {
@keyframes verticalFlipIn {
0% {
transform: rotateX(-90deg);
opacity: 0;
@ -216,21 +216,21 @@
---------------*/
.fade.transition.in {
animation-name: fade;
animation-name: fadeIn;
}
.fade.transition.out {
animation-name: fadeOut;
}
.fade.up.transition.in {
animation-name: fadeUp;
animation-name: fadeUpIn;
}
.fade.up.transition.out {
animation-name: fadeUpOut;
}
.fade.down.transition.in {
animation-name: fadeDown;
animation-name: fadeDownIn;
}
.fade.down.transition.out {
animation-name: fadeDownOut;
@ -238,7 +238,7 @@
/* Fade */
@keyframes fade {
@keyframes fadeIn {
0% {
opacity: 0;
}
@ -257,7 +257,7 @@
}
/* Fade Up */
@keyframes fadeUp {
@keyframes fadeUpIn {
0% {
opacity: 0;
transform: translateY(10%);
@ -280,7 +280,7 @@
}
/* Fade Down */
@keyframes fadeDown {
@keyframes fadeDownIn {
0% {
opacity: 0;
transform: translateY(-10%);
@ -306,14 +306,14 @@
---------------*/
.scale.transition.in {
animation-name: scale;
animation-name: scaleIn;
}
.scale.transition.out {
animation-name: scaleOut;
}
/* Scale */
@keyframes scale {
@keyframes scaleIn {
0% {
opacity: 0;
transform: scale(0.7);

2
build/minified/definitions/behaviors/form.min.js

File diff suppressed because one or more lines are too long

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

@ -8,7 +8,7 @@
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/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}

4
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
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/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-weight:700;margin:0}.ui.message .header:not(.ui){font-size:1.1em}.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:1.15em;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:.9285em}.ui.message{font-size:1em}.ui.large.message{font-size:1.1428em}.ui.huge.message{font-size:1.4285em}.ui.massive.message{font-size:1.7142em}

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

File diff suppressed because one or more lines are too long

2
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
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/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;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.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{font-size:1rem}

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

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

@ -8,7 +8,7 @@
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/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:.25em;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

File diff suppressed because one or more lines are too long

4
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
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/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}

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

@ -8,7 +8,7 @@
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/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(39,41,43,.15)}.ui.right.dividing.rail{border-left:1px solid rgba(39,41,43,.15);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
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/2014
*/
.ui.reveal{display:inline-block;position:relative!important;z-index:3!important;font-size:0!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.slide.reveal{position:relative!important;display:block;overflow:hidden!important;white-space:nowrap}.ui.slide.reveal>.content{display:block;float:left;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>.content{font-size:1rem!important}

4
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
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/2014
*/
*,:after,:before{box-sizing:border-box}input[type=email],input[type=password],input[type=search],input[type=text]{-webkit-appearance:none;-moz-appearance:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}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:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}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}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

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

@ -8,7 +8,7 @@
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/2014
*/
@import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);*,:after,:before{box-sizing:border-box}body,html{height:100%;font-smoothing:antialiased}body{margin:0;padding:0;min-width:278px;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:rgba(255,255,160,.4);color:rgba(0,0,0,.8)}::-moz-selection{background-color:rgba(255,255,160,.4);color:rgba(0,0,0,.8)}::selection{background-color:rgba(255,255,160,.4);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
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/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}

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

File diff suppressed because one or more lines are too long

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

@ -8,7 +8,7 @@
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/2014
*/
.dimmable{position:relative}.ui.dimmer{display:none;position:absolute;top:0!important;left:0!important;width:100%;height:100%;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;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;width:0;height:0;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:100%;height:100%;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-change: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;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;width:0;height:0;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)}

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

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/modal.min.js

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
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/2014
*/
.ui.nag{display:none;opacity:.95;position:relative;top:0;left:0;z-index:999;min-height:0;width:100%;margin:0;padding:.75em 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
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/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}

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

File diff suppressed because one or more lines are too long

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

File diff suppressed because one or more lines are too long

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
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/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}

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

@ -8,7 +8,7 @@
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/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.shape .side>*{-webkit-backface-visibility:visible!important;backface-visibility:visible!important}.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
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/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}

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

@ -8,7 +8,7 @@
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/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}

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

File diff suppressed because one or more lines are too long

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

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
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/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}

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
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/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(39,41,43,.15)}.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
* http://opensource.org/licenses/MIT
*
* Released: 10/07/2014
* Released: 10/08/2014
*/
.ui.feed{margin:1em 0}.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 .2s ease;transition:color .2s 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

File diff suppressed because one or more lines are too long

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

File diff suppressed because one or more lines are too long

171
build/packaged/definitions/css/semantic.css

@ -518,6 +518,7 @@
/* Form Label */
/* Grouped / Inline Labels */
/* Input */
/* Select */
/* Text Area */
/* Checkbox */
/* Divider */
@ -659,6 +660,7 @@
/* Form Label */
/* Grouped / Inline Labels */
/* Input */
/* Select */
/* Text Area */
/* Checkbox */
/* Divider */
@ -817,6 +819,22 @@
.ui.form input.attached {
width: auto;
}
/*--------------------
Basic Select
---------------------*/
.ui.form select {
display: block;
height: auto;
width: 100%;
background: #ffffff;
border: 1px solid rgba(39, 41, 43, 0.15);
border-radius: 0.3125em;
box-shadow: 0em 0em 0em 0em transparent inset;
padding: 0.62em 1em;
color: rgba(0, 0, 0, 0.8);
-webkit-transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
/*--------------------
Dropdown
---------------------*/
@ -13975,7 +13993,7 @@ img.ui.bordered.image {
.ui.avatar.images img,
.ui.avatar.image img,
.ui.avatar.image {
margin-right: 0.25rem;
margin-right: 0.25em;
display: inline-block;
width: 2.5em;
height: 2.5em;
@ -15087,8 +15105,9 @@ a.ui.label {
/* Detail */
.ui.label .detail {
display: inline-block;
margin-left: 1em;
vertical-align: top;
font-weight: bold;
margin-left: 1em;
opacity: 0.8;
}
.ui.label .detail .icon {
@ -15119,12 +15138,12 @@ a.ui.label {
Coupling
--------------------*/
/* Padding on next content after a label */
.ui.top.attached.label:first-child + * {
margin-top: 2rem;
.ui.top.attached.label:first-child + :not(.attached) {
margin-top: 2rem !important;
}
.ui.bottom.attached.label:first-child ~ :last-child {
.ui.bottom.attached.label:first-child ~ :last-child:not(.attached) {
margin-top: 0em;
margin-bottom: 2rem;
margin-bottom: 2rem !important;
}
/*******************************
Types
@ -15842,27 +15861,35 @@ a.ui.yellow.label:hover:before {
--------------------*/
.ui.mini.labels .label,
.ui.mini.label {
font-size: 0.7rem;
font-size: 0.6428em;
}
.ui.tiny.labels .label,
.ui.tiny.label {
font-size: 0.75rem;
font-size: 0.7142em;
}
.ui.small.labels .label,
.ui.small.label {
font-size: 0.8rem;
font-size: 0.7857em;
}
.ui.labels .label,
.ui.label {
font-size: 0.875rem;
font-size: 0.8571em;
}
.ui.large.labels .label,
.ui.large.label {
font-size: 1rem;
font-size: 1em;
}
.ui.big.labels .label,
.ui.big.label {
font-size: 1.1428em;
}
.ui.huge.labels .label,
.ui.huge.label {
font-size: 1.25rem;
font-size: 1.2857em;
}
.ui.massive.labels .label,
.ui.massive.label {
font-size: 1.4285em;
}
/*******************************
Overrides
@ -18906,11 +18933,13 @@ ol.ui.horizontal.list li:before,
box-shadow: none;
border: 1px solid #d4d4d5;
}
.ui.segment.attached + .ui.segment.attached {
border-top: none;
}
/* Top */
.ui[class*="top attached"].segment {
top: 0px;
bottom: 0px;
border-bottom: none;
margin-top: 1rem;
margin-bottom: 0em;
border-radius: 0.25rem 0.25rem 0em 0em;
@ -18920,7 +18949,6 @@ ol.ui.horizontal.list li:before,
}
/* Bottom */
.ui.segment[class*="bottom attached"] {
border-top: none;
top: 0px;
bottom: 0px;
margin-top: 0em;
@ -22180,7 +22208,7 @@ a:hover {
---------------*/
.ui.slider.checkbox {
cursor: pointer;
height: 1rem;
height: 1.25rem;
}
.ui.slider.checkbox .box,
.ui.slider.checkbox label {
@ -22695,7 +22723,7 @@ a:hover {
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
will-transform: opacity;
will-change: opacity;
z-index: 1000;
}
/* Dimmer Content */
@ -25595,6 +25623,9 @@ a.ui.nag {
/* Bar */
/* Progress Bar Label */
/* Label */
/*-------------------
Types
--------------------*/
/*-------------------
States
--------------------*/
@ -25711,6 +25742,9 @@ a.ui.nag {
/* Bar */
/* Progress Bar Label */
/* Label */
/*-------------------
Types
--------------------*/
/*-------------------
States
--------------------*/
@ -25751,24 +25785,23 @@ a.ui.nag {
}
/* Indicating */
.ui.indicating.progress .bar[style^="width: 3"] {
background-color: #D9A65C;
background-color: #d9a65c;
}
.ui.indicating.progress .bar[style^="width: 4"],
.ui.indicating.progress .bar[style^="width: 5"] {
background-color: #E6BB48;
background-color: #e6bb48;
}
.ui.indicating.progress .bar[style^="width: 6"] {
background-color: #DDC928;
background-color: #ddc928;
}
.ui.indicating.progress .bar[style^="width: 7"],
.ui.indicating.progress .bar[style^="width: 8"] {
background-color: #B4D95C;
background-color: #b4d95c;
}
.ui.indicating.progress .bar[style^="width: 9"],
.ui.indicating.progress .bar[style^="width: 100"] {
background-color: #66DA81;
background-color: #66da81;
}
/* Single Digits Last */
.ui.indicating.progress .bar[style^="width: 1%"],
.ui.indicating.progress .bar[style^="width: 2%"],
.ui.indicating.progress .bar[style^="width: 3%"],
@ -25780,7 +25813,39 @@ a.ui.nag {
.ui.indicating.progress .bar[style^="width: 9%"],
.ui.indicating.progress .bar[style^="width: 1"],
.ui.indicating.progress .bar[style^="width: 2"] {
background-color: #D95C5C;
background-color: #d95c5c;
}
/* Single Digits Last */
.ui.indicating.progress .bar[style^="width: 1%"] + .label,
.ui.indicating.progress .bar[style^="width: 2%"] + .label,
.ui.indicating.progress .bar[style^="width: 3%"] + .label,
.ui.indicating.progress .bar[style^="width: 4%"] + .label,
.ui.indicating.progress .bar[style^="width: 5%"] + .label,
.ui.indicating.progress .bar[style^="width: 6%"] + .label,
.ui.indicating.progress .bar[style^="width: 7%"] + .label,
.ui.indicating.progress .bar[style^="width: 8%"] + .label,
.ui.indicating.progress .bar[style^="width: 9%"] + .label,
.ui.indicating.progress .bar[style^="width: 1"] + .label,
.ui.indicating.progress .bar[style^="width: 2"] + .label {
color: #d95c5c;
}
.ui.indicating.progress .bar[style^="width: 3"] + .label {
color: #d9a65c;
}
.ui.indicating.progress .bar[style^="width: 4"] + .label,
.ui.indicating.progress .bar[style^="width: 5"] + .label {
color: #e6bb48;
}
.ui.indicating.progress .bar[style^="width: 6"] + .label {
color: #ddc928;
}
.ui.indicating.progress .bar[style^="width: 7"] + .label,
.ui.indicating.progress .bar[style^="width: 8"] + .label {
color: #b4d95c;
}
.ui.indicating.progress .bar[style^="width: 9"] + .label,
.ui.indicating.progress .bar[style^="width: 100"] + .label {
color: #66da81;
}
/*******************************
Content
@ -29269,8 +29334,8 @@ a.ui.nag {
Slide
---------------*/
.slide.down.transition.in {
-webkit-animation-name: slide;
animation-name: slide;
-webkit-animation-name: slideIn;
animation-name: slideIn;
transform-origin: 50% 0%;
-ms-transform-origin: 50% 0%;
-webkit-transform-origin: 50% 0%;
@ -29283,8 +29348,8 @@ a.ui.nag {
transform-origin: 50% 0%;
}
.slide.up.transition.in {
-webkit-animation-name: slide;
animation-name: slide;
-webkit-animation-name: slideIn;
animation-name: slideIn;
-webkit-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
transform-origin: 50% 100%;
@ -29296,7 +29361,7 @@ a.ui.nag {
-ms-transform-origin: 50% 100%;
transform-origin: 50% 100%;
}
@-webkit-keyframes slide {
@-webkit-keyframes slideIn {
0% {
opacity: 0;
-webkit-transform: scaleY(0);
@ -29308,7 +29373,7 @@ a.ui.nag {
transform: scaleY(1);
}
}
@keyframes slide {
@keyframes slideIn {
0% {
opacity: 0;
-webkit-transform: scaleY(0);
@ -29354,8 +29419,8 @@ a.ui.nag {
}
.horizontal.flip.transition.in,
.horizontal.flip.transition.out {
-webkit-animation-name: horizontalFlip;
animation-name: horizontalFlip;
-webkit-animation-name: horizontalFlipIn;
animation-name: horizontalFlipIn;
}
.horizontal.flip.transition.out {
-webkit-animation-name: horizontalFlipOut;
@ -29363,15 +29428,15 @@ a.ui.nag {
}
.vertical.flip.transition.in,
.vertical.flip.transition.out {
-webkit-animation-name: verticalFlip;
animation-name: verticalFlip;
-webkit-animation-name: verticalFlipIn;
animation-name: verticalFlipIn;
}
.vertical.flip.transition.out {
-webkit-animation-name: verticalFlipOut;
animation-name: verticalFlipOut;
}
/* Horizontal */
@-webkit-keyframes horizontalFlip {
@-webkit-keyframes horizontalFlipIn {
0% {
-webkit-transform: rotateY(-90deg);
transform: rotateY(-90deg);
@ -29383,7 +29448,7 @@ a.ui.nag {
opacity: 1;
}
}
@keyframes horizontalFlip {
@keyframes horizontalFlipIn {
0% {
-webkit-transform: rotateY(-90deg);
transform: rotateY(-90deg);
@ -29421,7 +29486,7 @@ a.ui.nag {
}
}
/* Vertical */
@-webkit-keyframes verticalFlip {
@-webkit-keyframes verticalFlipIn {
0% {
-webkit-transform: rotateX(-90deg);
transform: rotateX(-90deg);
@ -29433,7 +29498,7 @@ a.ui.nag {
opacity: 1;
}
}
@keyframes verticalFlip {
@keyframes verticalFlipIn {
0% {
-webkit-transform: rotateX(-90deg);
transform: rotateX(-90deg);
@ -29473,31 +29538,31 @@ a.ui.nag {
Fades
---------------*/
.fade.transition.in {
-webkit-animation-name: fade;
animation-name: fade;
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
.fade.transition.out {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
.fade.up.transition.in {
-webkit-animation-name: fadeUp;
animation-name: fadeUp;
-webkit-animation-name: fadeUpIn;
animation-name: fadeUpIn;
}
.fade.up.transition.out {
-webkit-animation-name: fadeUpOut;
animation-name: fadeUpOut;
}
.fade.down.transition.in {
-webkit-animation-name: fadeDown;
animation-name: fadeDown;
-webkit-animation-name: fadeDownIn;
animation-name: fadeDownIn;
}
.fade.down.transition.out {
-webkit-animation-name: fadeDownOut;
animation-name: fadeDownOut;
}
/* Fade */
@-webkit-keyframes fade {
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
@ -29505,7 +29570,7 @@ a.ui.nag {
opacity: 1;
}
}
@keyframes fade {
@keyframes fadeIn {
0% {
opacity: 0;
}
@ -29530,7 +29595,7 @@ a.ui.nag {
}
}
/* Fade Up */
@-webkit-keyframes fadeUp {
@-webkit-keyframes fadeUpIn {
0% {
opacity: 0;
-webkit-transform: translateY(10%);
@ -29542,7 +29607,7 @@ a.ui.nag {
transform: translateY(0%);
}
}
@keyframes fadeUp {
@keyframes fadeUpIn {
0% {
opacity: 0;
-webkit-transform: translateY(10%);
@ -29579,7 +29644,7 @@ a.ui.nag {
}
}
/* Fade Down */
@-webkit-keyframes fadeDown {
@-webkit-keyframes fadeDownIn {
0% {
opacity: 0;
-webkit-transform: translateY(-10%);
@ -29591,7 +29656,7 @@ a.ui.nag {
transform: translateY(0%);
}
}
@keyframes fadeDown {
@keyframes fadeDownIn {
0% {
opacity: 0;
-webkit-transform: translateY(-10%);
@ -29631,15 +29696,15 @@ a.ui.nag {
Scale
---------------*/
.scale.transition.in {
-webkit-animation-name: scale;
animation-name: scale;
-webkit-animation-name: scaleIn;
animation-name: scaleIn;
}
.scale.transition.out {
-webkit-animation-name: scaleOut;
animation-name: scaleOut;
}
/* Scale */
@-webkit-keyframes scale {
@-webkit-keyframes scaleIn {
0% {
opacity: 0;
-webkit-transform: scale(0.7);
@ -29651,7 +29716,7 @@ a.ui.nag {
transform: scale(1);
}
}
@keyframes scale {
@keyframes scaleIn {
0% {
opacity: 0;
-webkit-transform: scale(0.7);

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

File diff suppressed because one or more lines are too long

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

@ -1847,6 +1847,36 @@ $.fn.form.settings = {
urlRegExp = /(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/
;
return urlRegExp.test(value);
},
integer: function(value, range) {
var
intRegExp = /^\-?\d+$/,
min,
max,
parts
;
if (range === undefined || range === '' || range === '..') {
// do nothing
}
else if (range.indexOf('..') == -1) {
if (intRegExp.test(range)) {
min = max = range - 0;
}
}
else {
parts = range.split('..', 2);
if (intRegExp.test(parts[0])) {
min = parts[0] - 0;
}
if (intRegExp.test(parts[1])) {
max = parts[1] - 0;
}
}
return (
intRegExp.test(value) &&
(min === undefined || value >= min) &&
(max === undefined || value <= max)
);
}
}
@ -8286,6 +8316,7 @@ $.fn.modal = function(parameters) {
}
$dimmable = $context
.dimmer({
debug : settings.debug,
closable : false,
useCSS : true,
duration : {
@ -8467,6 +8498,7 @@ $.fn.modal = function(parameters) {
module.debug('Showing modal with css animations');
$module
.transition({
debug : settings.debug,
animation : settings.transition + ' in',
duration : settings.duration,
complete : function() {
@ -8549,6 +8581,7 @@ $.fn.modal = function(parameters) {
if(settings.transition && $.fn.transition !== undefined && $module.transition('is supported')) {
$module
.transition({
debug : settings.debug,
animation : settings.transition + ' out',
duration : settings.duration,
complete : function() {
@ -9665,7 +9698,7 @@ $.fn.popup = function(parameters) {
.appendTo( $context )
;
}
if(settings.hoverable && module.cache === undefined ) {
if(settings.hoverable) {
module.bind.popup();
}
$.proxy(settings.onCreate, $popup)();
@ -9674,6 +9707,9 @@ $.fn.popup = function(parameters) {
module.verbose('Pre-existing popup found, reverting to inline');
settings.inline = true;
module.refresh();
if(settings.hoverable) {
module.bind.popup();
}
}
else {
module.debug('No content specified skipping display', element);
@ -10085,13 +10121,11 @@ $.fn.popup = function(parameters) {
bind: {
popup: function() {
if(settings.hoverable) {
module.verbose('Allowing hover events on popup to prevent closing');
$popup
.on('mouseenter', module.event.start)
.on('mouseleave', module.event.end)
;
}
module.verbose('Allowing hover events on popup to prevent closing');
$popup
.on('mouseenter', module.event.start)
.on('mouseleave', module.event.end)
;
},
close:function() {
if(settings.on == 'click' && settings.closable) {
@ -15832,13 +15866,13 @@ $.fn.transition = function() {
.one(animationEnd + eventNamespace, module.complete)
;
module.set.duration(settings.duration);
module.debug('Starting tween', settings.animation, $module.attr('class'));
module.debug('Starting tween', animation, $module.attr('class'));
},
display: function() {
var
style = $module.attr('style') || '',
style = module.get.style(),
displayType = module.get.displayType(),
overrideStyle = style + ';display: ' + displayType + ' !important;'
overrideStyle = style + 'display: ' + displayType + ' !important;'
;
if( $module.css('display') !== displayType ) {
module.verbose('Setting inline visibility to', displayType);
@ -15917,9 +15951,13 @@ $.fn.transition = function() {
module.verbose('Saving existence of transition', animation, exists);
},
conditions: function() {
var
clasName = $module.attr('class') || false,
style = $module.attr('style') || ''
;
module.cache = {
className : $module.attr('class'),
style : $module.attr('style')
style : module.get.style()
};
module.verbose('Saving original attributes', module.cache);
}
@ -15940,12 +15978,6 @@ $.fn.transition = function() {
module.verbose('Restoring original style attribute', module.cache.style);
$module.attr('style', module.cache.style);
}
else {
if(module.get.displayType() === 'block') {
module.verbose('Removing inline style override, element defaults to block');
$module.removeAttr('style');
}
}
if(module.is.looping()) {
module.remove.looping();
}
@ -16042,6 +16074,12 @@ $.fn.transition = function() {
}
return module.displayType;
},
style: function() {
var
style = $module.attr('style') || ''
;
return style.replace(/display.*?;/, '');
},
transitionExists: function(animation) {
return $.fn.transition.exists[animation];
},
@ -16110,11 +16148,11 @@ $.fn.transition = function() {
module.verbose('Determining whether animation exists');
$clone = $('<' + tagName + ' />').addClass( elementClass ).insertAfter($module);
currentAnimation = $clone
.addClass(animation)
.removeClass(className.inward)
.removeClass(className.outward)
.addClass(className.animating)
.addClass(className.transition)
.addClass(animation)
.css(animationName)
;
inAnimation = $clone

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

File diff suppressed because one or more lines are too long

30
build/uncompressed/definitions/behaviors/form.js

@ -757,6 +757,36 @@ $.fn.form.settings = {
urlRegExp = /(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/
;
return urlRegExp.test(value);
},
integer: function(value, range) {
var
intRegExp = /^\-?\d+$/,
min,
max,
parts
;
if (range === undefined || range === '' || range === '..') {
// do nothing
}
else if (range.indexOf('..') == -1) {
if (intRegExp.test(range)) {
min = max = range - 0;
}
}
else {
parts = range.split('..', 2);
if (intRegExp.test(parts[0])) {
min = parts[0] - 0;
}
if (intRegExp.test(parts[1])) {
max = parts[1] - 0;
}
}
return (
intRegExp.test(value) &&
(min === undefined || value >= min) &&
(max === undefined || value <= max)
);
}
}

18
build/uncompressed/definitions/collections/form.css

@ -152,6 +152,7 @@
/* Form Label */
/* Grouped / Inline Labels */
/* Input */
/* Select */
/* Text Area */
/* Checkbox */
/* Divider */
@ -293,6 +294,7 @@
/* Form Label */
/* Grouped / Inline Labels */
/* Input */
/* Select */
/* Text Area */
/* Checkbox */
/* Divider */
@ -451,6 +453,22 @@
.ui.form input.attached {
width: auto;
}
/*--------------------
Basic Select
---------------------*/
.ui.form select {
display: block;
height: auto;
width: 100%;
background: #ffffff;
border: 1px solid rgba(39, 41, 43, 0.15);
border-radius: 0.3125em;
box-shadow: 0em 0em 0em 0em transparent inset;
padding: 0.62em 1em;
color: rgba(0, 0, 0, 0.8);
-webkit-transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
/*--------------------
Dropdown
---------------------*/

2
build/uncompressed/definitions/elements/image.css

@ -383,7 +383,7 @@ img.ui.bordered.image {
.ui.avatar.images img,
.ui.avatar.image img,
.ui.avatar.image {
margin-right: 0.25rem;
margin-right: 0.25em;
display: inline-block;
width: 2.5em;
height: 2.5em;

31
build/uncompressed/definitions/elements/label.css

@ -369,8 +369,9 @@ a.ui.label {
/* Detail */
.ui.label .detail {
display: inline-block;
margin-left: 1em;
vertical-align: top;
font-weight: bold;
margin-left: 1em;
opacity: 0.8;
}
.ui.label .detail .icon {
@ -401,12 +402,12 @@ a.ui.label {
Coupling
--------------------*/
/* Padding on next content after a label */
.ui.top.attached.label:first-child + * {
margin-top: 2rem;
.ui.top.attached.label:first-child + :not(.attached) {
margin-top: 2rem !important;
}
.ui.bottom.attached.label:first-child ~ :last-child {
.ui.bottom.attached.label:first-child ~ :last-child:not(.attached) {
margin-top: 0em;
margin-bottom: 2rem;
margin-bottom: 2rem !important;
}
/*******************************
Types
@ -1124,27 +1125,35 @@ a.ui.yellow.label:hover:before {
--------------------*/
.ui.mini.labels .label,
.ui.mini.label {
font-size: 0.7rem;
font-size: 0.6428em;
}
.ui.tiny.labels .label,
.ui.tiny.label {
font-size: 0.75rem;
font-size: 0.7142em;
}
.ui.small.labels .label,
.ui.small.label {
font-size: 0.8rem;
font-size: 0.7857em;
}
.ui.labels .label,
.ui.label {
font-size: 0.875rem;
font-size: 0.8571em;
}
.ui.large.labels .label,
.ui.large.label {
font-size: 1rem;
font-size: 1em;
}
.ui.big.labels .label,
.ui.big.label {
font-size: 1.1428em;
}
.ui.huge.labels .label,
.ui.huge.label {
font-size: 1.25rem;
font-size: 1.2857em;
}
.ui.massive.labels .label,
.ui.massive.label {
font-size: 1.4285em;
}
/*******************************
Overrides

5
build/uncompressed/definitions/elements/segment.css

@ -673,11 +673,13 @@
box-shadow: none;
border: 1px solid #d4d4d5;
}
.ui.segment.attached + .ui.segment.attached {
border-top: none;
}
/* Top */
.ui[class*="top attached"].segment {
top: 0px;
bottom: 0px;
border-bottom: none;
margin-top: 1rem;
margin-bottom: 0em;
border-radius: 0.25rem 0.25rem 0em 0em;
@ -687,7 +689,6 @@
}
/* Bottom */
.ui.segment[class*="bottom attached"] {
border-top: none;
top: 0px;
bottom: 0px;
margin-top: 0em;

2
build/uncompressed/definitions/modules/checkbox.css

@ -495,7 +495,7 @@
---------------*/
.ui.slider.checkbox {
cursor: pointer;
height: 1rem;
height: 1.25rem;
}
.ui.slider.checkbox .box,
.ui.slider.checkbox label {

2
build/uncompressed/definitions/modules/dimmer.css

@ -298,7 +298,7 @@
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
will-transform: opacity;
will-change: opacity;
z-index: 1000;
}
/* Dimmer Content */

3
build/uncompressed/definitions/modules/modal.js

@ -78,6 +78,7 @@ $.fn.modal = function(parameters) {
}
$dimmable = $context
.dimmer({
debug : settings.debug,
closable : false,
useCSS : true,
duration : {
@ -259,6 +260,7 @@ $.fn.modal = function(parameters) {
module.debug('Showing modal with css animations');
$module
.transition({
debug : settings.debug,
animation : settings.transition + ' in',
duration : settings.duration,
complete : function() {
@ -341,6 +343,7 @@ $.fn.modal = function(parameters) {
if(settings.transition && $.fn.transition !== undefined && $module.transition('is supported')) {
$module
.transition({
debug : settings.debug,
animation : settings.transition + ' out',
duration : settings.duration,
complete : function() {

17
build/uncompressed/definitions/modules/popup.js

@ -202,7 +202,7 @@ $.fn.popup = function(parameters) {
.appendTo( $context )
;
}
if(settings.hoverable && module.cache === undefined ) {
if(settings.hoverable) {
module.bind.popup();
}
$.proxy(settings.onCreate, $popup)();
@ -211,6 +211,9 @@ $.fn.popup = function(parameters) {
module.verbose('Pre-existing popup found, reverting to inline');
settings.inline = true;
module.refresh();
if(settings.hoverable) {
module.bind.popup();
}
}
else {
module.debug('No content specified skipping display', element);
@ -622,13 +625,11 @@ $.fn.popup = function(parameters) {
bind: {
popup: function() {
if(settings.hoverable) {
module.verbose('Allowing hover events on popup to prevent closing');
$popup
.on('mouseenter', module.event.start)
.on('mouseleave', module.event.end)
;
}
module.verbose('Allowing hover events on popup to prevent closing');
$popup
.on('mouseenter', module.event.start)
.on('mouseleave', module.event.end)
;
},
close:function() {
if(settings.on == 'click' && settings.closable) {

51
build/uncompressed/definitions/modules/progress.css

@ -149,6 +149,9 @@
/* Bar */
/* Progress Bar Label */
/* Label */
/*-------------------
Types
--------------------*/
/*-------------------
States
--------------------*/
@ -265,6 +268,9 @@
/* Bar */
/* Progress Bar Label */
/* Label */
/*-------------------
Types
--------------------*/
/*-------------------
States
--------------------*/
@ -305,24 +311,23 @@
}
/* Indicating */
.ui.indicating.progress .bar[style^="width: 3"] {
background-color: #D9A65C;
background-color: #d9a65c;
}
.ui.indicating.progress .bar[style^="width: 4"],
.ui.indicating.progress .bar[style^="width: 5"] {
background-color: #E6BB48;
background-color: #e6bb48;
}
.ui.indicating.progress .bar[style^="width: 6"] {
background-color: #DDC928;
background-color: #ddc928;
}
.ui.indicating.progress .bar[style^="width: 7"],
.ui.indicating.progress .bar[style^="width: 8"] {
background-color: #B4D95C;
background-color: #b4d95c;
}
.ui.indicating.progress .bar[style^="width: 9"],
.ui.indicating.progress .bar[style^="width: 100"] {
background-color: #66DA81;
background-color: #66da81;
}
/* Single Digits Last */
.ui.indicating.progress .bar[style^="width: 1%"],
.ui.indicating.progress .bar[style^="width: 2%"],
.ui.indicating.progress .bar[style^="width: 3%"],
@ -334,7 +339,39 @@
.ui.indicating.progress .bar[style^="width: 9%"],
.ui.indicating.progress .bar[style^="width: 1"],
.ui.indicating.progress .bar[style^="width: 2"] {
background-color: #D95C5C;
background-color: #d95c5c;
}
/* Single Digits Last */
.ui.indicating.progress .bar[style^="width: 1%"] + .label,
.ui.indicating.progress .bar[style^="width: 2%"] + .label,
.ui.indicating.progress .bar[style^="width: 3%"] + .label,
.ui.indicating.progress .bar[style^="width: 4%"] + .label,
.ui.indicating.progress .bar[style^="width: 5%"] + .label,
.ui.indicating.progress .bar[style^="width: 6%"] + .label,
.ui.indicating.progress .bar[style^="width: 7%"] + .label,
.ui.indicating.progress .bar[style^="width: 8%"] + .label,
.ui.indicating.progress .bar[style^="width: 9%"] + .label,
.ui.indicating.progress .bar[style^="width: 1"] + .label,
.ui.indicating.progress .bar[style^="width: 2"] + .label {
color: #d95c5c;
}
.ui.indicating.progress .bar[style^="width: 3"] + .label {
color: #d9a65c;
}
.ui.indicating.progress .bar[style^="width: 4"] + .label,
.ui.indicating.progress .bar[style^="width: 5"] + .label {
color: #e6bb48;
}
.ui.indicating.progress .bar[style^="width: 6"] + .label {
color: #ddc928;
}
.ui.indicating.progress .bar[style^="width: 7"] + .label,
.ui.indicating.progress .bar[style^="width: 8"] + .label {
color: #b4d95c;
}
.ui.indicating.progress .bar[style^="width: 9"] + .label,
.ui.indicating.progress .bar[style^="width: 100"] + .label {
color: #66da81;
}
/*******************************
Content

60
build/uncompressed/definitions/modules/transition.css

@ -546,8 +546,8 @@
Slide
---------------*/
.slide.down.transition.in {
-webkit-animation-name: slide;
animation-name: slide;
-webkit-animation-name: slideIn;
animation-name: slideIn;
transform-origin: 50% 0%;
-ms-transform-origin: 50% 0%;
-webkit-transform-origin: 50% 0%;
@ -560,8 +560,8 @@
transform-origin: 50% 0%;
}
.slide.up.transition.in {
-webkit-animation-name: slide;
animation-name: slide;
-webkit-animation-name: slideIn;
animation-name: slideIn;
-webkit-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
transform-origin: 50% 100%;
@ -573,7 +573,7 @@
-ms-transform-origin: 50% 100%;
transform-origin: 50% 100%;
}
@-webkit-keyframes slide {
@-webkit-keyframes slideIn {
0% {
opacity: 0;
-webkit-transform: scaleY(0);
@ -585,7 +585,7 @@
transform: scaleY(1);
}
}
@keyframes slide {
@keyframes slideIn {
0% {
opacity: 0;
-webkit-transform: scaleY(0);
@ -631,8 +631,8 @@
}
.horizontal.flip.transition.in,
.horizontal.flip.transition.out {
-webkit-animation-name: horizontalFlip;
animation-name: horizontalFlip;
-webkit-animation-name: horizontalFlipIn;
animation-name: horizontalFlipIn;
}
.horizontal.flip.transition.out {
-webkit-animation-name: horizontalFlipOut;
@ -640,15 +640,15 @@
}
.vertical.flip.transition.in,
.vertical.flip.transition.out {
-webkit-animation-name: verticalFlip;
animation-name: verticalFlip;
-webkit-animation-name: verticalFlipIn;
animation-name: verticalFlipIn;
}
.vertical.flip.transition.out {
-webkit-animation-name: verticalFlipOut;
animation-name: verticalFlipOut;
}
/* Horizontal */
@-webkit-keyframes horizontalFlip {
@-webkit-keyframes horizontalFlipIn {
0% {
-webkit-transform: rotateY(-90deg);
transform: rotateY(-90deg);
@ -660,7 +660,7 @@
opacity: 1;
}
}
@keyframes horizontalFlip {
@keyframes horizontalFlipIn {
0% {
-webkit-transform: rotateY(-90deg);
transform: rotateY(-90deg);
@ -698,7 +698,7 @@
}
}
/* Vertical */
@-webkit-keyframes verticalFlip {
@-webkit-keyframes verticalFlipIn {
0% {
-webkit-transform: rotateX(-90deg);
transform: rotateX(-90deg);
@ -710,7 +710,7 @@
opacity: 1;
}
}
@keyframes verticalFlip {
@keyframes verticalFlipIn {
0% {
-webkit-transform: rotateX(-90deg);
transform: rotateX(-90deg);
@ -750,31 +750,31 @@
Fades
---------------*/
.fade.transition.in {
-webkit-animation-name: fade;
animation-name: fade;
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
.fade.transition.out {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
.fade.up.transition.in {
-webkit-animation-name: fadeUp;
animation-name: fadeUp;
-webkit-animation-name: fadeUpIn;
animation-name: fadeUpIn;
}
.fade.up.transition.out {
-webkit-animation-name: fadeUpOut;
animation-name: fadeUpOut;
}
.fade.down.transition.in {
-webkit-animation-name: fadeDown;
animation-name: fadeDown;
-webkit-animation-name: fadeDownIn;
animation-name: fadeDownIn;
}
.fade.down.transition.out {
-webkit-animation-name: fadeDownOut;
animation-name: fadeDownOut;
}
/* Fade */
@-webkit-keyframes fade {
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
@ -782,7 +782,7 @@
opacity: 1;
}
}
@keyframes fade {
@keyframes fadeIn {
0% {
opacity: 0;
}
@ -807,7 +807,7 @@
}
}
/* Fade Up */
@-webkit-keyframes fadeUp {
@-webkit-keyframes fadeUpIn {
0% {
opacity: 0;
-webkit-transform: translateY(10%);
@ -819,7 +819,7 @@
transform: translateY(0%);
}
}
@keyframes fadeUp {
@keyframes fadeUpIn {
0% {
opacity: 0;
-webkit-transform: translateY(10%);
@ -856,7 +856,7 @@
}
}
/* Fade Down */
@-webkit-keyframes fadeDown {
@-webkit-keyframes fadeDownIn {
0% {
opacity: 0;
-webkit-transform: translateY(-10%);
@ -868,7 +868,7 @@
transform: translateY(0%);
}
}
@keyframes fadeDown {
@keyframes fadeDownIn {
0% {
opacity: 0;
-webkit-transform: translateY(-10%);
@ -908,15 +908,15 @@
Scale
---------------*/
.scale.transition.in {
-webkit-animation-name: scale;
animation-name: scale;
-webkit-animation-name: scaleIn;
animation-name: scaleIn;
}
.scale.transition.out {
-webkit-animation-name: scaleOut;
animation-name: scaleOut;
}
/* Scale */
@-webkit-keyframes scale {
@-webkit-keyframes scaleIn {
0% {
opacity: 0;
-webkit-transform: scale(0.7);
@ -928,7 +928,7 @@
transform: scale(1);
}
}
@keyframes scale {
@keyframes scaleIn {
0% {
opacity: 0;
-webkit-transform: scale(0.7);

26
build/uncompressed/definitions/modules/transition.js

@ -221,13 +221,13 @@ $.fn.transition = function() {
.one(animationEnd + eventNamespace, module.complete)
;
module.set.duration(settings.duration);
module.debug('Starting tween', settings.animation, $module.attr('class'));
module.debug('Starting tween', animation, $module.attr('class'));
},
display: function() {
var
style = $module.attr('style') || '',
style = module.get.style(),
displayType = module.get.displayType(),
overrideStyle = style + ';display: ' + displayType + ' !important;'
overrideStyle = style + 'display: ' + displayType + ' !important;'
;
if( $module.css('display') !== displayType ) {
module.verbose('Setting inline visibility to', displayType);
@ -306,9 +306,13 @@ $.fn.transition = function() {
module.verbose('Saving existence of transition', animation, exists);
},
conditions: function() {
var
clasName = $module.attr('class') || false,
style = $module.attr('style') || ''
;
module.cache = {
className : $module.attr('class'),
style : $module.attr('style')
style : module.get.style()
};
module.verbose('Saving original attributes', module.cache);
}
@ -329,12 +333,6 @@ $.fn.transition = function() {
module.verbose('Restoring original style attribute', module.cache.style);
$module.attr('style', module.cache.style);
}
else {
if(module.get.displayType() === 'block') {
module.verbose('Removing inline style override, element defaults to block');
$module.removeAttr('style');
}
}
if(module.is.looping()) {
module.remove.looping();
}
@ -431,6 +429,12 @@ $.fn.transition = function() {
}
return module.displayType;
},
style: function() {
var
style = $module.attr('style') || ''
;
return style.replace(/display.*?;/, '');
},
transitionExists: function(animation) {
return $.fn.transition.exists[animation];
},
@ -499,11 +503,11 @@ $.fn.transition = function() {
module.verbose('Determining whether animation exists');
$clone = $('<' + tagName + ' />').addClass( elementClass ).insertAfter($module);
currentAnimation = $clone
.addClass(animation)
.removeClass(className.inward)
.removeClass(className.outward)
.addClass(className.animating)
.addClass(className.transition)
.addClass(animation)
.css(animationName)
;
inAnimation = $clone

9
server/files/stylesheets/home.css

@ -541,6 +541,15 @@
visibility: hidden;
}
#example.index .demo.row .example {
clear: both;
padding-top: 1.5em;
margin-top: 1.5em;
}
#example.index .demo.row .example:first-child {
margin-top: 0;
padding-top: 0;
}
#example.index .following.bar {
position: absolute;

4
server/files/stylesheets/semantic.css

@ -965,8 +965,8 @@ body#example.hide {
}
#example .demo.row .example {
clear: both;
padding-top: 1.5em;
margin-top: 1.5em;
padding-top: 3em;
margin-top: 3em;
}
#example .demo.row .example:first-child {
margin-top: 0;

1
server/partials/examples/checkbox.html

@ -3,6 +3,7 @@
<label>Checkbox</label>
</div>
<div class="ui hidden divider"></div>
<div class="ui form">
<div class="inline fields">
<div class="field">

Loading…
Cancel
Save