Browse Source

Iteration on state and api docs

1.0
jlukic 10 years ago
parent
commit
8719779f00
  1. 39
      build/less/definitions/behaviors/api.js
  2. 12
      build/less/definitions/collections/grid.less
  3. 2
      build/less/definitions/elements/divider.less
  4. 2
      build/less/definitions/modules/modal.js
  5. 6
      build/less/definitions/modules/sidebar.js
  6. 5
      build/less/themes/packages/default/collections/grid.variables
  7. 2
      build/minified/definitions/behaviors/api.min.js
  8. 2
      build/minified/definitions/collections/grid.min.css
  9. 2
      build/minified/definitions/elements/divider.min.css
  10. 2
      build/minified/definitions/modules/modal.min.js
  11. 2
      build/minified/definitions/modules/sidebar.min.js
  12. 6096
      build/packaged/definitions/css/semantic.css
  13. 2
      build/packaged/definitions/css/semantic.min.css
  14. 47
      build/packaged/definitions/javascript/semantic.js
  15. 14
      build/packaged/definitions/javascript/semantic.min.js
  16. 39
      build/uncompressed/definitions/behaviors/api.js
  17. 114
      build/uncompressed/definitions/collections/breadcrumb.css
  18. 147
      build/uncompressed/definitions/collections/form.css
  19. 143
      build/uncompressed/definitions/collections/grid.css
  20. 153
      build/uncompressed/definitions/collections/menu.css
  21. 120
      build/uncompressed/definitions/collections/message.css
  22. 144
      build/uncompressed/definitions/collections/table.css
  23. 149
      build/uncompressed/definitions/elements/button.css
  24. 123
      build/uncompressed/definitions/elements/divider.css
  25. 109
      build/uncompressed/definitions/elements/flag.css
  26. 127
      build/uncompressed/definitions/elements/header.css
  27. 109
      build/uncompressed/definitions/elements/icon.css
  28. 119
      build/uncompressed/definitions/elements/image.css
  29. 127
      build/uncompressed/definitions/elements/input.css
  30. 137
      build/uncompressed/definitions/elements/label.css
  31. 148
      build/uncompressed/definitions/elements/list.css
  32. 120
      build/uncompressed/definitions/elements/loader.css
  33. 114
      build/uncompressed/definitions/elements/rail.css
  34. 106
      build/uncompressed/definitions/elements/reveal.css
  35. 123
      build/uncompressed/definitions/elements/segment.css
  36. 125
      build/uncompressed/definitions/elements/step.css
  37. 106
      build/uncompressed/definitions/globals/reset.css
  38. 304
      build/uncompressed/definitions/globals/site.css
  39. 125
      build/uncompressed/definitions/modules/accordion.css
  40. 106
      build/uncompressed/definitions/modules/chatroom.css
  41. 126
      build/uncompressed/definitions/modules/checkbox.css
  42. 113
      build/uncompressed/definitions/modules/dimmer.css
  43. 145
      build/uncompressed/definitions/modules/dropdown.css
  44. 124
      build/uncompressed/definitions/modules/modal.css
  45. 2
      build/uncompressed/definitions/modules/modal.js
  46. 125
      build/uncompressed/definitions/modules/nag.css
  47. 128
      build/uncompressed/definitions/modules/popup.css
  48. 124
      build/uncompressed/definitions/modules/progress.css
  49. 117
      build/uncompressed/definitions/modules/rating.css
  50. 124
      build/uncompressed/definitions/modules/search.css
  51. 112
      build/uncompressed/definitions/modules/shape.css
  52. 106
      build/uncompressed/definitions/modules/sidebar.css
  53. 6
      build/uncompressed/definitions/modules/sidebar.js
  54. 106
      build/uncompressed/definitions/modules/sticky.css
  55. 108
      build/uncompressed/definitions/modules/tab.css
  56. 106
      build/uncompressed/definitions/modules/transition.css
  57. 106
      build/uncompressed/definitions/modules/video.css
  58. 134
      build/uncompressed/definitions/views/card.css
  59. 127
      build/uncompressed/definitions/views/comment.css
  60. 133
      build/uncompressed/definitions/views/feed.css
  61. 133
      build/uncompressed/definitions/views/item.css
  62. 127
      build/uncompressed/definitions/views/statistic.css
  63. 138
      server/documents/modules/api.html.eco
  64. 2
      server/files/javascript/api.js
  65. 25
      src/definitions/behaviors/api.js
  66. 7
      src/definitions/behaviors/state.js

39
build/less/definitions/behaviors/api.js

@ -25,13 +25,16 @@ $.api = $.fn.api = function(parameters) {
query = arguments[0],
methodInvoked = (typeof query == 'string'),
queryArguments = [].slice.call(arguments, 1),
returnedValue
;
$allModules
.each(function() {
var
settings = $.extend(true, {}, $.fn.api.settings, parameters),
settings = ( $.isPlainObject(parameters) )
? $.extend(true, {}, $.fn.api.settings, parameters)
: $.extend({}, $.fn.api.settings),
// internal aliases
namespace = settings.namespace,
@ -145,7 +148,7 @@ $.api = $.fn.api = function(parameters) {
else {
// otherwise find url from api endpoints
url = module.add.urlData( module.get.templateURL() );
module.debug('API url resolved to', url);
module.debug('Added URL Data to url', url);
}
// exit conditions reached, missing url parameters
@ -155,7 +158,7 @@ $.api = $.fn.api = function(parameters) {
url = $module.attr('action');
}
else {
module.error(error.missingURL);
module.error(error.missingURL, settings.action);
return;
}
}
@ -532,13 +535,13 @@ $.api = $.fn.api = function(parameters) {
;
action = action || $module.data(settings.metadata.action) || settings.action || false;
if(action) {
module.debug('Looking up url for action', action);
module.debug('Looking up url for action', action, settings.api);
if(settings.api[action] !== undefined) {
url = settings.api[action];
module.debug('Found template url', url);
}
else {
module.error(error.missingAction, settings.action);
module.error(error.missingAction, settings.action, settings.api);
}
}
return url;
@ -552,6 +555,7 @@ $.api = $.fn.api = function(parameters) {
},
setting: function(name, value) {
module.debug('Changing setting', name, value);
if( $.isPlainObject(name) ) {
$.extend(true, settings, name);
}
@ -626,7 +630,7 @@ $.api = $.fn.api = function(parameters) {
title = settings.name + ':',
totalTime = 0
;
time = new Date().getTime();
time = false;
clearTimeout(module.performance.timer);
$.each(performance, function(index, data) {
totalTime += data['Execution Time'];
@ -652,13 +656,14 @@ $.api = $.fn.api = function(parameters) {
},
invoke: function(query, passedArguments, context) {
var
object = instance,
maxDepth,
found,
response
;
passedArguments = passedArguments || queryArguments;
context = element || context;
if(typeof query == 'string' && instance !== undefined) {
if(typeof query == 'string' && object !== undefined) {
query = query.split(/[\. ]/);
maxDepth = query.length - 1;
$.each(query, function(depth, value) {
@ -666,18 +671,18 @@ $.api = $.fn.api = function(parameters) {
? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
: query
;
if( $.isPlainObject( instance[value] ) && (depth != maxDepth) ) {
instance = instance[value];
}
else if( $.isPlainObject( instance[camelCaseValue] ) && (depth != maxDepth) ) {
instance = instance[camelCaseValue];
if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
object = object[camelCaseValue];
}
else if( instance[value] !== undefined ) {
found = instance[value];
else if( object[camelCaseValue] !== undefined ) {
found = object[camelCaseValue];
return false;
}
else if( instance[camelCaseValue] !== undefined ) {
found = instance[camelCaseValue];
else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
object = object[value];
}
else if( object[value] !== undefined ) {
found = object[value];
return false;
}
else {
@ -744,6 +749,8 @@ $.api.settings = {
// templating
action : false,
base : false,
regExp : {
required: /\{\$*[A-z0-9]+\}/g,
optional: /\{\/\$*[A-z0-9]+\}/g,

12
build/less/definitions/collections/grid.less

@ -163,8 +163,9 @@
@media only screen and (max-width: (@largestMobileScreen)) {
.ui.page.grid {
width: @mobileWidth;
padding-left: @mobileGutter;
padding-right: @mobileGutter;
padding-left: 0em;
padding-right: 0em;
margin: 0em;
}
}
@media only screen and (min-width: @tabletBreakpoint) {
@ -1079,7 +1080,7 @@
width: auto !important;
margin: (@stackableRowSpacing / 2) 0em 0em !important;
padding: (@stackableRowSpacing / 2) 0em 0em !important;
padding: (@stackableRowSpacing / 2) (@stackableGutter / 2) 0em !important;
box-shadow: none !important;
}
@ -1107,11 +1108,6 @@
border-top: none !important;
}
.ui.stackable.page.grid > .row > .column,
.ui.stackable.page.grid > .column {
padding-left: @stackableGutterWidth !important;
padding-right: @stackableGutterWidth !important;
}
.ui[class*="equal height"].stackable.page.grid {
display: block !important;
width: 100% !important;

2
build/less/definitions/elements/divider.less

@ -139,7 +139,7 @@
.ui.grid .stackable.row .ui.vertical.divider {
position: relative;
margin: @margin;
left: 0;
left: 50%;
height: auto;
overflow: hidden;
line-height: 1;

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

@ -155,7 +155,7 @@ $.fn.modal = function(parameters) {
;
}
else {
module.error(error.notFound);
module.error(error.notFound, selector);
}
},

6
build/less/definitions/modules/sidebar.js

@ -199,7 +199,7 @@ $.fn.sidebar = function(parameters) {
;
}
else {
module.error(error.notFound);
module.error(error.notFound, selector);
}
},
@ -786,8 +786,8 @@ $.fn.sidebar.settings = {
bottom : 'overlay'
},
mobile: {
left : 'overlay',
right : 'overlay',
left : 'uncover',
right : 'uncover',
top : 'overlay',
bottom : 'overlay'
}

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

@ -31,8 +31,7 @@
---------------*/
/* Column Gutters */
@mobileWidth: 100%;
@mobileGutter: 1rem;
@mobileWidth: auto;
@tabletWidth: auto;
@tabletGutter: 8%;
@ -89,7 +88,7 @@
---------------*/
@stackableRowSpacing: @rowSpacing;
@stackableGutterWidth: 1.5em;
@stackableGutter: @gutterWidth;
@stackableMobileBorder: 1px solid @borderColor;
@stackableInvertedMobileBorder: 1px solid @whiteBorderColor;

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

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/elements/divider.min.css

@ -11,4 +11,4 @@
* Released: 10/09/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}
.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:50%;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/modules/modal.min.js

File diff suppressed because one or more lines are too long

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

File diff suppressed because one or more lines are too long

6096
build/packaged/definitions/css/semantic.css

File diff suppressed because it is too large

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

File diff suppressed because one or more lines are too long

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

@ -25,13 +25,16 @@ $.api = $.fn.api = function(parameters) {
query = arguments[0],
methodInvoked = (typeof query == 'string'),
queryArguments = [].slice.call(arguments, 1),
returnedValue
;
$allModules
.each(function() {
var
settings = $.extend(true, {}, $.fn.api.settings, parameters),
settings = ( $.isPlainObject(parameters) )
? $.extend(true, {}, $.fn.api.settings, parameters)
: $.extend({}, $.fn.api.settings),
// internal aliases
namespace = settings.namespace,
@ -145,7 +148,7 @@ $.api = $.fn.api = function(parameters) {
else {
// otherwise find url from api endpoints
url = module.add.urlData( module.get.templateURL() );
module.debug('API url resolved to', url);
module.debug('Added URL Data to url', url);
}
// exit conditions reached, missing url parameters
@ -155,7 +158,7 @@ $.api = $.fn.api = function(parameters) {
url = $module.attr('action');
}
else {
module.error(error.missingURL);
module.error(error.missingURL, settings.action);
return;
}
}
@ -532,13 +535,13 @@ $.api = $.fn.api = function(parameters) {
;
action = action || $module.data(settings.metadata.action) || settings.action || false;
if(action) {
module.debug('Looking up url for action', action);
module.debug('Looking up url for action', action, settings.api);
if(settings.api[action] !== undefined) {
url = settings.api[action];
module.debug('Found template url', url);
}
else {
module.error(error.missingAction, settings.action);
module.error(error.missingAction, settings.action, settings.api);
}
}
return url;
@ -552,6 +555,7 @@ $.api = $.fn.api = function(parameters) {
},
setting: function(name, value) {
module.debug('Changing setting', name, value);
if( $.isPlainObject(name) ) {
$.extend(true, settings, name);
}
@ -626,7 +630,7 @@ $.api = $.fn.api = function(parameters) {
title = settings.name + ':',
totalTime = 0
;
time = new Date().getTime();
time = false;
clearTimeout(module.performance.timer);
$.each(performance, function(index, data) {
totalTime += data['Execution Time'];
@ -652,13 +656,14 @@ $.api = $.fn.api = function(parameters) {
},
invoke: function(query, passedArguments, context) {
var
object = instance,
maxDepth,
found,
response
;
passedArguments = passedArguments || queryArguments;
context = element || context;
if(typeof query == 'string' && instance !== undefined) {
if(typeof query == 'string' && object !== undefined) {
query = query.split(/[\. ]/);
maxDepth = query.length - 1;
$.each(query, function(depth, value) {
@ -666,18 +671,18 @@ $.api = $.fn.api = function(parameters) {
? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
: query
;
if( $.isPlainObject( instance[value] ) && (depth != maxDepth) ) {
instance = instance[value];
}
else if( $.isPlainObject( instance[camelCaseValue] ) && (depth != maxDepth) ) {
instance = instance[camelCaseValue];
if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
object = object[camelCaseValue];
}
else if( instance[value] !== undefined ) {
found = instance[value];
else if( object[camelCaseValue] !== undefined ) {
found = object[camelCaseValue];
return false;
}
else if( instance[camelCaseValue] !== undefined ) {
found = instance[camelCaseValue];
else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
object = object[value];
}
else if( object[value] !== undefined ) {
found = object[value];
return false;
}
else {
@ -744,6 +749,8 @@ $.api.settings = {
// templating
action : false,
base : false,
regExp : {
required: /\{\$*[A-z0-9]+\}/g,
optional: /\{\/\$*[A-z0-9]+\}/g,
@ -8393,7 +8400,7 @@ $.fn.modal = function(parameters) {
;
}
else {
module.error(error.notFound);
module.error(error.notFound, selector);
}
},
@ -13426,7 +13433,7 @@ $.fn.sidebar = function(parameters) {
;
}
else {
module.error(error.notFound);
module.error(error.notFound, selector);
}
},
@ -14013,8 +14020,8 @@ $.fn.sidebar.settings = {
bottom : 'overlay'
},
mobile: {
left : 'overlay',
right : 'overlay',
left : 'uncover',
right : 'uncover',
top : 'overlay',
bottom : 'overlay'
}

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

File diff suppressed because one or more lines are too long

39
build/uncompressed/definitions/behaviors/api.js

@ -25,13 +25,16 @@ $.api = $.fn.api = function(parameters) {
query = arguments[0],
methodInvoked = (typeof query == 'string'),
queryArguments = [].slice.call(arguments, 1),
returnedValue
;
$allModules
.each(function() {
var
settings = $.extend(true, {}, $.fn.api.settings, parameters),
settings = ( $.isPlainObject(parameters) )
? $.extend(true, {}, $.fn.api.settings, parameters)
: $.extend({}, $.fn.api.settings),
// internal aliases
namespace = settings.namespace,
@ -145,7 +148,7 @@ $.api = $.fn.api = function(parameters) {
else {
// otherwise find url from api endpoints
url = module.add.urlData( module.get.templateURL() );
module.debug('API url resolved to', url);
module.debug('Added URL Data to url', url);
}
// exit conditions reached, missing url parameters
@ -155,7 +158,7 @@ $.api = $.fn.api = function(parameters) {
url = $module.attr('action');
}
else {
module.error(error.missingURL);
module.error(error.missingURL, settings.action);
return;
}
}
@ -532,13 +535,13 @@ $.api = $.fn.api = function(parameters) {
;
action = action || $module.data(settings.metadata.action) || settings.action || false;
if(action) {
module.debug('Looking up url for action', action);
module.debug('Looking up url for action', action, settings.api);
if(settings.api[action] !== undefined) {
url = settings.api[action];
module.debug('Found template url', url);
}
else {
module.error(error.missingAction, settings.action);
module.error(error.missingAction, settings.action, settings.api);
}
}
return url;
@ -552,6 +555,7 @@ $.api = $.fn.api = function(parameters) {
},
setting: function(name, value) {
module.debug('Changing setting', name, value);
if( $.isPlainObject(name) ) {
$.extend(true, settings, name);
}
@ -626,7 +630,7 @@ $.api = $.fn.api = function(parameters) {
title = settings.name + ':',
totalTime = 0
;
time = new Date().getTime();
time = false;
clearTimeout(module.performance.timer);
$.each(performance, function(index, data) {
totalTime += data['Execution Time'];
@ -652,13 +656,14 @@ $.api = $.fn.api = function(parameters) {
},
invoke: function(query, passedArguments, context) {
var
object = instance,
maxDepth,
found,
response
;
passedArguments = passedArguments || queryArguments;
context = element || context;
if(typeof query == 'string' && instance !== undefined) {
if(typeof query == 'string' && object !== undefined) {
query = query.split(/[\. ]/);
maxDepth = query.length - 1;
$.each(query, function(depth, value) {
@ -666,18 +671,18 @@ $.api = $.fn.api = function(parameters) {
? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
: query
;
if( $.isPlainObject( instance[value] ) && (depth != maxDepth) ) {
instance = instance[value];
}
else if( $.isPlainObject( instance[camelCaseValue] ) && (depth != maxDepth) ) {
instance = instance[camelCaseValue];
if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
object = object[camelCaseValue];
}
else if( instance[value] !== undefined ) {
found = instance[value];
else if( object[camelCaseValue] !== undefined ) {
found = object[camelCaseValue];
return false;
}
else if( instance[camelCaseValue] !== undefined ) {
found = instance[camelCaseValue];
else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
object = object[value];
}
else if( object[value] !== undefined ) {
found = object[value];
return false;
}
else {
@ -744,6 +749,8 @@ $.api.settings = {
// templating
action : false,
base : false,
regExp : {
required: /\{\$*[A-z0-9]+\}/g,
optional: /\{\/\$*[A-z0-9]+\}/g,

114
build/uncompressed/definitions/collections/breadcrumb.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -158,116 +158,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Breadcrumb
*******************************/
/*-------------------
Breadcrumb
--------------------*/
/* Coupling */
/*-------------------
States
--------------------*/
/* Sizes */
/*------------------
Load Site
-------------------*/
@ -278,7 +168,7 @@
Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Breadcrumb

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

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -191,149 +191,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Form
*******************************/
/*-------------------
Elements
--------------------*/
/* Form */
/* Text */
/* Field */
/* Form Label */
/* Grouped / Inline Labels */
/* Input */
/* Select */
/* Text Area */
/* Checkbox */
/* Divider */
/* Validation Prompt */
/*-------------------
States
--------------------*/
/* Disabled */
/* Focus */
/* Input Focus */
/* Text Area Focus */
/* Error */
/* Input Error */
/* Dropdown Error */
/* Focused Error */
/* Placeholder */
/* Loading */
/*-------------------
Types
--------------------*/
/* Required */
/* Inverted */
/*-------------------
Variations
--------------------*/
/* Grouped Fields */
/* Inline */
/* Sizes */
/*-------------------
Groups
--------------------*/
/*------------------
Load Site
-------------------*/
@ -344,7 +201,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Elements

143
build/uncompressed/definitions/collections/grid.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -173,131 +173,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Grid
*******************************/
/* Inherited From Site */
/*******************************
Grid
*******************************/
/*******************************
Variations
*******************************/
/*--------------
Page
---------------*/
/* Column Gutters */
/*--------------
Relaxed
---------------*/
/*--------------
Divided
---------------*/
/*--------------
Celled
---------------*/
/*--------------
Stackable
---------------*/
/*------------------
Load Site
-------------------*/
@ -308,7 +183,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Standard
@ -427,9 +302,10 @@
}
@media only screen and (max-width: 767px) {
.ui.page.grid {
width: 100%;
padding-left: 1rem;
padding-right: 1rem;
width: auto;
padding-left: 0em;
padding-right: 0em;
margin: 0em;
}
}
@media only screen and (min-width: 768px) {
@ -1285,7 +1161,7 @@
display: block !important;
width: auto !important;
margin: 1rem 0em 0em !important;
padding: 1rem 0em 0em !important;
padding: 1rem 1rem 0em !important;
box-shadow: none !important;
}
.ui.stackable.celled.grid > .column,
@ -1311,11 +1187,6 @@
.ui.stackable.celled.grid > .column:first-child {
border-top: none !important;
}
.ui.stackable.page.grid > .row > .column,
.ui.stackable.page.grid > .column {
padding-left: 1.5em !important;
padding-right: 1.5em !important;
}
.ui[class*="equal height"].stackable.page.grid {
display: block !important;
width: 100% !important;

153
build/uncompressed/definitions/collections/menu.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -197,155 +197,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Menu
*******************************/
/*-------------------
Globals Used
--------------------*/
/*-------------------
Collection
--------------------*/
/* Sub Menu */
/*--------------
Elements
---------------*/
/* Icon */
/* Header */
/*--------------
Couplings
---------------*/
/* Button */
/* Input */
/* Label */
/* Dropdown */
/* Pointing Arrow */
/*--------------
States
---------------*/
/*--------------
Types
---------------*/
/* Vertical */
/* Secondary */
/* Pointing */
/* Tiered */
/* Tabular */
/* Pagination */
/* Labeled Icon */
/* Text */
/*--------------
Variations
---------------*/
/* Inverted */
/* Inverted Sub Menu */
/* Inverted Hover */
/* Pressed */
/* Inverted Active */
/* Inverted Secondary */
/* Inverted Menu Divider */
/* Fixed */
/* Attached */
/* Sizes */
/*------------------
Load Site
-------------------*/
@ -356,7 +207,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Standard

120
build/uncompressed/definitions/collections/message.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -164,122 +164,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Message
*******************************/
/*-------------------
Elements
--------------------*/
/* Header */
/* Paragraph */
/* List */
/* Icon */
/* Close Icon */
/*-------------------
Types
--------------------*/
/* Icon Message */
/* Attached */
/* Floating */
/*------------------
Load Site
-------------------*/
@ -290,7 +174,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Message

144
build/uncompressed/definitions/collections/table.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -188,146 +188,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Table
*******************************/
/*-------------------
Element
--------------------*/
/*-------------------
Types
--------------------*/
/* Definition */
/*--------------
Parts
---------------*/
/* Table Row */
/* Table Cell */
/* Table Header */
/* Table Footer */
/* Responsive Size */
/*--------------
Couplings
---------------*/
/*--------------
States
---------------*/
/* Positive */
/* Negative */
/* Error */
/* Warning */
/* Active */
/*--------------
Types
---------------*/
/* Attached */
/* Striped */
/* Sortable */
/* Colors */
/* Inverted */
/* Basic */
/* Padded */
/* Compact */
/* Sizes */
/*------------------
Load Site
-------------------*/
@ -338,7 +198,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Table

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

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -193,151 +193,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Button
*******************************/
/*-------------------
Element
--------------------*/
/* Shadow */
/* transitions */
/* Padding */
/* Icon */
/* Loader */
/*-------------------
Group
--------------------*/
/*-------------------
States
--------------------*/
/* Hovered */
/* Focused */
/* Pressed Down */
/* Active */
/* Active + Hovered */
/* Loading */
/*-------------------
Types
--------------------*/
/* Or */
/* Icon */
/* Labeled Icon */
/* Inverted */
/* Basic */
/* Basic Hover */
/* Basic Down */
/* Basic Active */
/* Basic Inverted */
/* Basic Group */
/*-------------------
Variations
--------------------*/
/* Colors */
/* Ordinality */
/* Compact */
/* Attached */
/* Floated */
/* Animated */
/* Sizing (Uses Defaults) */
/*------------------
Load Site
-------------------*/
@ -348,7 +203,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Button

123
build/uncompressed/definitions/elements/divider.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -165,123 +165,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Divider
*******************************/
/*-------------------
Element
--------------------*/
/* Text */
/*-------------------
Coupling
--------------------*/
/* Icon */
/*******************************
Variations
*******************************/
/* Horizontal / Vertical */
/* Inverted */
/* Section */
/* Sizes */
/*------------------
Load Site
-------------------*/
@ -292,7 +175,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Divider
@ -394,7 +277,7 @@
.ui.grid .stackable.row .ui.vertical.divider {
position: relative;
margin: 1rem 0rem;
left: 0;
left: 50%;
height: auto;
overflow: hidden;
line-height: 1;

109
build/uncompressed/definitions/elements/flag.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -144,114 +144,9 @@
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Flag
*******************************/
/*-------------------
Element
--------------------*/
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Flag
*******************************/
@ -268,7 +163,7 @@
Flag Variables
--------------------*/
/*------------------
Override Loader
Override Mix-in
-------------------*/
i.flag:not(.icon) {
display: inline-block;

127
build/uncompressed/definitions/elements/header.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -171,129 +171,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Header
*******************************/
/*-------------------
Element
--------------------*/
/* HTML Headings */
/* Sizing */
/* Sub Header */
/* Icon */
/* Label */
/* Content */
/* Paragraph after Header */
/*-------------------
Variations
--------------------*/
/* Icon Header */
/* No Line Height Offset */
/* Divided */
/* Block */
/* Divided */
/* Attached */
/* Inverted */
/* Floated */
/*------------------
Load Site
-------------------*/
@ -304,7 +181,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Header

109
build/uncompressed/definitions/elements/icon.css

@ -56,7 +56,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -166,111 +166,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Icon
*******************************/
/*-------------------
Icon Variables
--------------------*/
/*------------------
Load Site
-------------------*/
@ -281,7 +176,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Icon

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

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -163,121 +163,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Image
*******************************/
/*-------------------
Element
--------------------*/
/*-------------------
Types
--------------------*/
/* Avatar */
/*-------------------
Variations
--------------------*/
/* Floated */
/* Sizing */
/* Size */
/*------------------
Load Site
-------------------*/
@ -288,7 +173,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Image

127
build/uncompressed/definitions/elements/input.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -171,129 +171,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Input
*******************************/
/*-------------------
Element
--------------------*/
/*-------------------
Types
--------------------*/
/* Icon Input */
/* Circular Icon Input */
/* Labeled Input */
/*-------------------
States
--------------------*/
/* Placeholder */
/* Down */
/* Focus */
/* Error */
/* Loading */
/*-------------------
Variations
--------------------*/
/* Sizing */
/*------------------
Load Site
-------------------*/
@ -304,7 +181,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Standard

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

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -181,139 +181,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Label
*******************************/
/*-------------------
Element
--------------------*/
/* Group */
/*-------------------
Parts
--------------------*/
/*-------------------
Types
--------------------*/
/* Image Label */
/* Computed Values */
/*-------------------
States
--------------------*/
/*-------------------
Variations
--------------------*/
/* Tag */
/* Ribbon */
/* Attached */
/* Corner */
/* Corner Text */
/* Horizontal */
/* Circular Padding */
/* Pointing */
/* Floating */
/*-------------------
Group
--------------------*/
/* Sizing */
/*------------------
Load Site
-------------------*/
@ -324,7 +191,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Label

148
build/uncompressed/definitions/elements/list.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -192,150 +192,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
List
*******************************/
/*-------------------
View
--------------------*/
/* List */
/* Sub List */
/* List Item */
/*-------------------
Elements
--------------------*/
/* Icon */
/* Image */
/* Content */
/* Link */
/* Linked Icon */
/* Header */
/* Description */
/*-------------------
States
--------------------*/
/*-------------------
Variations
--------------------*/
/* Float */
/* Horizontal */
/* Inverted */
/* Link List */
/* Inverted Link List */
/* Selection List */
/* Selection List States */
/* Inverted Selection List */
/* Animated List */
/* Bulleted */
/* Horizontal Bullets */
/* Ordered List */
/* Horizontal Ordereded */
/* Divided */
/* Divided Horizontal */
/* Divided */
/* Divided Horizontal */
/* Relaxed */
/* Very Relaxed */
/* Sizes */
/*------------------
Load Site
-------------------*/
@ -346,7 +202,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
List

120
build/uncompressed/definitions/elements/loader.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -164,122 +164,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Loader
*******************************/
/*-------------------
Standard
--------------------*/
/*-------------------
Types
--------------------*/
/* Image */
/* Text */
/*-------------------
States
--------------------*/
/*-------------------
Variations
--------------------*/
/*------------------
Load Site
-------------------*/
@ -290,7 +174,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Loader

114
build/uncompressed/definitions/elements/rail.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -158,116 +158,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Rail
*******************************/
/*-------------------
Element
--------------------*/
/*-------------------
Variations
--------------------*/
/* Close */
/* Divided */
/*------------------
Load Site
-------------------*/
@ -278,7 +168,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Rails

106
build/uncompressed/definitions/elements/reveal.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -144,111 +144,9 @@
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Reveal
*******************************/
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Reveal
*******************************/
@ -262,7 +160,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Reveal

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

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -167,125 +167,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Segment
*******************************/
/*-------------------
Element
--------------------*/
/*-------------------
Coupling
--------------------*/
/* Page Grid Segment */
/*******************************
Variations
*******************************/
/* Piled */
/* Circular */
/* Stacked */
/* Raised */
/* Attached */
/* Colors */
/* Ordinality */
/*------------------
Load Site
-------------------*/
@ -296,7 +177,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Segment

125
build/uncompressed/definitions/elements/step.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -169,127 +169,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Step
*******************************/
/*-------------------
Element
--------------------*/
/* Icon */
/* Title */
/* Description */
/* Arrow */
/*-------------------
Group
--------------------*/
/*-------------------
States
--------------------*/
/* Completed */
/* Hover */
/* Down */
/* Active */
/* Active + Hover */
/* Disabled */
/*------------------
Load Site
-------------------*/
@ -300,7 +179,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Step

106
build/uncompressed/definitions/globals/reset.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -150,108 +150,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Reset
*******************************/
/*------------------
Load Site
-------------------*/
@ -262,7 +160,7 @@
User Global Variables
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Reset

304
build/uncompressed/definitions/globals/site.css

@ -44,7 +44,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -145,317 +145,17 @@
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*------------------
Load Site
-------------------*/
/*******************************
User Global Variables
*******************************/
/*******************************
User Global Variables
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Web Fonts

125
build/uncompressed/definitions/modules/accordion.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -169,127 +169,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Accordion
*******************************/
/* Title */
/* Icon */
/* Child Accordion */
/* Content */
/*-------------------
Coupling
--------------------*/
/*-------------------
States
--------------------*/
/*-------------------
Variations
--------------------*/
/* Styled */
/* Content */
/* Child Content */
/* Styled Title */
/* Styled Title States */
/* Styled Child Title States */
/*------------------
Load Site
-------------------*/
@ -300,7 +179,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Accordion

106
build/uncompressed/definitions/modules/chatroom.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -150,108 +150,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Chatroom
*******************************/
/*------------------
Load Site
-------------------*/
@ -262,7 +160,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Chat Room

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

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -170,128 +170,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Checkbox
*******************************/
/* Label */
/* Checkbox */
/* Checkmark */
/*-------------------
Coupling
--------------------*/
/*-------------------
States
--------------------*/
/* Disabled */
/*-------------------
Types
--------------------*/
/* Radio */
/* Slider & Toggle Handle */
/* Slider */
/* Toggle */
/*-------------------
Variations
--------------------*/
/*------------------
Load Site
-------------------*/
@ -302,7 +180,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Checkbox

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

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -157,115 +157,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Dimmer
*******************************/
/* Hidden (Default) */
/* Content */
/* Visible */
/*-------------------
Variations
--------------------*/
/* Simple */
/*------------------
Load Site
-------------------*/
@ -276,7 +167,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Dimmer

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

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -189,147 +189,6 @@ b Types
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Dropdown
*******************************/
/*-------------------
Element
--------------------*/
/*-------------------
Content
--------------------*/
/* Icon */
/* Current Text */
/* Menu */
/* Menu Item */
/* Menu Header */
/* Menu Divider */
/* Menu Input */
/* Menu Image */
/* Sub Menu Pointer Icon */
/* Menu Item Icon */
/* Sub Menu */
/*-------------------
b Types
--------------------*/
/* Selection */
/* Responsive */
/* Derived */
/* Hover */
/* Visible */
/* Visible Hover */
/* Inline */
/*-------------------
States
--------------------*/
/* Default Text */
/* Active Menu Item */
/* Error */
/*-------------------
Variations
--------------------*/
/* Simple */
/* Floating */
/* Pointing */
/*------------------
Load Site
-------------------*/
@ -340,7 +199,7 @@ b Types
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Dropdown

124
build/uncompressed/definitions/modules/modal.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -168,126 +168,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Modal
*******************************/
/* Close Icon */
/* Header */
/* Content */
/* Image / Description */
/* Modal Actions */
/* Inner Close Position (Tablet/Mobile) */
/* Mobile Positions */
/* Responsive Widths */
/*-------------------
Types
--------------------*/
/* Basic */
/* Scrolling Margin */
/*-------------------
Variations
--------------------*/
/* Size Widths */
/* Derived Responsive Sizes */
/*------------------
Load Site
-------------------*/
@ -298,7 +178,7 @@
Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Modal

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

@ -155,7 +155,7 @@ $.fn.modal = function(parameters) {
;
}
else {
module.error(error.notFound);
module.error(error.notFound, selector);
}
},

125
build/uncompressed/definitions/modules/nag.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -169,127 +169,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Nag
*******************************/
/*--------------
Collection
---------------*/
/*--------------
Elements
---------------*/
/* Title */
/*--------------
States
---------------*/
/* Hover */
/*--------------
Variations
---------------*/
/* Top / Bottom */
/* Inverted */
/*--------------
Plural
---------------*/
/*------------------
Load Site
-------------------*/
@ -300,7 +179,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Nag

128
build/uncompressed/definitions/modules/popup.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -172,130 +172,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Popup
*******************************/
/*-------------------
Element
--------------------*/
/*-------------------
Parts
--------------------*/
/* Placement */
/* Header */
/* Content Border */
/* Arrow */
/*-------------------
Coupling
--------------------*/
/*-------------------
States
--------------------*/
/*-------------------
Variations
--------------------*/
/* Wide */
/* Inverted */
/* Sizes */
/*------------------
Load Site
-------------------*/
@ -306,7 +182,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Popup

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

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -168,126 +168,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Progress
*******************************/
/*-------------------
Element
--------------------*/
/* Bar */
/* Progress Bar Label */
/* Label */
/*-------------------
Types
--------------------*/
/*-------------------
States
--------------------*/
/* Active */
/*-------------------
Types
--------------------*/
/* Attached */
/* Inverted */
/*------------------
Load Site
-------------------*/
@ -298,7 +178,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
.ui.progress {
position: relative;

117
build/uncompressed/definitions/modules/rating.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -161,119 +161,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Rating
*******************************/
/*-------------------
Types
--------------------*/
/* Star */
/* Heart */
/*-------------------
States
--------------------*/
/*-------------------
Variations
--------------------*/
/*------------------
Load Site
-------------------*/
@ -284,7 +171,7 @@
Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Rating

124
build/uncompressed/definitions/modules/search.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -168,126 +168,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Search
*******************************/
/* Result Box */
/* Result */
/* Result Image */
/* Result Content */
/* Special Message */
/* All Results Link */
/*******************************
States
*******************************/
/* Hover */
/* Loading */
/* Active Category */
/* Active Result */
/*******************************
Types
*******************************/
/* Category */
/* Sizes */
/*------------------
Load Site
-------------------*/
@ -298,7 +178,7 @@
Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Search

112
build/uncompressed/definitions/modules/shape.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -156,114 +156,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Shape
*******************************/
/* Animating */
/* Side */
/*--------------
Types
---------------*/
/* Cube */
/*------------------
Load Site
-------------------*/
@ -274,7 +166,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Shape

106
build/uncompressed/definitions/modules/sidebar.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -150,108 +150,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Sidebar
*******************************/
/*------------------
Load Site
-------------------*/
@ -262,7 +160,7 @@
Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Sidebar

6
build/uncompressed/definitions/modules/sidebar.js

@ -199,7 +199,7 @@ $.fn.sidebar = function(parameters) {
;
}
else {
module.error(error.notFound);
module.error(error.notFound, selector);
}
},
@ -786,8 +786,8 @@ $.fn.sidebar.settings = {
bottom : 'overlay'
},
mobile: {
left : 'overlay',
right : 'overlay',
left : 'uncover',
right : 'uncover',
top : 'overlay',
bottom : 'overlay'
}

106
build/uncompressed/definitions/modules/sticky.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -150,108 +150,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Sticky
*******************************/
/*------------------
Load Site
-------------------*/
@ -262,7 +160,7 @@
Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Sticky

108
build/uncompressed/definitions/modules/tab.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -152,110 +152,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Tab
*******************************/
/* Loading */
/* Loading Content */
/*------------------
Load Site
-------------------*/
@ -266,7 +162,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
UI Tabs

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

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -150,108 +150,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Transition
*******************************/
/*------------------
Load Site
-------------------*/
@ -262,7 +160,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Transitions

106
build/uncompressed/definitions/modules/video.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -150,108 +150,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Video
*******************************/
/*------------------
Load Site
-------------------*/
@ -259,7 +157,7 @@
User Global Variables
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Video

134
build/uncompressed/definitions/views/card.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -178,136 +178,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Card
*******************************/
/*-------------------
View
--------------------*/
/* Shadow */
/* Item */
/* Item Group */
/*-------------------
Content
--------------------*/
/* Image */
/* Content */
/* Header */
/* Metadata */
/* Icons */
/* Links */
/* Description */
/* Content Image */
/* Avatar Image */
/* Paragraph */
/* Additional Content */
/* Extra Links */
/*-------------------
Variations
--------------------*/
/* Link */
/* Card Count */
/* Stackable */
/* Sizes */
/*------------------
Load Site
-------------------*/
@ -318,7 +188,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Standard

127
build/uncompressed/definitions/views/comment.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -171,129 +171,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Comments
*******************************/
/*-------------------
View
--------------------*/
/*-------------------
Elements
--------------------*/
/* Comment */
/* Nested Comment */
/* Avatar */
/* Content */
/* Author */
/* Metadata */
/* Text */
/* Actions */
/* Reply */
/*-------------------
Variations
--------------------*/
/* Threaded */
/* Minimal */
/* Sizes */
/*------------------
Load Site
-------------------*/
@ -304,7 +181,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Standard

133
build/uncompressed/definitions/views/feed.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -177,135 +177,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Feed
*******************************/
/*-------------------
Feed
--------------------*/
/*-------------------
Elements
--------------------*/
/* Event */
/* Event Label */
/* Icon Label */
/* Image Label */
/* Content w/ Label */
/* Content */
/* Date */
/* Summary */
/* Summary Image */
/* Summary Date */
/* User */
/* Extra Summary Data */
/* Extra Images */
/* Extra Text */
/* Metadata Group */
/* Like */
/* Metadata Divider */
/*-------------------
Variations
--------------------*/
/* Size */
/*------------------
Load Site
-------------------*/
@ -316,7 +187,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Activity Feed

133
build/uncompressed/definitions/views/item.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -177,135 +177,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Item
*******************************/
/*-------------------
View
--------------------*/
/* Group */
/* Item */
/* Responsive */
/*-------------------
Content
--------------------*/
/* Image */
/* Content */
/* Header */
/* Metadata */
/* Icons */
/* Actions */
/* Links */
/* Description */
/* Content Image */
/* Avatar Image */
/* Paragraph */
/* Additional Content */
/*-------------------
Variations
--------------------*/
/* Relaxed */
/* Divided */
/* Sizes */
/*------------------
Load Site
-------------------*/
@ -316,7 +187,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Standard

127
build/uncompressed/definitions/views/statistic.css

@ -43,7 +43,7 @@
Import Directives
*******************************/
/*------------------
Load Defaults
Load Default
-------------------*/
/*******************************
Site Settings
@ -171,129 +171,6 @@
/*------------------
Load Theme
-------------------*/
/*******************************
Site Settings
*******************************/
/*-------------------
Paths
--------------------*/
/*-------------------
Fonts
--------------------*/
/*-------------------
Site Colors
--------------------*/
/*--- Colors ---*/
/*--- Light Colors ---*/
/*-------------------
Page
--------------------*/
/*-------------------
Background Colors
--------------------*/
/*-------------------
Accents
--------------------*/
/* 4px @ 14px */
/* Used for differentiating neutrals */
/* Used for differentiating layers */
/*-------------------
Grid
--------------------*/
/*-------------------
Breakpoints
--------------------*/
/*******************************
Power-User
*******************************/
/*-------------------
Icons
--------------------*/
/* Maximum Glyph Width of Icon */
/*-------------------
Easing
--------------------*/
/*--- Neutrals ---*/
/*--- Colored Backgrounds ---*/
/*--- Colored Text ---*/
/*--- Colored Headers ---*/
/*-------------------
Emotive Colors
--------------------*/
/* Mood */
/* Status */
/*-------------------
Neutral Text
--------------------*/
/*-------------------
Brand Colors
--------------------*/
/*-------------------
Borders
--------------------*/
/*-------------------
Sizes
--------------------*/
/*-------------------
Transitions
--------------------*/
/*-------------------
Derived Values
--------------------*/
/* Makes sure padded grid can fit at 320px */
/* Used to match floats with text */
/* Positive / Negative Dupes */
/* Header Colors */
/* Responsive */
/* Columns */
/*******************************
States
*******************************/
/*-------------------
Disabled
--------------------*/
/*-------------------
Hover
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Down (:active)
--------------------*/
/*--- Colors ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*-------------------
Active
--------------------*/
/*--- Standard ---*/
/*--- Emotive ---*/
/*--- Neutrals ---*/
/*******************************
Statistic
*******************************/
/*-------------------
View
--------------------*/
/* Group */
/* Group Element */
/*-------------------
Content
--------------------*/
/* Value */
/* Label */
/* Text */
/* Label Image */
/*-------------------
Types
--------------------*/
/*-------------------
Variations
--------------------*/
/* Floated */
/* Inverted */
/* Size */
/*------------------
Load Site
-------------------*/
@ -304,7 +181,7 @@
User Variable Overrides
*******************************/
/*------------------
Override Loader
Override Mix-in
-------------------*/
/*******************************
Statistic

138
server/documents/modules/api.html.eco

@ -14,12 +14,7 @@ type : 'Draft'
<div class="main container">
<div class="ui active tab" data-tab="overview">
<div class="ui two column stackable grid">
<div class="row">
<div class="sixteen wide column">
<p>There a few key features which make API more useful then jQuery AJAX or and simpler than MVC patterns.</p>
</div>
</div>
<div class="ui two column internally celled very relaxed stackable grid">
<div class="row">
<div class="column">
<div class="content">
@ -91,7 +86,7 @@ type : 'Draft'
<div class="item">Uses format <code>{/variable}</code></div>
<div class="item">Will abort the request if they cannot be found.</div>
<div class="item">Will be removed from the url automatically if not available.</div>
<div class="item">Any trailing slashes before optional parameters will also be removed from the URL, allowing you to include them in resource paths.</div>
<div class="item">Any preceding slash before an optional parameter will be removed from the URL, allowing you to include them in resource paths.</div>
</div>
</div>
</div>
@ -261,21 +256,53 @@ type : 'Draft'
</div>
</div>
<h2 class="ui dividing header">Controlling State</h2>
<h2 class="ui dividing header">Server Responses</h2>
<div class="no example">
<h4 class="ui header">UI State</h4>
<h4 class="ui header">Determining Success</h4>
<p>API is designed to work with APIs that return <code>JSON</code> objects. Instead of providiing success and failure callbacks based on the HTTP response of the request. A request is considered succesful only if the returned JSON value passes a <code>successTest</code>.</p>
<p>For example you might expect all successful JSON responses to return a top level property signifying the success of the response<p>
<div class="code" data-type="json" data-title="Server Response">
{
success: true
data: {
proprietaryData:
}
}
</div>
<p>Your success test recieves the servers json response, and should return true or false on whether the result should be considered successful. Succesful results will trigger <code>onSuccess</code> unsuccesful results <code>onFailure</code> but not <code>onError</code>, this is reserved for responses which return <a href="https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest">XHR</a> errors.</p>
<div class="code" data-type="javascript">
$('.follow.button')
.api({
successTest: function(response) {
return response.success || false;
}
onSuccess: function() {
// valid response and action succeeded
},
onFailure: function() {
// valid response but action failed
},
onError: function() {
// invalid response
}
})
;
</div>
</div>
<p>Many elements like <a href="/elements/button.html">button</a>, <a href="/elements/input.html">input</a>, and <a href="/collections/form.html">form</a> have loading, disabled, and active states defined.</p>
<p>API will automatically attach a <b>loading</b> state when an API request is triggered, but makes no other assumptions about states.</p>
</div>
<h2 class="ui dividing header">Controlling State</h2>
<div class="no example">
<h4 class="ui header">State Management</h4>
<p>If <code>state()</code> is invoked after an API event is attached to an element, it will automatically toggle an active state on the element after a successful API request.</p>
<p>Basic included states</p>
<h4 class="ui header">API State Management</h4>
<p>Many elements like <a href="/elements/button.html">button</a>, <a href="/elements/input.html">input</a>, and <a href="/collections/form.html">form</a> have loading, disabled, and active states defined.</p>
<p>States adjust class names on the triggering element or on the element specified by <code>settings.stateContext</code>.</p>
<p>Using <code>stateContext</code> allows you to easily do things like, trigger a loading state on a form when a submit button is pressed.</p>
<h5 class="ui header">States Included in API Module</h5>
<table class="ui definition table">
<thead>
<tr>
@ -293,16 +320,36 @@ type : 'Draft'
<tr>
<td>error</td>
<td>Indicates an error has occurred</td>
<td>Request returns error (does not trigger onAbort caused by page change) </td>
<td>XHR Request returns error (does not trigger onAbort caused by page change, or if successTest fails). Stays visible for <code>settings.errorDuration</code></td>
</tr>
</tbody>
</table>
</div>
<div class="no example">
<h4 class="ui header">UI State</h4>
<h4 class="ui header">Coupling with State Module</h4>
<p>Initializing an API action with the state module gives you more granular control over UI states, like setting an activated or de-activated state and the ability to adjust text values for each state:</p>
<p>Invoking state also includes additional states which can adjust text values:</p>
<p>
For additional examples of the possibilities available with state behaviors check the <a href="#">state module documentation</a>
</p>
<div class="code" data-demo="true">
$('.follow.button')
.state({
text: {
inactive : 'Follow',
active : 'Followed',
deactivate : 'Unfollow',
flash : 'Added follower!'
}
})
.state('setting', 'onActivate', function() {
$(this).state('flash text');
})
;
</div>
<h5 class="ui header">States Included in State Module</h5>
<table class="ui definition table">
<thead>
<tr>
@ -314,71 +361,57 @@ type : 'Draft'
<tbody>
<tr>
<td>inactive</td>
<td>User has not selected</td>
<td>Default state</td>
</tr>
<tr>
<td>active</td>
<td>User has selected</td>
<td>Selected state</td>
<td>Toggled on succesful API request</td>
</tr>
<tr>
<td>activate</td>
<td>Text explaining activating action</td>
<td>Explains activating action</td>
<td>On hover if inactive</td>
</tr>
<tr>
<td>deactivate</td>
<td>default state</td>
<td>Explains deactivating action</td>
<td>On hover if active</td>
</tr>
<tr>
<td>hover</td>
<td>Text-only state explaining interaction</td>
<td>On hover if inactive or active</td>
<td>Explains interaction</td>
<td>On hover in all states, overrides activate/deactivate</td>
</tr>
<tr>
<td>disabled</td>
<td>Indicates element is disabled</td>
<td>Only triggered programatically</td>
<td>Indicates element cannot be interacted</td>
<td>Triggered programatically. Blocks API requests.</td>
</tr>
<tr>
<td>Flash</td>
<td>flash</td>
<td>Text-only state used to display a temporary message</td>
<td>Only triggered programatically</td>
<td>Triggered programatically</td>
</tr>
<tr>
<td>success</td>
<td>Indicates user action was a success</td>
<td>Triggered programatically</td>
</tr>
<tr>
<td>Disabled</td>
<td>Cannot receive user interaction</td>
<td>warning</td>
<td>Indicates there was an issue with a user action</td>
<td>Triggered programatically</td>
</tr>
</tbody>
</table>
<ul class="ui list">
<li><b>Inactive</b> - Default state</li>
<li><b>Active</b> - API request is completed succesfully</li>
<li><b>Enable</b> - Text on hover if currently in inactive state</li>
<li><b>Disable</b> - Text on hover if currently in inactive state</li>
<li><b>Deactivate</b> - Text on hover if currently in active state</li>
<li><b>Hover</b> - Text appears on hover regardless of state</li>
<li><b>Flash</b> - Text appears on element for time duration set by <code>flashDuration</code>
</ul>
<div class="code" data-demo="true">
$('.follow.button')
.state({
text: {
inactive : 'Follow',
active : 'Followed',
deactivate : 'Unfollow',
flash : 'Updated!'
}
})
;
</div>
</div>
</div>
</div>
<div class="ui tab" data-tab="examples">
<p>Needs to be written still...</p>
<!-- Search Example !-->
@ -391,6 +424,7 @@ type : 'Draft'
</div>
<div class="ui tab" data-tab="settings">
<p>Needs to be written still...</p>
</div>

2
server/files/javascript/api.js

@ -23,7 +23,7 @@ semantic.api.ready = function() {
;
server.autoRespond = true;
server.autoRespondAfter = 500;
server.autoRespondAfter = 300;
server
.respondWith(/\/follow\/(\d+)/, [responseCode, headers, body])

25
src/definitions/behaviors/api.js

@ -64,6 +64,7 @@ $.api = $.fn.api = function(parameters) {
// standard module
element = this,
context = $context.get(),
instance = $module.data(moduleNamespace),
module
;
@ -121,7 +122,6 @@ $.api = $.fn.api = function(parameters) {
if(settings.defaultData) {
$.extend(true, settings.urlData, module.get.defaultData());
}
console.log(settings.urlData);
// Add form content
if(settings.serializeForm !== false || $module.is('form')) {
@ -334,27 +334,27 @@ $.api = $.fn.api = function(parameters) {
request: {
complete: function(response) {
module.remove.loading();
$.proxy(settings.onComplete, $context)(response, $module);
$.proxy(settings.onComplete, context)(response, $module);
},
done: function(response) {
module.debug('API request received', response);
module.debug('API Response Received', response);
if(settings.dataType == 'json') {
if( $.isFunction(settings.successTest) ) {
module.debug('Checking JSON', settings.successTest, response);
if( settings.onSuccess(response) ) {
$.proxy(settings.onSuccess, $context)(response, $module);
module.debug('Checking JSON returned success', settings.successTest, response);
if( settings.successTest(response) ) {
$.proxy(settings.onSuccess, context)(response, $module);
}
else {
module.debug('JSON test specified by user and response failed', response);
$.proxy(settings.onFailure, $context)(response, $module);
$.proxy(settings.onFailure, context)(response, $module);
}
}
else {
$.proxy(settings.onSuccess, $context)(response, $module);
$.proxy(settings.onSuccess, context)(response, $module);
}
}
else {
$.proxy(settings.onSuccess, $context)(response, $module);
$.proxy(settings.onSuccess, context)(response, $module);
}
},
error: function(xhr, status, httpMessage) {
@ -393,10 +393,10 @@ $.api = $.fn.api = function(parameters) {
setTimeout(module.remove.error, settings.errorDuration);
}
module.debug('API Request error:', errorMessage);
$.proxy(settings.onFailure, $context)(errorMessage, $module);
$.proxy(settings.onFailure, context)(errorMessage, $module);
}
else {
$.proxy(settings.onAbort, $context)(errorMessage, $module);
$.proxy(settings.onAbort, context)(errorMessage, $module);
module.debug('Request Aborted (Most likely caused by page change or CORS Policy)', status, httpMessage);
}
}
@ -775,7 +775,6 @@ $.api.settings = {
method : 'get',
data : {},
dataType : 'json',
cache : true,
// callbacks
beforeSend : function(settings) { return settings; },
@ -786,7 +785,7 @@ $.api.settings = {
onFailure : function(errorMessage, $module) {},
onAbort : function(errorMessage, $module) {},
successTest : function(response) { return true; },
successTest : false,
// errors
error : {

7
src/definitions/behaviors/state.js

@ -198,7 +198,6 @@ $.fn.state = function(parameters) {
module.refresh();
if($.fn.api !== undefined) {
apiRequest = $module.api('get request');
console.log(apiRequest, $module);
if(apiRequest) {
module.listenTo(apiRequest);
return;
@ -294,8 +293,8 @@ $.fn.state = function(parameters) {
.addClass(className.active)
;
module.update.text(text.active);
}
$.proxy(settings.onActivate, element)();
}
},
deactivate: function() {
@ -305,8 +304,8 @@ $.fn.state = function(parameters) {
.removeClass(className.active)
;
module.update.text(text.inactive);
}
$.proxy(settings.onDeactivate, element)();
}
},
sync: function() {
@ -610,7 +609,7 @@ $.fn.state.settings = {
sync : false,
// default flash text duration, used for temporarily changing text of an element
flashDuration : 3000,
flashDuration : 1000,
// selector filter
filter : {

Loading…
Cancel
Save