| @ -0,0 +1,223 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Accordion | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Accordion | |||
| *******************************/ | |||
| .ui.accordion, | |||
| .ui.accordion .accordion { | |||
| max-width: 100%; | |||
| } | |||
| .ui.accordion .accordion { | |||
| margin: 1em 0em 0em; | |||
| padding: 0em; | |||
| } | |||
| /* Title */ | |||
| .ui.accordion .title, | |||
| .ui.accordion .accordion .title { | |||
| cursor: pointer; | |||
| } | |||
| /* Default Styling */ | |||
| .ui.accordion .title:not(.ui) { | |||
| padding: 0.5em 0em; | |||
| font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif; | |||
| font-size: 1em; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /* Content */ | |||
| .ui.accordion .title ~ .content, | |||
| .ui.accordion .accordion .title ~ .content { | |||
| display: none; | |||
| } | |||
| /* Default Styling */ | |||
| .ui.accordion:not(.styled) .title ~ .content:not(.ui), | |||
| .ui.accordion:not(.styled) .accordion .title ~ .content:not(.ui) { | |||
| margin: ''; | |||
| padding: 0.5em 0em 1em; | |||
| } | |||
| .ui.accordion:not(.styled) .title ~ .content:not(.ui):last-child { | |||
| padding-bottom: 0em; | |||
| } | |||
| /* Arrow */ | |||
| .ui.accordion .title .dropdown.icon, | |||
| .ui.accordion .accordion .title .dropdown.icon { | |||
| display: inline-block; | |||
| float: none; | |||
| opacity: 1; | |||
| width: 1.25em; | |||
| height: 1em; | |||
| margin: 0em 0.25rem 0em 0rem; | |||
| padding: 0em; | |||
| font-size: 1em; | |||
| -webkit-transition: -webkit-transform 0.1s ease, opacity 0.1s ease; | |||
| transition: transform 0.1s ease, opacity 0.1s ease; | |||
| vertical-align: baseline; | |||
| -webkit-transform: none; | |||
| transform: none; | |||
| } | |||
| /*-------------- | |||
| Coupling | |||
| ---------------*/ | |||
| /* Menu */ | |||
| .ui.accordion.menu .item .title { | |||
| display: block; | |||
| padding: 0em; | |||
| } | |||
| .ui.accordion.menu .item .title > .dropdown.icon { | |||
| float: right; | |||
| margin: 0.21425em 0em 0em 1em; | |||
| -webkit-transform: rotate(180deg); | |||
| transform: rotate(180deg); | |||
| } | |||
| /* Header */ | |||
| .ui.accordion .ui.header .dropdown.icon { | |||
| font-size: 1em; | |||
| margin: 0em 0.25rem 0em 0rem; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| .ui.accordion .active.title .dropdown.icon, | |||
| .ui.accordion .accordion .active.title .dropdown.icon { | |||
| -webkit-transform: rotate(90deg); | |||
| transform: rotate(90deg); | |||
| } | |||
| .ui.accordion.menu .item .active.title > .dropdown.icon { | |||
| -webkit-transform: rotate(90deg); | |||
| transform: rotate(90deg); | |||
| } | |||
| /******************************* | |||
| Types | |||
| *******************************/ | |||
| /*-------------- | |||
| Styled | |||
| ---------------*/ | |||
| .ui.styled.accordion { | |||
| width: 600px; | |||
| } | |||
| .ui.styled.accordion, | |||
| .ui.styled.accordion .accordion { | |||
| border-radius: 0.2307em; | |||
| background: #FFFFFF; | |||
| box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.13), 0px 0px 0px 1px rgba(0, 0, 0, 0.13); | |||
| } | |||
| .ui.styled.accordion .title, | |||
| .ui.styled.accordion .accordion .title { | |||
| margin: 0em; | |||
| padding: 0.75em 1em; | |||
| color: rgba(0, 0, 0, 0.4); | |||
| font-weight: bold; | |||
| border-top: 1px solid rgba(0, 0, 0, 0.13); | |||
| -webkit-transition: background 0.1s ease, color 0.1s ease; | |||
| transition: background 0.1s ease, color 0.1s ease; | |||
| } | |||
| .ui.styled.accordion > .title:first-child, | |||
| .ui.styled.accordion .accordion .title:first-child { | |||
| border-top: none; | |||
| } | |||
| /* Content */ | |||
| .ui.styled.accordion .content, | |||
| .ui.styled.accordion .accordion .content { | |||
| margin: 0em; | |||
| padding: 0.5em 1em 1.5em; | |||
| } | |||
| .ui.styled.accordion .accordion .content { | |||
| padding: 0em; | |||
| padding: 0.5em 1em 1.5em; | |||
| } | |||
| /* Hover */ | |||
| .ui.styled.accordion .title:hover, | |||
| .ui.styled.accordion .active.title, | |||
| .ui.styled.accordion .accordion .title:hover, | |||
| .ui.styled.accordion .accordion .active.title { | |||
| background: transparent; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.styled.accordion .accordion .title:hover, | |||
| .ui.styled.accordion .accordion .active.title { | |||
| background: transparent; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /* Active */ | |||
| .ui.styled.accordion .active.title { | |||
| background: transparent; | |||
| color: rgba(0, 0, 0, 0.95); | |||
| } | |||
| .ui.styled.accordion .accordion .active.title { | |||
| background: transparent; | |||
| color: rgba(0, 0, 0, 0.95); | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| /*-------------- | |||
| Active | |||
| ---------------*/ | |||
| .ui.accordion .active.content, | |||
| .ui.accordion .accordion .active.content { | |||
| display: block; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*-------------- | |||
| Fluid | |||
| ---------------*/ | |||
| .ui.fluid.accordion, | |||
| .ui.fluid.accordion .accordion { | |||
| width: 100%; | |||
| } | |||
| /*-------------- | |||
| Inverted | |||
| ---------------*/ | |||
| .ui.inverted.accordion .title:not(.ui) { | |||
| color: rgba(255, 255, 255, 0.9); | |||
| } | |||
| /******************************* | |||
| User Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,596 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Accordion | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| ;(function ($, window, document, undefined) { | |||
| "use strict"; | |||
| $.fn.accordion = function(parameters) { | |||
| var | |||
| $allModules = $(this), | |||
| time = new Date().getTime(), | |||
| performance = [], | |||
| query = arguments[0], | |||
| methodInvoked = (typeof query == 'string'), | |||
| queryArguments = [].slice.call(arguments, 1), | |||
| requestAnimationFrame = window.requestAnimationFrame | |||
| || window.mozRequestAnimationFrame | |||
| || window.webkitRequestAnimationFrame | |||
| || window.msRequestAnimationFrame | |||
| || function(callback) { setTimeout(callback, 0); }, | |||
| returnedValue | |||
| ; | |||
| $allModules | |||
| .each(function() { | |||
| var | |||
| settings = ( $.isPlainObject(parameters) ) | |||
| ? $.extend(true, {}, $.fn.accordion.settings, parameters) | |||
| : $.extend({}, $.fn.accordion.settings), | |||
| className = settings.className, | |||
| namespace = settings.namespace, | |||
| selector = settings.selector, | |||
| error = settings.error, | |||
| eventNamespace = '.' + namespace, | |||
| moduleNamespace = 'module-' + namespace, | |||
| moduleSelector = $allModules.selector || '', | |||
| $module = $(this), | |||
| $title = $module.find(selector.title), | |||
| $content = $module.find(selector.content), | |||
| element = this, | |||
| instance = $module.data(moduleNamespace), | |||
| observer, | |||
| module | |||
| ; | |||
| module = { | |||
| initialize: function() { | |||
| module.debug('Initializing', $module); | |||
| module.bind.events(); | |||
| if(settings.observeChanges) { | |||
| module.observeChanges(); | |||
| } | |||
| module.instantiate(); | |||
| }, | |||
| instantiate: function() { | |||
| instance = module; | |||
| $module | |||
| .data(moduleNamespace, module) | |||
| ; | |||
| }, | |||
| destroy: function() { | |||
| module.debug('Destroying previous instance', $module); | |||
| $module | |||
| .off(eventNamespace) | |||
| .removeData(moduleNamespace) | |||
| ; | |||
| }, | |||
| refresh: function() { | |||
| $title = $module.find(selector.title); | |||
| $content = $module.find(selector.content); | |||
| }, | |||
| observeChanges: function() { | |||
| if('MutationObserver' in window) { | |||
| observer = new MutationObserver(function(mutations) { | |||
| module.debug('DOM tree modified, updating selector cache'); | |||
| module.refresh(); | |||
| }); | |||
| observer.observe(element, { | |||
| childList : true, | |||
| subtree : true | |||
| }); | |||
| module.debug('Setting up mutation observer', observer); | |||
| } | |||
| }, | |||
| bind: { | |||
| events: function() { | |||
| module.debug('Binding delegated events'); | |||
| $module | |||
| .on(settings.on + eventNamespace, selector.trigger, module.event.click) | |||
| ; | |||
| } | |||
| }, | |||
| event: { | |||
| click: function() { | |||
| module.toggle.call(this); | |||
| } | |||
| }, | |||
| toggle: function(query) { | |||
| var | |||
| $activeTitle = (query !== undefined) | |||
| ? (typeof query === 'number') | |||
| ? $title.eq(query) | |||
| : $(query).closest(selector.title) | |||
| : $(this).closest(selector.title), | |||
| $activeContent = $activeTitle.next($content), | |||
| isAnimating = $activeContent.hasClass(className.animating), | |||
| isActive = $activeContent.hasClass(className.active), | |||
| isOpen = (isActive && !isAnimating), | |||
| isOpening = (!isActive && isAnimating) | |||
| ; | |||
| module.debug('Toggling visibility of content', $activeTitle); | |||
| if(isOpen || isOpening) { | |||
| if(settings.collapsible) { | |||
| module.close.call($activeTitle); | |||
| } | |||
| else { | |||
| module.debug('Cannot close accordion content collapsing is disabled'); | |||
| } | |||
| } | |||
| else { | |||
| module.open.call($activeTitle); | |||
| } | |||
| }, | |||
| open: function(query) { | |||
| var | |||
| $activeTitle = (query !== undefined) | |||
| ? (typeof query === 'number') | |||
| ? $title.eq(query) | |||
| : $(query).closest(selector.title) | |||
| : $(this).closest(selector.title), | |||
| $activeContent = $activeTitle.next($content), | |||
| isAnimating = $activeContent.hasClass(className.animating), | |||
| isActive = $activeContent.hasClass(className.active), | |||
| isOpen = (isActive || isAnimating) | |||
| ; | |||
| if(isOpen) { | |||
| module.debug('Accordion already open, skipping', $activeContent); | |||
| return; | |||
| } | |||
| module.debug('Opening accordion content', $activeTitle); | |||
| settings.onOpening.call($activeContent); | |||
| if(settings.exclusive) { | |||
| module.closeOthers.call($activeTitle); | |||
| } | |||
| $activeTitle | |||
| .addClass(className.active) | |||
| ; | |||
| $activeContent | |||
| .stop(true, true) | |||
| .addClass(className.animating) | |||
| ; | |||
| if(settings.animateChildren) { | |||
| if($.fn.transition !== undefined && $module.transition('is supported')) { | |||
| $activeContent | |||
| .children() | |||
| .transition({ | |||
| animation : 'fade in', | |||
| queue : false, | |||
| useFailSafe : true, | |||
| debug : settings.debug, | |||
| verbose : settings.verbose, | |||
| duration : settings.duration | |||
| }) | |||
| ; | |||
| } | |||
| else { | |||
| $activeContent | |||
| .children() | |||
| .stop(true, true) | |||
| .animate({ | |||
| opacity: 1 | |||
| }, settings.duration, module.resetOpacity) | |||
| ; | |||
| } | |||
| } | |||
| $activeContent | |||
| .slideDown(settings.duration, settings.easing, function() { | |||
| $activeContent | |||
| .removeClass(className.animating) | |||
| .addClass(className.active) | |||
| ; | |||
| module.reset.display.call(this); | |||
| settings.onOpen.call(this); | |||
| settings.onChange.call(this); | |||
| }) | |||
| ; | |||
| }, | |||
| close: function(query) { | |||
| var | |||
| $activeTitle = (query !== undefined) | |||
| ? (typeof query === 'number') | |||
| ? $title.eq(query) | |||
| : $(query).closest(selector.title) | |||
| : $(this).closest(selector.title), | |||
| $activeContent = $activeTitle.next($content), | |||
| isAnimating = $activeContent.hasClass(className.animating), | |||
| isActive = $activeContent.hasClass(className.active), | |||
| isOpening = (!isActive && isAnimating), | |||
| isClosing = (isActive && isAnimating) | |||
| ; | |||
| if((isActive || isOpening) && !isClosing) { | |||
| module.debug('Closing accordion content', $activeContent); | |||
| settings.onClosing.call($activeContent); | |||
| $activeTitle | |||
| .removeClass(className.active) | |||
| ; | |||
| $activeContent | |||
| .stop(true, true) | |||
| .addClass(className.animating) | |||
| ; | |||
| if(settings.animateChildren) { | |||
| if($.fn.transition !== undefined && $module.transition('is supported')) { | |||
| $activeContent | |||
| .children() | |||
| .transition({ | |||
| animation : 'fade out', | |||
| queue : false, | |||
| useFailSafe : true, | |||
| debug : settings.debug, | |||
| verbose : settings.verbose, | |||
| duration : settings.duration | |||
| }) | |||
| ; | |||
| } | |||
| else { | |||
| $activeContent | |||
| .children() | |||
| .stop(true, true) | |||
| .animate({ | |||
| opacity: 0 | |||
| }, settings.duration, module.resetOpacity) | |||
| ; | |||
| } | |||
| } | |||
| $activeContent | |||
| .slideUp(settings.duration, settings.easing, function() { | |||
| $activeContent | |||
| .removeClass(className.animating) | |||
| .removeClass(className.active) | |||
| ; | |||
| module.reset.display.call(this); | |||
| settings.onClose.call(this); | |||
| settings.onChange.call(this); | |||
| }) | |||
| ; | |||
| } | |||
| }, | |||
| closeOthers: function(index) { | |||
| var | |||
| $activeTitle = (index !== undefined) | |||
| ? $title.eq(index) | |||
| : $(this).closest(selector.title), | |||
| $parentTitles = $activeTitle.parents(selector.content).prev(selector.title), | |||
| $activeAccordion = $activeTitle.closest(selector.accordion), | |||
| activeSelector = selector.title + '.' + className.active + ':visible', | |||
| activeContent = selector.content + '.' + className.active + ':visible', | |||
| $openTitles, | |||
| $nestedTitles, | |||
| $openContents | |||
| ; | |||
| if(settings.closeNested) { | |||
| $openTitles = $activeAccordion.find(activeSelector).not($parentTitles); | |||
| $openContents = $openTitles.next($content); | |||
| } | |||
| else { | |||
| $openTitles = $activeAccordion.find(activeSelector).not($parentTitles); | |||
| $nestedTitles = $activeAccordion.find(activeContent).find(activeSelector).not($parentTitles); | |||
| $openTitles = $openTitles.not($nestedTitles); | |||
| $openContents = $openTitles.next($content); | |||
| } | |||
| if( ($openTitles.length > 0) ) { | |||
| module.debug('Exclusive enabled, closing other content', $openTitles); | |||
| $openTitles | |||
| .removeClass(className.active) | |||
| ; | |||
| $openContents | |||
| .removeClass(className.animating) | |||
| .stop(true, true) | |||
| ; | |||
| if(settings.animateChildren) { | |||
| if($.fn.transition !== undefined && $module.transition('is supported')) { | |||
| $openContents | |||
| .children() | |||
| .transition({ | |||
| animation : 'fade out', | |||
| useFailSafe : true, | |||
| debug : settings.debug, | |||
| verbose : settings.verbose, | |||
| duration : settings.duration | |||
| }) | |||
| ; | |||
| } | |||
| else { | |||
| $openContents | |||
| .children() | |||
| .stop(true, true) | |||
| .animate({ | |||
| opacity: 0 | |||
| }, settings.duration, module.resetOpacity) | |||
| ; | |||
| } | |||
| } | |||
| $openContents | |||
| .slideUp(settings.duration , settings.easing, function() { | |||
| $(this).removeClass(className.active); | |||
| module.reset.display.call(this); | |||
| }) | |||
| ; | |||
| } | |||
| }, | |||
| reset: { | |||
| display: function() { | |||
| module.verbose('Removing inline display from element', this); | |||
| $(this).css('display', ''); | |||
| if( $(this).attr('style') === '') { | |||
| $(this) | |||
| .attr('style', '') | |||
| .removeAttr('style') | |||
| ; | |||
| } | |||
| }, | |||
| opacity: function() { | |||
| module.verbose('Removing inline opacity from element', this); | |||
| $(this).css('opacity', ''); | |||
| if( $(this).attr('style') === '') { | |||
| $(this) | |||
| .attr('style', '') | |||
| .removeAttr('style') | |||
| ; | |||
| } | |||
| }, | |||
| }, | |||
| setting: function(name, value) { | |||
| module.debug('Changing setting', name, value); | |||
| if( $.isPlainObject(name) ) { | |||
| $.extend(true, settings, name); | |||
| } | |||
| else if(value !== undefined) { | |||
| settings[name] = value; | |||
| } | |||
| else { | |||
| return settings[name]; | |||
| } | |||
| }, | |||
| internal: function(name, value) { | |||
| module.debug('Changing internal', name, value); | |||
| if(value !== undefined) { | |||
| if( $.isPlainObject(name) ) { | |||
| $.extend(true, module, name); | |||
| } | |||
| else { | |||
| module[name] = value; | |||
| } | |||
| } | |||
| else { | |||
| return module[name]; | |||
| } | |||
| }, | |||
| debug: function() { | |||
| if(settings.debug) { | |||
| if(settings.performance) { | |||
| module.performance.log(arguments); | |||
| } | |||
| else { | |||
| module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':'); | |||
| module.debug.apply(console, arguments); | |||
| } | |||
| } | |||
| }, | |||
| verbose: function() { | |||
| if(settings.verbose && settings.debug) { | |||
| if(settings.performance) { | |||
| module.performance.log(arguments); | |||
| } | |||
| else { | |||
| module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':'); | |||
| module.verbose.apply(console, arguments); | |||
| } | |||
| } | |||
| }, | |||
| error: function() { | |||
| module.error = Function.prototype.bind.call(console.error, console, settings.name + ':'); | |||
| module.error.apply(console, arguments); | |||
| }, | |||
| performance: { | |||
| log: function(message) { | |||
| var | |||
| currentTime, | |||
| executionTime, | |||
| previousTime | |||
| ; | |||
| if(settings.performance) { | |||
| currentTime = new Date().getTime(); | |||
| previousTime = time || currentTime; | |||
| executionTime = currentTime - previousTime; | |||
| time = currentTime; | |||
| performance.push({ | |||
| 'Name' : message[0], | |||
| 'Arguments' : [].slice.call(message, 1) || '', | |||
| 'Element' : element, | |||
| 'Execution Time' : executionTime | |||
| }); | |||
| } | |||
| clearTimeout(module.performance.timer); | |||
| module.performance.timer = setTimeout(module.performance.display, 500); | |||
| }, | |||
| display: function() { | |||
| var | |||
| title = settings.name + ':', | |||
| totalTime = 0 | |||
| ; | |||
| time = false; | |||
| clearTimeout(module.performance.timer); | |||
| $.each(performance, function(index, data) { | |||
| totalTime += data['Execution Time']; | |||
| }); | |||
| title += ' ' + totalTime + 'ms'; | |||
| if(moduleSelector) { | |||
| title += ' \'' + moduleSelector + '\''; | |||
| } | |||
| if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) { | |||
| console.groupCollapsed(title); | |||
| if(console.table) { | |||
| console.table(performance); | |||
| } | |||
| else { | |||
| $.each(performance, function(index, data) { | |||
| console.log(data['Name'] + ': ' + data['Execution Time']+'ms'); | |||
| }); | |||
| } | |||
| console.groupEnd(); | |||
| } | |||
| performance = []; | |||
| } | |||
| }, | |||
| invoke: function(query, passedArguments, context) { | |||
| var | |||
| object = instance, | |||
| maxDepth, | |||
| found, | |||
| response | |||
| ; | |||
| passedArguments = passedArguments || queryArguments; | |||
| context = element || context; | |||
| if(typeof query == 'string' && object !== undefined) { | |||
| query = query.split(/[\. ]/); | |||
| maxDepth = query.length - 1; | |||
| $.each(query, function(depth, value) { | |||
| var camelCaseValue = (depth != maxDepth) | |||
| ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1) | |||
| : query | |||
| ; | |||
| if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) { | |||
| object = object[camelCaseValue]; | |||
| } | |||
| else if( object[camelCaseValue] !== undefined ) { | |||
| found = object[camelCaseValue]; | |||
| return false; | |||
| } | |||
| else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) { | |||
| object = object[value]; | |||
| } | |||
| else if( object[value] !== undefined ) { | |||
| found = object[value]; | |||
| return false; | |||
| } | |||
| else { | |||
| module.error(error.method, query); | |||
| return false; | |||
| } | |||
| }); | |||
| } | |||
| if ( $.isFunction( found ) ) { | |||
| response = found.apply(context, passedArguments); | |||
| } | |||
| else if(found !== undefined) { | |||
| response = found; | |||
| } | |||
| if($.isArray(returnedValue)) { | |||
| returnedValue.push(response); | |||
| } | |||
| else if(returnedValue !== undefined) { | |||
| returnedValue = [returnedValue, response]; | |||
| } | |||
| else if(response !== undefined) { | |||
| returnedValue = response; | |||
| } | |||
| return found; | |||
| } | |||
| }; | |||
| if(methodInvoked) { | |||
| if(instance === undefined) { | |||
| module.initialize(); | |||
| } | |||
| module.invoke(query); | |||
| } | |||
| else { | |||
| if(instance !== undefined) { | |||
| instance.invoke('destroy'); | |||
| } | |||
| module.initialize(); | |||
| } | |||
| }) | |||
| ; | |||
| return (returnedValue !== undefined) | |||
| ? returnedValue | |||
| : this | |||
| ; | |||
| }; | |||
| $.fn.accordion.settings = { | |||
| name : 'Accordion', | |||
| namespace : 'accordion', | |||
| debug : false, | |||
| verbose : false, | |||
| performance : true, | |||
| on : 'click', // event on title that opens accordion | |||
| observeChanges : true, // whether accordion should automatically refresh on DOM insertion | |||
| exclusive : true, // whether a single accordion content panel should be open at once | |||
| collapsible : true, // whether accordion content can be closed | |||
| closeNested : false, // whether nested content should be closed when a panel is closed | |||
| animateChildren : true, // whether children opacity should be animated | |||
| duration : 350, // duration of animation | |||
| easing : 'easeOutQuad', // easing equation for animation | |||
| onOpening : function(){}, // callback before open animation | |||
| onOpen : function(){}, // callback after open animation | |||
| onClosing : function(){}, // callback before closing animation | |||
| onClose : function(){}, // callback after closing animation | |||
| onChange : function(){}, // callback after closing or opening animation | |||
| error: { | |||
| method : 'The method you called is not defined' | |||
| }, | |||
| className : { | |||
| active : 'active', | |||
| animating : 'animating' | |||
| }, | |||
| selector : { | |||
| accordion : '.accordion', | |||
| title : '.title', | |||
| trigger : '.title', | |||
| content : '.content' | |||
| } | |||
| }; | |||
| // Adds easing | |||
| $.extend( $.easing, { | |||
| easeOutQuad: function (x, t, b, c, d) { | |||
| return -c *(t/=d)*(t-2) + b; | |||
| } | |||
| }); | |||
| })( jQuery, window, document ); | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Accordion | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */.ui.accordion,.ui.accordion .accordion{max-width:100%}.ui.accordion .accordion{margin:1em 0 0;padding:0}.ui.accordion .accordion .title,.ui.accordion .title{cursor:pointer}.ui.accordion .title:not(.ui){padding:.5em 0;font-family:Arial,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1em;color:rgba(0,0,0,.87)}.ui.accordion .accordion .title~.content,.ui.accordion .title~.content{display:none}.ui.accordion:not(.styled) .accordion .title~.content:not(.ui),.ui.accordion:not(.styled) .title~.content:not(.ui){margin:'';padding:.5em 0 1em}.ui.accordion:not(.styled) .title~.content:not(.ui):last-child{padding-bottom:0}.ui.accordion .accordion .title .dropdown.icon,.ui.accordion .title .dropdown.icon{display:inline-block;float:none;opacity:1;width:1.25em;height:1em;margin:0 .25rem 0 0;padding:0;font-size:1em;-webkit-transition:-webkit-transform .1s ease,opacity .1s ease;transition:transform .1s ease,opacity .1s ease;vertical-align:baseline;-webkit-transform:none;transform:none}.ui.accordion.menu .item .title{display:block;padding:0}.ui.accordion.menu .item .title>.dropdown.icon{float:right;margin:.21425em 0 0 1em;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.ui.accordion .ui.header .dropdown.icon{font-size:1em;margin:0 .25rem 0 0}.ui.accordion .accordion .active.title .dropdown.icon,.ui.accordion .active.title .dropdown.icon,.ui.accordion.menu .item .active.title>.dropdown.icon{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.ui.styled.accordion{width:600px}.ui.styled.accordion,.ui.styled.accordion .accordion{border-radius:.2307em;background:#FFF;box-shadow:0 1px 2px 0 rgba(0,0,0,.13),0 0 0 1px rgba(0,0,0,.13)}.ui.styled.accordion .accordion .title,.ui.styled.accordion .title{margin:0;padding:.75em 1em;color:rgba(0,0,0,.4);font-weight:700;border-top:1px solid rgba(0,0,0,.13);-webkit-transition:background .1s ease,color .1s ease;transition:background .1s ease,color .1s ease}.ui.styled.accordion .accordion .title:first-child,.ui.styled.accordion>.title:first-child{border-top:none}.ui.styled.accordion .accordion .content,.ui.styled.accordion .content{margin:0;padding:.5em 1em 1.5em}.ui.styled.accordion .accordion .content{padding:.5em 1em 1.5em}.ui.styled.accordion .accordion .active.title,.ui.styled.accordion .accordion .title:hover,.ui.styled.accordion .active.title,.ui.styled.accordion .title:hover{background:0 0;color:rgba(0,0,0,.87)}.ui.styled.accordion .accordion .active.title,.ui.styled.accordion .active.title{background:0 0;color:rgba(0,0,0,.95)}.ui.accordion .accordion .active.content,.ui.accordion .active.content{display:block}.ui.fluid.accordion,.ui.fluid.accordion .accordion{width:100%}.ui.inverted.accordion .title:not(.ui){color:rgba(255,255,255,.9)} | |||
| @ -0,0 +1,269 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Ad | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2013 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Advertisement | |||
| *******************************/ | |||
| .ui.ad { | |||
| display: block; | |||
| overflow: hidden; | |||
| margin: 1em 0em; | |||
| } | |||
| .ui.ad:first-child { | |||
| margin: 0em; | |||
| } | |||
| .ui.ad:last-child { | |||
| margin: 0em; | |||
| } | |||
| .ui.ad iframe { | |||
| margin: 0em; | |||
| padding: 0em; | |||
| border: none; | |||
| overflow: hidden; | |||
| } | |||
| /*-------------- | |||
| Common | |||
| ---------------*/ | |||
| /* Leaderboard */ | |||
| .ui.leaderboard.ad { | |||
| width: 728px; | |||
| height: 90px; | |||
| } | |||
| /* Medium Rectangle */ | |||
| .ui[class*="medium rectangle"].ad { | |||
| width: 300px; | |||
| height: 250px; | |||
| } | |||
| /* Large Rectangle */ | |||
| .ui[class*="large rectangle"].ad { | |||
| width: 336px; | |||
| height: 280px; | |||
| } | |||
| /* Half Page */ | |||
| .ui[class*="half page"].ad { | |||
| width: 300px; | |||
| height: 600px; | |||
| } | |||
| /*-------------- | |||
| Square | |||
| ---------------*/ | |||
| /* Square */ | |||
| .ui.square.ad { | |||
| width: 250px; | |||
| height: 250px; | |||
| } | |||
| /* Small Square */ | |||
| .ui[class*="small square"].ad { | |||
| width: 200px; | |||
| height: 200px; | |||
| } | |||
| /*-------------- | |||
| Rectangle | |||
| ---------------*/ | |||
| /* Small Rectangle */ | |||
| .ui[class*="small rectangle"].ad { | |||
| width: 180px; | |||
| height: 150px; | |||
| } | |||
| /* Vertical Rectangle */ | |||
| .ui[class*="vertical rectangle"].ad { | |||
| width: 240px; | |||
| height: 400px; | |||
| } | |||
| /*-------------- | |||
| Button | |||
| ---------------*/ | |||
| .ui.button.ad { | |||
| width: 120px; | |||
| height: 90px; | |||
| } | |||
| .ui[class*="square button"].ad { | |||
| width: 125px; | |||
| height: 125px; | |||
| } | |||
| .ui[class*="small button"].ad { | |||
| width: 120px; | |||
| height: 60px; | |||
| } | |||
| /*-------------- | |||
| Skyscrapers | |||
| ---------------*/ | |||
| /* Skyscraper */ | |||
| .ui.skyscraper.ad { | |||
| width: 120px; | |||
| height: 600px; | |||
| } | |||
| /* Wide Skyscraper */ | |||
| .ui[class*="wide skyscraper"].ad { | |||
| width: 160px; | |||
| } | |||
| /*-------------- | |||
| Banners | |||
| ---------------*/ | |||
| /* Banner */ | |||
| .ui.banner.ad { | |||
| width: 468px; | |||
| height: 60px; | |||
| } | |||
| /* Vertical Banner */ | |||
| .ui[class*="vertical banner"].ad { | |||
| width: 120px; | |||
| height: 240px; | |||
| } | |||
| /* Top Banner */ | |||
| .ui[class*="top banner"].ad { | |||
| width: 930px; | |||
| height: 180px; | |||
| } | |||
| /* Half Banner */ | |||
| .ui[class*="half banner"].ad { | |||
| width: 234px; | |||
| height: 60px; | |||
| } | |||
| /*-------------- | |||
| Boards | |||
| ---------------*/ | |||
| /* Leaderboard */ | |||
| .ui[class*="large leaderboard"].ad { | |||
| width: 970px; | |||
| height: 90px; | |||
| } | |||
| /* Billboard */ | |||
| .ui.billboard.ad { | |||
| width: 970px; | |||
| height: 250px; | |||
| } | |||
| /*-------------- | |||
| Panorama | |||
| ---------------*/ | |||
| /* Panorama */ | |||
| .ui.panorama.ad { | |||
| width: 980px; | |||
| height: 120px; | |||
| } | |||
| /*-------------- | |||
| Netboard | |||
| ---------------*/ | |||
| /* Netboard */ | |||
| .ui.netboard.ad { | |||
| width: 580px; | |||
| height: 400px; | |||
| } | |||
| /*-------------- | |||
| Mobile | |||
| ---------------*/ | |||
| /* Large Mobile Banner */ | |||
| .ui[class*="large mobile banner"].ad { | |||
| width: 320px; | |||
| height: 100px; | |||
| } | |||
| /* Mobile Leaderboard */ | |||
| .ui[class*="mobile leaderboard"].ad { | |||
| width: 320px; | |||
| height: 50px; | |||
| } | |||
| /******************************* | |||
| Types | |||
| *******************************/ | |||
| /* Mobile Sizes */ | |||
| .ui.mobile.ad { | |||
| display: none; | |||
| } | |||
| @media only screen and (max-width: 687px) { | |||
| .ui.mobile.ad { | |||
| display: block; | |||
| } | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| .ui.centered.ad { | |||
| margin-left: auto; | |||
| margin-right: auto; | |||
| } | |||
| .ui.test.ad { | |||
| position: relative; | |||
| background: #545454; | |||
| } | |||
| .ui.test.ad:after { | |||
| position: absolute; | |||
| top: 50%; | |||
| left: 50%; | |||
| width: 100%; | |||
| text-align: center; | |||
| -webkit-transform: translateX(-50%) translateY(-50%); | |||
| transform: translateX(-50%) translateY(-50%); | |||
| content: 'Ad'; | |||
| color: #FFFFFF; | |||
| font-size: 1em; | |||
| font-weight: bold; | |||
| } | |||
| .ui.mobile.test.ad:after { | |||
| font-size: 0.84615385em; | |||
| } | |||
| .ui.test.ad[data-text]:after { | |||
| content: attr(data-text); | |||
| } | |||
| /******************************* | |||
| User Variable Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Ad | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2013 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */.ui.ad{display:block;overflow:hidden;margin:1em 0}.ui.ad:first-child,.ui.ad:last-child{margin:0}.ui.ad iframe{margin:0;padding:0;border:none;overflow:hidden}.ui.leaderboard.ad{width:728px;height:90px}.ui[class*="medium rectangle"].ad{width:300px;height:250px}.ui[class*="large rectangle"].ad{width:336px;height:280px}.ui[class*="half page"].ad{width:300px;height:600px}.ui.square.ad{width:250px;height:250px}.ui[class*="small square"].ad{width:200px;height:200px}.ui[class*="small rectangle"].ad{width:180px;height:150px}.ui[class*="vertical rectangle"].ad{width:240px;height:400px}.ui.button.ad{width:120px;height:90px}.ui[class*="square button"].ad{width:125px;height:125px}.ui[class*="small button"].ad{width:120px;height:60px}.ui.skyscraper.ad{width:120px;height:600px}.ui[class*="wide skyscraper"].ad{width:160px}.ui.banner.ad{width:468px;height:60px}.ui[class*="vertical banner"].ad{width:120px;height:240px}.ui[class*="top banner"].ad{width:930px;height:180px}.ui[class*="half banner"].ad{width:234px;height:60px}.ui[class*="large leaderboard"].ad{width:970px;height:90px}.ui.billboard.ad{width:970px;height:250px}.ui.panorama.ad{width:980px;height:120px}.ui.netboard.ad{width:580px;height:400px}.ui[class*="large mobile banner"].ad{width:320px;height:100px}.ui[class*="mobile leaderboard"].ad{width:320px;height:50px}.ui.mobile.ad{display:none}@media only screen and (max-width:687px){.ui.mobile.ad{display:block}}.ui.centered.ad{margin-left:auto;margin-right:auto}.ui.test.ad{position:relative;background:#545454}.ui.test.ad:after{position:absolute;top:50%;left:50%;width:100%;text-align:center;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);content:'Ad';color:#FFF;font-size:1em;font-weight:700}.ui.mobile.test.ad:after{font-size:.84615385em}.ui.test.ad[data-text]:after{content:attr(data-text)} | |||
| @ -0,0 +1,119 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Breadcrumb | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Breadcrumb | |||
| *******************************/ | |||
| .ui.breadcrumb { | |||
| line-height: 1; | |||
| display: inline-block; | |||
| margin: 0em 0em; | |||
| vertical-align: middle; | |||
| } | |||
| .ui.breadcrumb:first-child { | |||
| margin-top: 0em; | |||
| } | |||
| .ui.breadcrumb:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| /******************************* | |||
| Content | |||
| *******************************/ | |||
| /* Divider */ | |||
| .ui.breadcrumb .divider { | |||
| display: inline-block; | |||
| opacity: 1; | |||
| margin: 0em 0 0em; | |||
| font-size: 1.30769231rem; | |||
| color: inherit; | |||
| vertical-align: baseline; | |||
| } | |||
| /* Link */ | |||
| .ui.breadcrumb a { | |||
| color: #4078C0; | |||
| } | |||
| .ui.breadcrumb a:hover { | |||
| color: #4078C0; | |||
| } | |||
| /* Icon Divider */ | |||
| .ui.breadcrumb .icon.divider { | |||
| font-size: 0.84615385em; | |||
| vertical-align: baseline; | |||
| } | |||
| /* Section */ | |||
| .ui.breadcrumb a.section { | |||
| cursor: pointer; | |||
| } | |||
| .ui.breadcrumb .section { | |||
| display: inline-block; | |||
| margin: 0em; | |||
| padding: 0em; | |||
| } | |||
| /* Loose Coupling */ | |||
| .ui.breadcrumb.segment { | |||
| display: inline-block; | |||
| padding: 0.69230769em 1em; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| .ui.breadcrumb .active.section { | |||
| font-weight: bold; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| .ui.mini.breadcrumb { | |||
| font-size: 0.69230769rem; | |||
| } | |||
| .ui.tiny.breadcrumb { | |||
| font-size: 0.84615385rem; | |||
| } | |||
| .ui.small.breadcrumb { | |||
| font-size: 0.92307692rem; | |||
| } | |||
| .ui.breadcrumb { | |||
| font-size: 1rem; | |||
| } | |||
| .ui.large.breadcrumb { | |||
| font-size: 1.15384615rem; | |||
| } | |||
| .ui.big.breadcrumb { | |||
| font-size: 1.30769231rem; | |||
| } | |||
| .ui.huge.breadcrumb { | |||
| font-size: 1.5384em; | |||
| } | |||
| .ui.massive.breadcrumb { | |||
| font-size: 1.69230769rem; | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Breadcrumb | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */.ui.breadcrumb{line-height:1;display:inline-block;margin:0;vertical-align:middle}.ui.breadcrumb:first-child{margin-top:0}.ui.breadcrumb:last-child{margin-bottom:0}.ui.breadcrumb .divider{display:inline-block;opacity:1;margin:0;font-size:1.30769231rem;color:inherit;vertical-align:baseline}.ui.breadcrumb a,.ui.breadcrumb a:hover{color:#4078C0}.ui.breadcrumb .icon.divider{font-size:.84615385em;vertical-align:baseline}.ui.breadcrumb a.section{cursor:pointer}.ui.breadcrumb .section{display:inline-block;margin:0;padding:0}.ui.breadcrumb.segment{display:inline-block;padding:.69230769em 1em}.ui.breadcrumb .active.section{font-weight:700}.ui.mini.breadcrumb{font-size:.69230769rem}.ui.tiny.breadcrumb{font-size:.84615385rem}.ui.small.breadcrumb{font-size:.92307692rem}.ui.breadcrumb{font-size:1rem}.ui.large.breadcrumb{font-size:1.15384615rem}.ui.big.breadcrumb{font-size:1.30769231rem}.ui.huge.breadcrumb{font-size:1.5384em}.ui.massive.breadcrumb{font-size:1.69230769rem} | |||
| @ -0,0 +1,947 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Item | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Standard | |||
| *******************************/ | |||
| /*-------------- | |||
| Card | |||
| ---------------*/ | |||
| .ui.cards > .card, | |||
| .ui.card { | |||
| max-width: 100%; | |||
| position: relative; | |||
| display: -webkit-box; | |||
| display: -webkit-flex; | |||
| display: -ms-flexbox; | |||
| display: flex; | |||
| -webkit-box-orient: vertical; | |||
| -webkit-box-direction: normal; | |||
| -webkit-flex-direction: column; | |||
| -ms-flex-direction: column; | |||
| flex-direction: column; | |||
| width: 290px; | |||
| min-height: 0px; | |||
| background: #FFFFFF; | |||
| padding: 0em; | |||
| border: none; | |||
| border-radius: 0.2307em; | |||
| box-shadow: 0px 1px 3px 0px #DDDDDD, 0px 0px 0px 1px #DDDDDD; | |||
| -webkit-transition: box-shadow 0.1s ease, -webkit-transform 0.1s ease; | |||
| transition: box-shadow 0.1s ease, transform 0.1s ease; | |||
| z-index: ''; | |||
| } | |||
| .ui.card { | |||
| margin: 1em 0em; | |||
| } | |||
| .ui.cards > .card a, | |||
| .ui.card a { | |||
| cursor: pointer; | |||
| } | |||
| .ui.card:first-child { | |||
| margin-top: 0em; | |||
| } | |||
| .ui.card:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| /*-------------- | |||
| Cards | |||
| ---------------*/ | |||
| .ui.cards { | |||
| display: -webkit-box; | |||
| display: -webkit-flex; | |||
| display: -ms-flexbox; | |||
| display: flex; | |||
| margin: -0.875em -0.5em; | |||
| -webkit-flex-wrap: wrap; | |||
| -ms-flex-wrap: wrap; | |||
| flex-wrap: wrap; | |||
| } | |||
| .ui.cards > .card { | |||
| display: -webkit-box; | |||
| display: -webkit-flex; | |||
| display: -ms-flexbox; | |||
| display: flex; | |||
| margin: 0.875em 0.5em; | |||
| float: none; | |||
| } | |||
| /* Clearing */ | |||
| .ui.cards:after, | |||
| .ui.card:after { | |||
| display: block; | |||
| content: ' '; | |||
| height: 0px; | |||
| clear: both; | |||
| overflow: hidden; | |||
| visibility: hidden; | |||
| } | |||
| /* Consecutive Card Groups Preserve Row Spacing */ | |||
| .ui.cards ~ .ui.cards { | |||
| margin-top: 0.875em; | |||
| } | |||
| /*-------------- | |||
| Rounded Edges | |||
| ---------------*/ | |||
| .ui.cards > .card > :first-child, | |||
| .ui.card > :first-child { | |||
| border-radius: 0.2307em 0.2307em 0em 0em !important; | |||
| border-top: none !important; | |||
| } | |||
| .ui.cards > .card > :last-child, | |||
| .ui.card > :last-child { | |||
| border-radius: 0em 0em 0.2307em 0.2307em !important; | |||
| } | |||
| .ui.cards > .card > :only-child, | |||
| .ui.card > :only-child { | |||
| border-radius: 0.2307em !important; | |||
| } | |||
| /*-------------- | |||
| Images | |||
| ---------------*/ | |||
| .ui.cards > .card > .image, | |||
| .ui.card > .image { | |||
| position: relative; | |||
| display: block; | |||
| -webkit-box-flex: 0; | |||
| -webkit-flex: 0 0 auto; | |||
| -ms-flex: 0 0 auto; | |||
| flex: 0 0 auto; | |||
| padding: 0em; | |||
| background: rgba(0, 0, 0, 0.05); | |||
| } | |||
| .ui.cards > .card > .image > img, | |||
| .ui.card > .image > img { | |||
| display: block; | |||
| width: 100%; | |||
| height: auto; | |||
| border-radius: inherit; | |||
| } | |||
| .ui.cards > .card > .image:not(.ui) > img, | |||
| .ui.card > .image:not(.ui) > img { | |||
| border: none; | |||
| } | |||
| /*-------------- | |||
| Content | |||
| ---------------*/ | |||
| .ui.cards > .card > .content, | |||
| .ui.card > .content { | |||
| -webkit-box-flex: 1; | |||
| -webkit-flex-grow: 1; | |||
| -ms-flex-positive: 1; | |||
| flex-grow: 1; | |||
| border: none; | |||
| border-top: 1px solid rgba(0, 0, 0, 0.06); | |||
| background: none; | |||
| margin: 0em; | |||
| padding: 1em 1em; | |||
| box-shadow: none; | |||
| font-size: 1em; | |||
| border-radius: 0em; | |||
| } | |||
| .ui.cards > .card > .content:after, | |||
| .ui.card > .content:after { | |||
| display: block; | |||
| content: ' '; | |||
| height: 0px; | |||
| clear: both; | |||
| overflow: hidden; | |||
| visibility: hidden; | |||
| } | |||
| .ui.cards > .card > .content > .header, | |||
| .ui.card > .content > .header { | |||
| display: block; | |||
| margin: ''; | |||
| font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif; | |||
| color: rgba(0, 0, 0, 0.85); | |||
| } | |||
| /* Default Header Size */ | |||
| .ui.cards > .card > .content > .header:not(.ui), | |||
| .ui.card > .content > .header:not(.ui) { | |||
| font-weight: bold; | |||
| font-size: 1.30769231em; | |||
| margin-top: -0.21425em; | |||
| line-height: 1.2857em; | |||
| } | |||
| .ui.cards > .card > .content > .meta + .description, | |||
| .ui.cards > .card > .content > .header + .description, | |||
| .ui.card > .content > .meta + .description, | |||
| .ui.card > .content > .header + .description { | |||
| margin-top: 0.5em; | |||
| } | |||
| /*---------------- | |||
| Floated Content | |||
| -----------------*/ | |||
| .ui.cards > .card [class*="left floated"], | |||
| .ui.card [class*="left floated"] { | |||
| float: left; | |||
| } | |||
| .ui.cards > .card [class*="right floated"], | |||
| .ui.card [class*="right floated"] { | |||
| float: right; | |||
| } | |||
| /*-------------- | |||
| Aligned | |||
| ---------------*/ | |||
| .ui.cards > .card [class*="left aligned"], | |||
| .ui.card [class*="left aligned"] { | |||
| text-align: left; | |||
| } | |||
| .ui.cards > .card [class*="center aligned"], | |||
| .ui.card [class*="center aligned"] { | |||
| text-align: center; | |||
| } | |||
| .ui.cards > .card [class*="right aligned"], | |||
| .ui.card [class*="right aligned"] { | |||
| text-align: right; | |||
| } | |||
| /*-------------- | |||
| Content Image | |||
| ---------------*/ | |||
| .ui.cards > .card .content img, | |||
| .ui.card .content img { | |||
| display: inline-block; | |||
| vertical-align: middle; | |||
| width: ''; | |||
| } | |||
| .ui.cards > .card img.avatar, | |||
| .ui.cards > .card .avatar img, | |||
| .ui.card img.avatar, | |||
| .ui.card .avatar img { | |||
| width: 2em; | |||
| height: 2em; | |||
| border-radius: 500rem; | |||
| } | |||
| /*-------------- | |||
| Description | |||
| ---------------*/ | |||
| .ui.cards > .card > .content > .description, | |||
| .ui.card > .content > .description { | |||
| clear: both; | |||
| color: rgba(0, 0, 0, 0.68); | |||
| } | |||
| /*-------------- | |||
| Paragraph | |||
| ---------------*/ | |||
| .ui.cards > .card > .content p, | |||
| .ui.card > .content p { | |||
| margin: 0em 0em 0.5em; | |||
| } | |||
| .ui.cards > .card > .content p:last-child, | |||
| .ui.card > .content p:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| /*-------------- | |||
| Meta | |||
| ---------------*/ | |||
| .ui.cards > .card .meta, | |||
| .ui.card .meta { | |||
| font-size: 1em; | |||
| color: rgba(0, 0, 0, 0.4); | |||
| } | |||
| .ui.cards > .card .meta *, | |||
| .ui.card .meta * { | |||
| margin-right: 0.3em; | |||
| } | |||
| .ui.cards > .card .meta :last-child, | |||
| .ui.card .meta :last-child { | |||
| margin-right: 0em; | |||
| } | |||
| .ui.cards > .card .meta [class*="right floated"], | |||
| .ui.card .meta [class*="right floated"] { | |||
| margin-right: 0em; | |||
| margin-left: 0.3em; | |||
| } | |||
| /*-------------- | |||
| Links | |||
| ---------------*/ | |||
| /* Generic */ | |||
| .ui.cards > .card > .content a:not(.ui), | |||
| .ui.card > .content a:not(.ui) { | |||
| color: ''; | |||
| -webkit-transition: color 0.1s ease; | |||
| transition: color 0.1s ease; | |||
| } | |||
| .ui.cards > .card > .content a:not(.ui):hover, | |||
| .ui.card > .content a:not(.ui):hover { | |||
| color: ''; | |||
| } | |||
| /* Header */ | |||
| .ui.cards > .card > .content > a.header, | |||
| .ui.card > .content > a.header { | |||
| color: rgba(0, 0, 0, 0.85); | |||
| } | |||
| .ui.cards > .card > .content > a.header:hover, | |||
| .ui.card > .content > a.header:hover { | |||
| color: #4078C0; | |||
| } | |||
| /* Meta */ | |||
| .ui.cards > .card .meta > a:not(.ui), | |||
| .ui.card .meta > a:not(.ui) { | |||
| color: rgba(0, 0, 0, 0.4); | |||
| } | |||
| .ui.cards > .card .meta > a:not(.ui):hover, | |||
| .ui.card .meta > a:not(.ui):hover { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /*-------------- | |||
| Buttons | |||
| ---------------*/ | |||
| .ui.cards > .card > .buttons, | |||
| .ui.card > .buttons, | |||
| .ui.cards > .card > .button, | |||
| .ui.card > .button { | |||
| margin: 0px -1px; | |||
| width: calc(100% + 2px ); | |||
| } | |||
| /*-------------- | |||
| Dimmer | |||
| ---------------*/ | |||
| .ui.cards > .card .dimmer, | |||
| .ui.card .dimmer { | |||
| background-color: ''; | |||
| z-index: 10; | |||
| } | |||
| /*-------------- | |||
| Labels | |||
| ---------------*/ | |||
| /*-----Star----- */ | |||
| /* Icon */ | |||
| .ui.cards > .card > .content .star.icon, | |||
| .ui.card > .content .star.icon { | |||
| cursor: pointer; | |||
| opacity: 0.75; | |||
| -webkit-transition: color 0.1s ease; | |||
| transition: color 0.1s ease; | |||
| } | |||
| .ui.cards > .card > .content .star.icon:hover, | |||
| .ui.card > .content .star.icon:hover { | |||
| opacity: 1; | |||
| color: #FFB70A; | |||
| } | |||
| .ui.cards > .card > .content .active.star.icon, | |||
| .ui.card > .content .active.star.icon { | |||
| color: #FFE623; | |||
| } | |||
| /*-----Like----- */ | |||
| /* Icon */ | |||
| .ui.cards > .card > .content .like.icon, | |||
| .ui.card > .content .like.icon { | |||
| cursor: pointer; | |||
| opacity: 0.75; | |||
| -webkit-transition: color 0.1s ease; | |||
| transition: color 0.1s ease; | |||
| } | |||
| .ui.cards > .card > .content .like.icon:hover, | |||
| .ui.card > .content .like.icon:hover { | |||
| opacity: 1; | |||
| color: #FF2733; | |||
| } | |||
| .ui.cards > .card > .content .active.like.icon, | |||
| .ui.card > .content .active.like.icon { | |||
| color: #FF2733; | |||
| } | |||
| /*---------------- | |||
| Extra Content | |||
| -----------------*/ | |||
| .ui.cards > .card > .extra, | |||
| .ui.card > .extra { | |||
| max-width: 100%; | |||
| min-height: 0em !important; | |||
| -webkit-box-flex: 0; | |||
| -webkit-flex-grow: 0; | |||
| -ms-flex-positive: 0; | |||
| flex-grow: 0; | |||
| border-top: 1px solid rgba(0, 0, 0, 0.05) !important; | |||
| position: static; | |||
| background: none; | |||
| width: auto; | |||
| margin: 0em 0em; | |||
| padding: 0.75em 1em; | |||
| top: 0em; | |||
| left: 0em; | |||
| color: rgba(0, 0, 0, 0.4); | |||
| box-shadow: none; | |||
| -webkit-transition: color 0.1s ease; | |||
| transition: color 0.1s ease; | |||
| } | |||
| .ui.cards > .card > .extra a:not(.ui), | |||
| .ui.card > .extra a:not(.ui) { | |||
| color: rgba(0, 0, 0, 0.4); | |||
| } | |||
| .ui.cards > .card > .extra a:not(.ui):hover, | |||
| .ui.card > .extra a:not(.ui):hover { | |||
| color: #4078C0; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*------------------- | |||
| Centered | |||
| --------------------*/ | |||
| .ui.centered.cards { | |||
| -webkit-box-pack: center; | |||
| -webkit-justify-content: center; | |||
| -ms-flex-pack: center; | |||
| justify-content: center; | |||
| } | |||
| .ui.centered.card { | |||
| margin-left: auto; | |||
| margin-right: auto; | |||
| } | |||
| /*------------------- | |||
| Fluid | |||
| --------------------*/ | |||
| .ui.fluid.card { | |||
| width: 100%; | |||
| max-width: 9999px; | |||
| } | |||
| /*------------------- | |||
| Link | |||
| --------------------*/ | |||
| .ui.cards a.card, | |||
| .ui.link.cards .card, | |||
| a.ui.card, | |||
| .ui.link.card { | |||
| -webkit-transform: none; | |||
| transform: none; | |||
| } | |||
| .ui.cards a.card:hover, | |||
| .ui.link.cards .card:hover, | |||
| a.ui.card:hover, | |||
| .ui.link.card:hover { | |||
| cursor: pointer; | |||
| z-index: 5; | |||
| background: #FFFFFF; | |||
| border: none; | |||
| box-shadow: 0px 1px 3px 0px #BCBDBD, 0px 0px 0px 1px #DDDDDD; | |||
| -webkit-transform: translateY(-3px); | |||
| transform: translateY(-3px); | |||
| } | |||
| /*------------------- | |||
| Colors | |||
| --------------------*/ | |||
| /* Red */ | |||
| .ui.red.cards > .card, | |||
| .ui.cards > .red.card, | |||
| .ui.red.card { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #DB2828, 0px 1px 3px 0px #DDDDDD; | |||
| } | |||
| .ui.red.cards > .card:hover, | |||
| .ui.cards > .red.card:hover, | |||
| .ui.red.card:hover { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #d01919, 0px 1px 3px 0px #BCBDBD; | |||
| } | |||
| /* Orange */ | |||
| .ui.orange.cards > .card, | |||
| .ui.cards > .orange.card, | |||
| .ui.orange.card { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #D26911, 0px 1px 3px 0px #DDDDDD; | |||
| } | |||
| .ui.orange.cards > .card:hover, | |||
| .ui.cards > .orange.card:hover, | |||
| .ui.orange.card:hover { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #c35c07, 0px 1px 3px 0px #BCBDBD; | |||
| } | |||
| /* Yellow */ | |||
| .ui.yellow.cards > .card, | |||
| .ui.cards > .yellow.card, | |||
| .ui.yellow.card { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #FBBD08, 0px 1px 3px 0px #DDDDDD; | |||
| } | |||
| .ui.yellow.cards > .card:hover, | |||
| .ui.cards > .yellow.card:hover, | |||
| .ui.yellow.card:hover { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #eaae00, 0px 1px 3px 0px #BCBDBD; | |||
| } | |||
| /* Olive */ | |||
| .ui.olive.cards > .card, | |||
| .ui.cards > .olive.card, | |||
| .ui.olive.card { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #B5CC18, 0px 1px 3px 0px #DDDDDD; | |||
| } | |||
| .ui.olive.cards > .card:hover, | |||
| .ui.cards > .olive.card:hover, | |||
| .ui.olive.card:hover { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #a7bd0d, 0px 1px 3px 0px #BCBDBD; | |||
| } | |||
| /* Green */ | |||
| .ui.green.cards > .card, | |||
| .ui.cards > .green.card, | |||
| .ui.green.card { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #78CB5B, 0px 1px 3px 0px #DDDDDD; | |||
| } | |||
| .ui.green.cards > .card:hover, | |||
| .ui.cards > .green.card:hover, | |||
| .ui.green.card:hover { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #65cb41, 0px 1px 3px 0px #BCBDBD; | |||
| } | |||
| /* Teal */ | |||
| .ui.teal.cards > .card, | |||
| .ui.cards > .teal.card, | |||
| .ui.teal.card { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #00B5AD, 0px 1px 3px 0px #DDDDDD; | |||
| } | |||
| .ui.teal.cards > .card:hover, | |||
| .ui.cards > .teal.card:hover, | |||
| .ui.teal.card:hover { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #009c95, 0px 1px 3px 0px #BCBDBD; | |||
| } | |||
| /* Blue */ | |||
| .ui.blue.cards > .card, | |||
| .ui.cards > .blue.card, | |||
| .ui.blue.card { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #80A6CD, 0px 1px 3px 0px #DDDDDD; | |||
| } | |||
| .ui.blue.cards > .card:hover, | |||
| .ui.cards > .blue.card:hover, | |||
| .ui.blue.card:hover { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #6999ca, 0px 1px 3px 0px #BCBDBD; | |||
| } | |||
| /* Violet */ | |||
| .ui.violet.cards > .card, | |||
| .ui.cards > .violet.card, | |||
| .ui.violet.card { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #6435C9, 0px 1px 3px 0px #DDDDDD; | |||
| } | |||
| .ui.violet.cards > .card:hover, | |||
| .ui.cards > .violet.card:hover, | |||
| .ui.violet.card:hover { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #5829bb, 0px 1px 3px 0px #BCBDBD; | |||
| } | |||
| /* Purple */ | |||
| .ui.purple.cards > .card, | |||
| .ui.cards > .purple.card, | |||
| .ui.purple.card { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #A333C8, 0px 1px 3px 0px #DDDDDD; | |||
| } | |||
| .ui.purple.cards > .card:hover, | |||
| .ui.cards > .purple.card:hover, | |||
| .ui.purple.card:hover { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #9627ba, 0px 1px 3px 0px #BCBDBD; | |||
| } | |||
| /* Pink */ | |||
| .ui.pink.cards > .card, | |||
| .ui.cards > .pink.card, | |||
| .ui.pink.card { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #E03997, 0px 1px 3px 0px #DDDDDD; | |||
| } | |||
| .ui.pink.cards > .card:hover, | |||
| .ui.cards > .pink.card:hover, | |||
| .ui.pink.card:hover { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #e61a8d, 0px 1px 3px 0px #BCBDBD; | |||
| } | |||
| /* Brown */ | |||
| .ui.brown.cards > .card, | |||
| .ui.cards > .brown.card, | |||
| .ui.brown.card { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #A5673F, 0px 1px 3px 0px #DDDDDD; | |||
| } | |||
| .ui.brown.cards > .card:hover, | |||
| .ui.cards > .brown.card:hover, | |||
| .ui.brown.card:hover { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #975b33, 0px 1px 3px 0px #BCBDBD; | |||
| } | |||
| /* Grey */ | |||
| .ui.grey.cards > .card, | |||
| .ui.cards > .grey.card, | |||
| .ui.grey.card { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #767676, 0px 1px 3px 0px #DDDDDD; | |||
| } | |||
| .ui.grey.cards > .card:hover, | |||
| .ui.cards > .grey.card:hover, | |||
| .ui.grey.card:hover { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #838383, 0px 1px 3px 0px #BCBDBD; | |||
| } | |||
| /* Black */ | |||
| .ui.black.cards > .card, | |||
| .ui.cards > .black.card, | |||
| .ui.black.card { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #333333, 0px 1px 3px 0px #DDDDDD; | |||
| } | |||
| .ui.black.cards > .card:hover, | |||
| .ui.cards > .black.card:hover, | |||
| .ui.black.card:hover { | |||
| box-shadow: 0px 0px 0px 1px #DDDDDD, 0px 2px 0px 0px #404040, 0px 1px 3px 0px #BCBDBD; | |||
| } | |||
| /*-------------- | |||
| Card Count | |||
| ---------------*/ | |||
| .ui.one.cards { | |||
| margin-left: 0em; | |||
| margin-right: 0em; | |||
| } | |||
| .ui.one.cards > .card { | |||
| width: 100%; | |||
| } | |||
| .ui.two.cards { | |||
| margin-left: -1em; | |||
| margin-right: -1em; | |||
| } | |||
| .ui.two.cards > .card { | |||
| width: calc( 50% - 2em ); | |||
| margin-left: 1em; | |||
| margin-right: 1em; | |||
| } | |||
| .ui.three.cards { | |||
| margin-left: -1em; | |||
| margin-right: -1em; | |||
| } | |||
| .ui.three.cards > .card { | |||
| width: calc( 33.33333333% - 2em ); | |||
| margin-left: 1em; | |||
| margin-right: 1em; | |||
| } | |||
| .ui.four.cards { | |||
| margin-left: -0.75em; | |||
| margin-right: -0.75em; | |||
| } | |||
| .ui.four.cards > .card { | |||
| width: calc( 25% - 1.5em ); | |||
| margin-left: 0.75em; | |||
| margin-right: 0.75em; | |||
| } | |||
| .ui.five.cards { | |||
| margin-left: -0.75em; | |||
| margin-right: -0.75em; | |||
| } | |||
| .ui.five.cards > .card { | |||
| width: calc( 20% - 1.5em ); | |||
| margin-left: 0.75em; | |||
| margin-right: 0.75em; | |||
| } | |||
| .ui.six.cards { | |||
| margin-left: -0.75em; | |||
| margin-right: -0.75em; | |||
| } | |||
| .ui.six.cards > .card { | |||
| width: calc( 16.66666667% - 1.5em ); | |||
| margin-left: 0.75em; | |||
| margin-right: 0.75em; | |||
| } | |||
| .ui.seven.cards { | |||
| margin-left: -0.5em; | |||
| margin-right: -0.5em; | |||
| } | |||
| .ui.seven.cards > .card { | |||
| width: calc( 14.28571429% - 1em ); | |||
| margin-left: 0.5em; | |||
| margin-right: 0.5em; | |||
| } | |||
| .ui.eight.cards { | |||
| margin-left: -0.5em; | |||
| margin-right: -0.5em; | |||
| } | |||
| .ui.eight.cards > .card { | |||
| width: calc( 12.5% - 1em ); | |||
| margin-left: 0.5em; | |||
| margin-right: 0.5em; | |||
| font-size: 11px; | |||
| } | |||
| .ui.nine.cards { | |||
| margin-left: -0.5em; | |||
| margin-right: -0.5em; | |||
| } | |||
| .ui.nine.cards > .card { | |||
| width: calc( 11.11111111% - 1em ); | |||
| margin-left: 0.5em; | |||
| margin-right: 0.5em; | |||
| font-size: 10px; | |||
| } | |||
| .ui.ten.cards { | |||
| margin-left: -0.5em; | |||
| margin-right: -0.5em; | |||
| } | |||
| .ui.ten.cards > .card { | |||
| width: calc( 10% - 1em ); | |||
| margin-left: 0.5em; | |||
| margin-right: 0.5em; | |||
| } | |||
| /*------------------- | |||
| Doubling | |||
| --------------------*/ | |||
| /* Mobily Only */ | |||
| @media only screen and (max-width: 687px) { | |||
| .ui.two.doubling.cards { | |||
| margin-left: 0em; | |||
| margin-right: 0em; | |||
| } | |||
| .ui.two.doubling.cards .card { | |||
| width: 100%; | |||
| margin-left: 0em; | |||
| margin-right: 0em; | |||
| } | |||
| .ui.three.doubling.cards { | |||
| margin-left: -1em; | |||
| margin-right: -1em; | |||
| } | |||
| .ui.three.doubling.cards .card { | |||
| width: calc( 50% - 2em ); | |||
| margin-left: 1em; | |||
| margin-right: 1em; | |||
| } | |||
| .ui.four.doubling.cards { | |||
| margin-left: -1em; | |||
| margin-right: -1em; | |||
| } | |||
| .ui.four.doubling.cards .card { | |||
| width: calc( 50% - 2em ); | |||
| margin-left: 1em; | |||
| margin-right: 1em; | |||
| } | |||
| .ui.five.doubling.cards { | |||
| margin-left: -1em; | |||
| margin-right: -1em; | |||
| } | |||
| .ui.five.doubling.cards .card { | |||
| width: calc( 50% - 2em ); | |||
| margin-left: 1em; | |||
| margin-right: 1em; | |||
| } | |||
| .ui.six.doubling.cards { | |||
| margin-left: -1em; | |||
| margin-right: -1em; | |||
| } | |||
| .ui.six.doubling.cards .card { | |||
| width: calc( 50% - 2em ); | |||
| margin-left: 1em; | |||
| margin-right: 1em; | |||
| } | |||
| .ui.seven.doubling.cards { | |||
| margin-left: -1em; | |||
| margin-right: -1em; | |||
| } | |||
| .ui.seven.doubling.cards .card { | |||
| width: calc( 33.33333333% - 2em ); | |||
| margin-left: 1em; | |||
| margin-right: 1em; | |||
| } | |||
| .ui.eight.doubling.cards { | |||
| margin-left: -1em; | |||
| margin-right: -1em; | |||
| } | |||
| .ui.eight.doubling.cards .card { | |||
| width: calc( 33.33333333% - 2em ); | |||
| margin-left: 1em; | |||
| margin-right: 1em; | |||
| } | |||
| .ui.nine.doubling.cards { | |||
| margin-left: -1em; | |||
| margin-right: -1em; | |||
| } | |||
| .ui.nine.doubling.cards .card { | |||
| width: calc( 33.33333333% - 2em ); | |||
| margin-left: 1em; | |||
| margin-right: 1em; | |||
| } | |||
| .ui.ten.doubling.cards { | |||
| margin-left: -1em; | |||
| margin-right: -1em; | |||
| } | |||
| .ui.ten.doubling.cards .card { | |||
| width: calc( 33.33333333% - 2em ); | |||
| margin-left: 1em; | |||
| margin-right: 1em; | |||
| } | |||
| } | |||
| /* Tablet Only */ | |||
| @media only screen and (min-width: 688px) and (max-width: 687px) { | |||
| .ui.two.doubling.cards { | |||
| margin-left: 0em; | |||
| margin-right: 0em; | |||
| } | |||
| .ui.two.doubling.cards .card { | |||
| width: 100%; | |||
| margin-left: 0em; | |||
| margin-right: 0em; | |||
| } | |||
| .ui.three.doubling.cards { | |||
| margin-left: -1em; | |||
| margin-right: -1em; | |||
| } | |||
| .ui.three.doubling.cards .card { | |||
| width: calc( 50% - 2em ); | |||
| margin-left: 1em; | |||
| margin-right: 1em; | |||
| } | |||
| .ui.four.doubling.cards { | |||
| margin-left: -1em; | |||
| margin-right: -1em; | |||
| } | |||
| .ui.four.doubling.cards .card { | |||
| width: calc( 50% - 2em ); | |||
| margin-left: 1em; | |||
| margin-right: 1em; | |||
| } | |||
| .ui.five.doubling.cards { | |||
| margin-left: -1em; | |||
| margin-right: -1em; | |||
| } | |||
| .ui.five.doubling.cards .card { | |||
| width: calc( 33.33333333% - 2em ); | |||
| margin-left: 1em; | |||
| margin-right: 1em; | |||
| } | |||
| .ui.six.doubling.cards { | |||
| margin-left: -1em; | |||
| margin-right: -1em; | |||
| } | |||
| .ui.six.doubling.cards .card { | |||
| width: calc( 33.33333333% - 2em ); | |||
| margin-left: 1em; | |||
| margin-right: 1em; | |||
| } | |||
| .ui.eight.doubling.cards { | |||
| margin-left: -1em; | |||
| margin-right: -1em; | |||
| } | |||
| .ui.eight.doubling.cards .card { | |||
| width: calc( 33.33333333% - 2em ); | |||
| margin-left: 1em; | |||
| margin-right: 1em; | |||
| } | |||
| .ui.eight.doubling.cards { | |||
| margin-left: -0.75em; | |||
| margin-right: -0.75em; | |||
| } | |||
| .ui.eight.doubling.cards .card { | |||
| width: calc( 25% - 1.5em ); | |||
| margin-left: 0.75em; | |||
| margin-right: 0.75em; | |||
| } | |||
| .ui.nine.doubling.cards { | |||
| margin-left: -0.75em; | |||
| margin-right: -0.75em; | |||
| } | |||
| .ui.nine.doubling.cards .card { | |||
| width: calc( 25% - 1.5em ); | |||
| margin-left: 0.75em; | |||
| margin-right: 0.75em; | |||
| } | |||
| .ui.ten.doubling.cards { | |||
| margin-left: -0.75em; | |||
| margin-right: -0.75em; | |||
| } | |||
| .ui.ten.doubling.cards .card { | |||
| width: calc( 20% - 1.5em ); | |||
| margin-left: 0.75em; | |||
| margin-right: 0.75em; | |||
| } | |||
| } | |||
| /*------------------- | |||
| Stackable | |||
| --------------------*/ | |||
| @media only screen and (max-width: 687px) { | |||
| .ui.stackable.cards { | |||
| display: block !important; | |||
| } | |||
| .ui.stackable.cards .card:first-child { | |||
| margin-top: 0em !important; | |||
| } | |||
| .ui.stackable.cards > .card { | |||
| display: block !important; | |||
| height: auto !important; | |||
| margin: 1em 1em; | |||
| padding: 0 !important; | |||
| width: calc( 100% - 2em ) !important; | |||
| } | |||
| } | |||
| /*-------------- | |||
| Size | |||
| ---------------*/ | |||
| .ui.cards > .card { | |||
| font-size: 1em; | |||
| } | |||
| /******************************* | |||
| User Variable Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,585 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Checkbox | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Checkbox | |||
| *******************************/ | |||
| /*-------------- | |||
| Content | |||
| ---------------*/ | |||
| .ui.checkbox { | |||
| position: relative; | |||
| display: inline-block; | |||
| -webkit-backface-visibility: hidden; | |||
| backface-visibility: hidden; | |||
| outline: none; | |||
| vertical-align: baseline; | |||
| font-style: normal; | |||
| min-height: 17px; | |||
| font-size: 1rem; | |||
| line-height: 17px; | |||
| min-width: 17px; | |||
| } | |||
| /* HTML Checkbox */ | |||
| .ui.checkbox input[type="checkbox"], | |||
| .ui.checkbox input[type="radio"] { | |||
| cursor: pointer; | |||
| position: absolute; | |||
| top: 0px; | |||
| left: 0px; | |||
| opacity: 0 !important; | |||
| outline: none; | |||
| z-index: 3; | |||
| width: 17px; | |||
| height: 17px; | |||
| } | |||
| /*-------------- | |||
| Box | |||
| ---------------*/ | |||
| .ui.checkbox .box, | |||
| .ui.checkbox label { | |||
| cursor: auto; | |||
| position: relative; | |||
| display: block; | |||
| padding-left: 1.85714em; | |||
| outline: none; | |||
| font-size: 1em; | |||
| } | |||
| .ui.checkbox .box:before, | |||
| .ui.checkbox label:before { | |||
| position: absolute; | |||
| top: 0px; | |||
| left: 0px; | |||
| width: 17px; | |||
| height: 17px; | |||
| content: ''; | |||
| background: #FFFFFF; | |||
| border-radius: 0.23076923rem; | |||
| -webkit-transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, box-shadow 0.1s ease; | |||
| transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease; | |||
| border: 1px solid #DDDDDD; | |||
| } | |||
| /*-------------- | |||
| Checkmark | |||
| ---------------*/ | |||
| .ui.checkbox .box:after, | |||
| .ui.checkbox label:after { | |||
| position: absolute; | |||
| font-size: 14px; | |||
| top: 0px; | |||
| left: 0px; | |||
| width: 17px; | |||
| height: 17px; | |||
| text-align: center; | |||
| opacity: 0; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| -webkit-transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, box-shadow 0.1s ease; | |||
| transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease; | |||
| } | |||
| /*-------------- | |||
| Label | |||
| ---------------*/ | |||
| /* Inside */ | |||
| .ui.checkbox label, | |||
| .ui.checkbox + label { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| -webkit-transition: color 0.1s ease; | |||
| transition: color 0.1s ease; | |||
| } | |||
| /* Outside */ | |||
| .ui.checkbox + label { | |||
| vertical-align: middle; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| /*-------------- | |||
| Hover | |||
| ---------------*/ | |||
| .ui.checkbox .box:hover::before, | |||
| .ui.checkbox label:hover::before { | |||
| background: #FFFFFF; | |||
| border-color: #51A7E8; | |||
| } | |||
| .ui.checkbox label:hover, | |||
| .ui.checkbox + label:hover { | |||
| color: rgba(0, 0, 0, 0.8); | |||
| } | |||
| /*-------------- | |||
| Down | |||
| ---------------*/ | |||
| .ui.checkbox .box:active::before, | |||
| .ui.checkbox label:active::before { | |||
| background: #F9FAFB; | |||
| border-color: #51A7E8; | |||
| } | |||
| .ui.checkbox .box:active::after, | |||
| .ui.checkbox label:active::after { | |||
| color: rgba(0, 0, 0, 0.95); | |||
| } | |||
| .ui.checkbox input:active ~ label { | |||
| color: rgba(0, 0, 0, 0.95); | |||
| } | |||
| /*-------------- | |||
| Focus | |||
| ---------------*/ | |||
| .ui.checkbox input:focus ~ .box:before, | |||
| .ui.checkbox input:focus ~ label:before { | |||
| background: #FFFFFF; | |||
| border-color: #96C8DA; | |||
| } | |||
| .ui.checkbox input:focus ~ .box:after, | |||
| .ui.checkbox input:focus ~ label:after { | |||
| color: rgba(0, 0, 0, 0.95); | |||
| } | |||
| .ui.checkbox input:focus ~ label { | |||
| color: rgba(0, 0, 0, 0.95); | |||
| } | |||
| /*-------------- | |||
| Active | |||
| ---------------*/ | |||
| .ui.checkbox input:checked ~ .box:before, | |||
| .ui.checkbox input:checked ~ label:before { | |||
| background: #FFFFFF; | |||
| border-color: #51A7E8; | |||
| } | |||
| .ui.checkbox input:checked ~ .box:after, | |||
| .ui.checkbox input:checked ~ label:after { | |||
| opacity: 1; | |||
| color: rgba(0, 0, 0, 0.95); | |||
| } | |||
| /*-------------- | |||
| Indeterminate | |||
| ---------------*/ | |||
| .ui.checkbox input:indeterminate ~ .box:before, | |||
| .ui.checkbox input:indeterminate ~ label:before { | |||
| background: #FFFFFF; | |||
| border-color: #51A7E8; | |||
| } | |||
| .ui.checkbox input:indeterminate ~ .box:after, | |||
| .ui.checkbox input:indeterminate ~ label:after { | |||
| opacity: 1; | |||
| color: rgba(0, 0, 0, 0.95); | |||
| } | |||
| /*-------------- | |||
| Active Focus | |||
| ---------------*/ | |||
| .ui.checkbox input:indeterminate:focus ~ .box:before, | |||
| .ui.checkbox input:indeterminate:focus ~ label:before, | |||
| .ui.checkbox input:checked:focus ~ .box:before, | |||
| .ui.checkbox input:checked:focus ~ label:before { | |||
| background: #FFFFFF; | |||
| border-color: #96C8DA; | |||
| } | |||
| .ui.checkbox input:indeterminate:focus ~ .box:after, | |||
| .ui.checkbox input:indeterminate:focus ~ label:after, | |||
| .ui.checkbox input:checked:focus ~ .box:after, | |||
| .ui.checkbox input:checked:focus ~ label:after { | |||
| color: rgba(0, 0, 0, 0.95); | |||
| } | |||
| /*-------------- | |||
| Read-Only | |||
| ---------------*/ | |||
| .ui.read-only.checkbox, | |||
| .ui.read-only.checkbox label { | |||
| cursor: default; | |||
| } | |||
| /*-------------- | |||
| Disabled | |||
| ---------------*/ | |||
| .ui.disabled.checkbox .box:after, | |||
| .ui.disabled.checkbox label, | |||
| .ui.checkbox input[disabled] ~ .box:after, | |||
| .ui.checkbox input[disabled] ~ label { | |||
| cursor: default; | |||
| opacity: 0.5; | |||
| color: #000000; | |||
| } | |||
| /*-------------- | |||
| Hidden | |||
| ---------------*/ | |||
| /* Initialized checkbox moves input below element | |||
| to prevent manually triggering */ | |||
| .ui.checkbox input.hidden { | |||
| z-index: -1; | |||
| } | |||
| /* Selectable Label */ | |||
| .ui.checkbox input.hidden + label { | |||
| cursor: pointer; | |||
| -webkit-user-select: none; | |||
| -moz-user-select: none; | |||
| -ms-user-select: none; | |||
| user-select: none; | |||
| } | |||
| /******************************* | |||
| Types | |||
| *******************************/ | |||
| /*-------------- | |||
| Radio | |||
| ---------------*/ | |||
| .ui.radio.checkbox { | |||
| min-height: 15px; | |||
| } | |||
| .ui.radio.checkbox .box, | |||
| .ui.radio.checkbox label { | |||
| padding-left: 1.85714em; | |||
| } | |||
| /* Box */ | |||
| .ui.radio.checkbox .box:before, | |||
| .ui.radio.checkbox label:before { | |||
| content: ''; | |||
| -webkit-transform: none; | |||
| transform: none; | |||
| width: 15px; | |||
| height: 15px; | |||
| border-radius: 500rem; | |||
| top: 1px; | |||
| left: 0px; | |||
| } | |||
| /* Bullet */ | |||
| .ui.radio.checkbox .box:after, | |||
| .ui.radio.checkbox label:after { | |||
| border: none; | |||
| content: '' !important; | |||
| width: 15px; | |||
| height: 15px; | |||
| line-height: 15px; | |||
| } | |||
| /* Radio Checkbox */ | |||
| .ui.radio.checkbox .box:after, | |||
| .ui.radio.checkbox label:after { | |||
| top: 1px; | |||
| left: 0px; | |||
| width: 15px; | |||
| height: 15px; | |||
| border-radius: 500rem; | |||
| -webkit-transform: scale(0.46666667); | |||
| transform: scale(0.46666667); | |||
| background-color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /* Focus */ | |||
| .ui.radio.checkbox input:focus ~ .box:before, | |||
| .ui.radio.checkbox input:focus ~ label:before { | |||
| background-color: #FFFFFF; | |||
| } | |||
| .ui.radio.checkbox input:focus ~ .box:after, | |||
| .ui.radio.checkbox input:focus ~ label:after { | |||
| background-color: rgba(0, 0, 0, 0.95); | |||
| } | |||
| /* Indeterminate */ | |||
| .ui.radio.checkbox input:indeterminate ~ .box:after, | |||
| .ui.radio.checkbox input:indeterminate ~ label:after { | |||
| opacity: 0; | |||
| } | |||
| /* Active */ | |||
| .ui.radio.checkbox input:checked ~ .box:before, | |||
| .ui.radio.checkbox input:checked ~ label:before { | |||
| background-color: #FFFFFF; | |||
| } | |||
| .ui.radio.checkbox input:checked ~ .box:after, | |||
| .ui.radio.checkbox input:checked ~ label:after { | |||
| background-color: rgba(0, 0, 0, 0.95); | |||
| } | |||
| /* Active Focus */ | |||
| .ui.radio.checkbox input:focus:checked ~ .box:before, | |||
| .ui.radio.checkbox input:focus:checked ~ label:before { | |||
| background-color: #FFFFFF; | |||
| } | |||
| .ui.radio.checkbox input:focus:checked ~ .box:after, | |||
| .ui.radio.checkbox input:focus:checked ~ label:after { | |||
| background-color: rgba(0, 0, 0, 0.95); | |||
| } | |||
| /*-------------- | |||
| Slider | |||
| ---------------*/ | |||
| .ui.slider.checkbox { | |||
| min-height: 1.25rem; | |||
| } | |||
| /* Input */ | |||
| .ui.slider.checkbox input { | |||
| width: 3.5rem; | |||
| height: 1.25rem; | |||
| } | |||
| /* Label */ | |||
| .ui.slider.checkbox .box, | |||
| .ui.slider.checkbox label { | |||
| padding-left: 4.5rem; | |||
| line-height: 1rem; | |||
| color: rgba(0, 0, 0, 0.4); | |||
| } | |||
| /* Line */ | |||
| .ui.slider.checkbox .box:before, | |||
| .ui.slider.checkbox label:before { | |||
| display: block; | |||
| position: absolute; | |||
| content: ''; | |||
| border: none !important; | |||
| left: 0em; | |||
| z-index: 1; | |||
| top: 0.4rem; | |||
| background-color: rgba(0, 0, 0, 0.05); | |||
| width: 3.5rem; | |||
| height: 0.23076923rem; | |||
| -webkit-transform: none; | |||
| transform: none; | |||
| border-radius: 500rem; | |||
| -webkit-transition: background 0.3s ease; | |||
| transition: background 0.3s ease; | |||
| } | |||
| /* Handle */ | |||
| .ui.slider.checkbox .box:after, | |||
| .ui.slider.checkbox label:after { | |||
| background: #FFFFFF -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); | |||
| background: #FFFFFF linear-gradient(transparent, rgba(0, 0, 0, 0.05)); | |||
| position: absolute; | |||
| content: '' !important; | |||
| opacity: 1; | |||
| z-index: 2; | |||
| border: none; | |||
| box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.13), 0px 0px 0px 1px rgba(0, 0, 0, 0.13) inset; | |||
| width: 1.5rem; | |||
| height: 1.5rem; | |||
| top: -0.25rem; | |||
| left: 0em; | |||
| -webkit-transform: none; | |||
| transform: none; | |||
| border-radius: 500rem; | |||
| -webkit-transition: left 0.3s ease; | |||
| transition: left 0.3s ease; | |||
| } | |||
| /* Focus */ | |||
| .ui.slider.checkbox input:focus ~ .box:before, | |||
| .ui.slider.checkbox input:focus ~ label:before { | |||
| background-color: rgba(0, 0, 0, 0.15); | |||
| border: none; | |||
| } | |||
| /* Hover */ | |||
| .ui.slider.checkbox .box:hover, | |||
| .ui.slider.checkbox label:hover { | |||
| color: rgba(0, 0, 0, 0.8); | |||
| } | |||
| .ui.slider.checkbox .box:hover::before, | |||
| .ui.slider.checkbox label:hover::before { | |||
| background: rgba(0, 0, 0, 0.15); | |||
| } | |||
| /* Active */ | |||
| .ui.slider.checkbox input:checked ~ .box, | |||
| .ui.slider.checkbox input:checked ~ label { | |||
| color: rgba(0, 0, 0, 0.95) !important; | |||
| } | |||
| .ui.slider.checkbox input:checked ~ .box:before, | |||
| .ui.slider.checkbox input:checked ~ label:before { | |||
| background-color: #545454 !important; | |||
| } | |||
| .ui.slider.checkbox input:checked ~ .box:after, | |||
| .ui.slider.checkbox input:checked ~ label:after { | |||
| left: 2rem; | |||
| } | |||
| /* Active Focus */ | |||
| .ui.slider.checkbox input:focus:checked ~ .box, | |||
| .ui.slider.checkbox input:focus:checked ~ label { | |||
| color: rgba(0, 0, 0, 0.95) !important; | |||
| } | |||
| .ui.slider.checkbox input:focus:checked ~ .box:before, | |||
| .ui.slider.checkbox input:focus:checked ~ label:before { | |||
| background-color: #000000 !important; | |||
| } | |||
| /*-------------- | |||
| Toggle | |||
| ---------------*/ | |||
| .ui.toggle.checkbox { | |||
| min-height: 1.5rem; | |||
| } | |||
| /* Input */ | |||
| .ui.toggle.checkbox input { | |||
| width: 3.5rem; | |||
| height: 1.5rem; | |||
| } | |||
| /* Label */ | |||
| .ui.toggle.checkbox .box, | |||
| .ui.toggle.checkbox label { | |||
| min-height: 1.5rem; | |||
| padding-left: 4.5rem; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.toggle.checkbox label { | |||
| padding-top: 0.15em; | |||
| } | |||
| /* Switch */ | |||
| .ui.toggle.checkbox .box:before, | |||
| .ui.toggle.checkbox label:before { | |||
| display: block; | |||
| position: absolute; | |||
| content: ''; | |||
| z-index: 1; | |||
| -webkit-transform: none; | |||
| transform: none; | |||
| border: none; | |||
| top: 0rem; | |||
| background: rgba(0, 0, 0, 0.05); | |||
| width: 3.5rem; | |||
| height: 1.5rem; | |||
| border-radius: 500rem; | |||
| } | |||
| /* Handle */ | |||
| .ui.toggle.checkbox .box:after, | |||
| .ui.toggle.checkbox label:after { | |||
| background: #FFFFFF -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); | |||
| background: #FFFFFF linear-gradient(transparent, rgba(0, 0, 0, 0.05)); | |||
| position: absolute; | |||
| content: '' !important; | |||
| opacity: 1; | |||
| z-index: 2; | |||
| border: none; | |||
| box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.13), 0px 0px 0px 1px rgba(0, 0, 0, 0.13) inset; | |||
| width: 1.5rem; | |||
| height: 1.5rem; | |||
| top: 0rem; | |||
| left: 0em; | |||
| border-radius: 500rem; | |||
| -webkit-transition: background 0.3s ease, left 0.3s ease; | |||
| transition: background 0.3s ease, left 0.3s ease; | |||
| } | |||
| .ui.toggle.checkbox input ~ .box:after, | |||
| .ui.toggle.checkbox input ~ label:after { | |||
| left: -0.05rem; | |||
| } | |||
| /* Focus */ | |||
| .ui.toggle.checkbox input:focus ~ .box:before, | |||
| .ui.toggle.checkbox input:focus ~ label:before { | |||
| background-color: rgba(0, 0, 0, 0.15); | |||
| border: none; | |||
| } | |||
| /* Hover */ | |||
| .ui.toggle.checkbox .box:hover::before, | |||
| .ui.toggle.checkbox label:hover::before { | |||
| background-color: rgba(0, 0, 0, 0.15); | |||
| border: none; | |||
| } | |||
| /* Active */ | |||
| .ui.toggle.checkbox input:checked ~ .box, | |||
| .ui.toggle.checkbox input:checked ~ label { | |||
| color: rgba(0, 0, 0, 0.95) !important; | |||
| } | |||
| .ui.toggle.checkbox input:checked ~ .box:before, | |||
| .ui.toggle.checkbox input:checked ~ label:before { | |||
| background-color: #78CB5B !important; | |||
| } | |||
| .ui.toggle.checkbox input:checked ~ .box:after, | |||
| .ui.toggle.checkbox input:checked ~ label:after { | |||
| left: 2.15rem; | |||
| } | |||
| /* Active Focus */ | |||
| .ui.toggle.checkbox input:focus:checked ~ .box, | |||
| .ui.toggle.checkbox input:focus:checked ~ label { | |||
| color: rgba(0, 0, 0, 0.95) !important; | |||
| } | |||
| .ui.toggle.checkbox input:focus:checked ~ .box:before, | |||
| .ui.toggle.checkbox input:focus:checked ~ label:before { | |||
| background-color: #59cd30 !important; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*-------------- | |||
| Fitted | |||
| ---------------*/ | |||
| .ui.fitted.checkbox .box, | |||
| .ui.fitted.checkbox label { | |||
| padding-left: 0em !important; | |||
| } | |||
| .ui.fitted.toggle.checkbox, | |||
| .ui.fitted.toggle.checkbox { | |||
| width: 3.5rem; | |||
| } | |||
| .ui.fitted.slider.checkbox, | |||
| .ui.fitted.slider.checkbox { | |||
| width: 3.5rem; | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,809 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Checkbox | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| ;(function ( $, window, document, undefined ) { | |||
| "use strict"; | |||
| $.fn.checkbox = function(parameters) { | |||
| var | |||
| $allModules = $(this), | |||
| moduleSelector = $allModules.selector || '', | |||
| time = new Date().getTime(), | |||
| performance = [], | |||
| query = arguments[0], | |||
| methodInvoked = (typeof query == 'string'), | |||
| queryArguments = [].slice.call(arguments, 1), | |||
| returnedValue | |||
| ; | |||
| $allModules | |||
| .each(function() { | |||
| var | |||
| settings = $.extend(true, {}, $.fn.checkbox.settings, parameters), | |||
| className = settings.className, | |||
| namespace = settings.namespace, | |||
| selector = settings.selector, | |||
| error = settings.error, | |||
| eventNamespace = '.' + namespace, | |||
| moduleNamespace = 'module-' + namespace, | |||
| $module = $(this), | |||
| $label = $(this).children(selector.label), | |||
| $input = $(this).children(selector.input), | |||
| input = $input[0], | |||
| initialLoad = false, | |||
| shortcutPressed = false, | |||
| instance = $module.data(moduleNamespace), | |||
| observer, | |||
| element = this, | |||
| module | |||
| ; | |||
| module = { | |||
| initialize: function() { | |||
| module.verbose('Initializing checkbox', settings); | |||
| module.create.label(); | |||
| module.bind.events(); | |||
| module.set.tabbable(); | |||
| module.hide.input(); | |||
| module.observeChanges(); | |||
| module.instantiate(); | |||
| module.setup(); | |||
| }, | |||
| instantiate: function() { | |||
| module.verbose('Storing instance of module', module); | |||
| instance = module; | |||
| $module | |||
| .data(moduleNamespace, module) | |||
| ; | |||
| }, | |||
| destroy: function() { | |||
| module.verbose('Destroying module'); | |||
| module.unbind.events(); | |||
| module.show.input(); | |||
| $module.removeData(moduleNamespace); | |||
| }, | |||
| fix: { | |||
| reference: function() { | |||
| if( $module.is(selector.input) ) { | |||
| module.debug('Behavior called on <input> adjusting invoked element'); | |||
| $module = $module.closest(selector.checkbox); | |||
| module.refresh(); | |||
| } | |||
| } | |||
| }, | |||
| setup: function() { | |||
| module.set.initialLoad(); | |||
| if( module.is.indeterminate() ) { | |||
| module.debug('Initial value is indeterminate'); | |||
| module.indeterminate(); | |||
| } | |||
| else if( module.is.checked() ) { | |||
| module.debug('Initial value is checked'); | |||
| module.check(); | |||
| } | |||
| else { | |||
| module.debug('Initial value is unchecked'); | |||
| module.uncheck(); | |||
| } | |||
| module.remove.initialLoad(); | |||
| }, | |||
| refresh: function() { | |||
| $label = $module.children(selector.label); | |||
| $input = $module.children(selector.input); | |||
| input = $input[0]; | |||
| }, | |||
| hide: { | |||
| input: function() { | |||
| module.verbose('Modfying <input> z-index to be unselectable'); | |||
| $input.addClass(className.hidden); | |||
| } | |||
| }, | |||
| show: { | |||
| input: function() { | |||
| module.verbose('Modfying <input> z-index to be selectable'); | |||
| $input.removeClass(className.hidden); | |||
| } | |||
| }, | |||
| observeChanges: function() { | |||
| if('MutationObserver' in window) { | |||
| observer = new MutationObserver(function(mutations) { | |||
| module.debug('DOM tree modified, updating selector cache'); | |||
| module.refresh(); | |||
| }); | |||
| observer.observe(element, { | |||
| childList : true, | |||
| subtree : true | |||
| }); | |||
| module.debug('Setting up mutation observer', observer); | |||
| } | |||
| }, | |||
| attachEvents: function(selector, event) { | |||
| var | |||
| $element = $(selector) | |||
| ; | |||
| event = $.isFunction(module[event]) | |||
| ? module[event] | |||
| : module.toggle | |||
| ; | |||
| if($element.length > 0) { | |||
| module.debug('Attaching checkbox events to element', selector, event); | |||
| $element | |||
| .on('click' + eventNamespace, event) | |||
| ; | |||
| } | |||
| else { | |||
| module.error(error.notFound); | |||
| } | |||
| }, | |||
| event: { | |||
| click: function(event) { | |||
| var | |||
| $target = $(event.target) | |||
| ; | |||
| if( $target.is(selector.input) ) { | |||
| module.verbose('Using default check action on initialized checkbox'); | |||
| return; | |||
| } | |||
| if( $target.is(selector.link) ) { | |||
| module.debug('Clicking link inside checkbox, skipping toggle'); | |||
| return; | |||
| } | |||
| module.toggle(); | |||
| $input.focus(); | |||
| event.preventDefault(); | |||
| }, | |||
| keydown: function(event) { | |||
| var | |||
| key = event.which, | |||
| keyCode = { | |||
| enter : 13, | |||
| space : 32, | |||
| escape : 27 | |||
| } | |||
| ; | |||
| if(key == keyCode.escape) { | |||
| module.verbose('Escape key pressed blurring field'); | |||
| $input.blur(); | |||
| shortcutPressed = true; | |||
| } | |||
| else if(!event.ctrlKey && ( key == keyCode.space || key == keyCode.enter) ) { | |||
| module.verbose('Enter/space key pressed, toggling checkbox'); | |||
| module.toggle(); | |||
| shortcutPressed = true; | |||
| } | |||
| else { | |||
| shortcutPressed = false; | |||
| } | |||
| }, | |||
| keyup: function(event) { | |||
| if(shortcutPressed) { | |||
| event.preventDefault(); | |||
| } | |||
| } | |||
| }, | |||
| check: function() { | |||
| if( !module.should.allowCheck() ) { | |||
| return; | |||
| } | |||
| module.debug('Checking checkbox', $input); | |||
| module.set.checked(); | |||
| if( !module.should.ignoreCallbacks() ) { | |||
| settings.onChecked.call(input); | |||
| settings.onChange.call(input); | |||
| } | |||
| }, | |||
| uncheck: function() { | |||
| if( !module.should.allowUncheck() ) { | |||
| return; | |||
| } | |||
| module.debug('Unchecking checkbox'); | |||
| module.set.unchecked(); | |||
| if( !module.should.ignoreCallbacks() ) { | |||
| settings.onUnchecked.call(input); | |||
| settings.onChange.call(input); | |||
| } | |||
| }, | |||
| indeterminate: function() { | |||
| if( module.should.allowIndeterminate() ) { | |||
| module.debug('Checkbox is already indeterminate'); | |||
| return; | |||
| } | |||
| module.debug('Making checkbox indeterminate'); | |||
| module.set.indeterminate(); | |||
| if( !module.should.ignoreCallbacks() ) { | |||
| settings.onIndeterminate.call(input); | |||
| settings.onChange.call(input); | |||
| } | |||
| }, | |||
| determinate: function() { | |||
| if( module.should.allowDeterminate() ) { | |||
| module.debug('Checkbox is already determinate'); | |||
| return; | |||
| } | |||
| module.debug('Making checkbox determinate'); | |||
| module.set.determinate(); | |||
| if( !module.should.ignoreCallbacks() ) { | |||
| settings.onDeterminate.call(input); | |||
| settings.onChange.call(input); | |||
| } | |||
| }, | |||
| enable: function() { | |||
| if( module.is.enabled() ) { | |||
| module.debug('Checkbox is already enabled'); | |||
| return; | |||
| } | |||
| module.debug('Enabling checkbox'); | |||
| module.set.enabled(); | |||
| settings.onEnable.call(input); | |||
| }, | |||
| disable: function() { | |||
| if( module.is.disabled() ) { | |||
| module.debug('Checkbox is already disabled'); | |||
| return; | |||
| } | |||
| module.debug('Disabling checkbox'); | |||
| module.set.disabled(); | |||
| settings.onDisable.call(input); | |||
| }, | |||
| get: { | |||
| radios: function() { | |||
| var | |||
| name = module.get.name() | |||
| ; | |||
| return $('input[name="' + name + '"]').closest(selector.checkbox); | |||
| }, | |||
| otherRadios: function() { | |||
| return module.get.radios().not($module); | |||
| }, | |||
| name: function() { | |||
| return $input.attr('name'); | |||
| } | |||
| }, | |||
| is: { | |||
| initialLoad: function() { | |||
| return initialLoad; | |||
| }, | |||
| radio: function() { | |||
| return ($input.hasClass(className.radio) || $input.attr('type') == 'radio'); | |||
| }, | |||
| indeterminate: function() { | |||
| return $input.prop('indeterminate') !== undefined && $input.prop('indeterminate'); | |||
| }, | |||
| checked: function() { | |||
| return $input.prop('checked') !== undefined && $input.prop('checked'); | |||
| }, | |||
| disabled: function() { | |||
| return $input.prop('disabled') !== undefined && $input.prop('disabled'); | |||
| }, | |||
| enabled: function() { | |||
| return !module.is.disabled(); | |||
| }, | |||
| determinate: function() { | |||
| return !module.is.indeterminate(); | |||
| }, | |||
| unchecked: function() { | |||
| return !module.is.checked(); | |||
| } | |||
| }, | |||
| should: { | |||
| allowCheck: function() { | |||
| if(module.is.determinate() && module.is.checked() && !module.should.forceCallbacks() ) { | |||
| module.debug('Should not allow check, checkbox is already checked'); | |||
| return false; | |||
| } | |||
| if(settings.beforeChecked.apply(input) === false) { | |||
| module.debug('Should not allow check, beforeChecked cancelled'); | |||
| return false; | |||
| } | |||
| return true; | |||
| }, | |||
| allowUncheck: function() { | |||
| if(module.is.determinate() && module.is.unchecked() && !module.should.forceCallbacks() ) { | |||
| module.debug('Should not allow uncheck, checkbox is already unchecked'); | |||
| return false; | |||
| } | |||
| if(settings.beforeUnchecked.apply(input) === false) { | |||
| module.debug('Should not allow uncheck, beforeUnchecked cancelled'); | |||
| return false; | |||
| } | |||
| return true; | |||
| }, | |||
| allowIndeterminate: function() { | |||
| if(module.is.indeterminate() && !module.should.forceCallbacks() ) { | |||
| module.debug('Should not allow indeterminate, checkbox is already indeterminate'); | |||
| return false; | |||
| } | |||
| if(settings.beforeIndeterminate.apply(input) === false) { | |||
| module.debug('Should not allow indeterminate, beforeIndeterminate cancelled'); | |||
| return false; | |||
| } | |||
| return true; | |||
| }, | |||
| allowDeterminate: function() { | |||
| if(module.is.determinate() && !module.should.forceCallbacks() ) { | |||
| module.debug('Should not allow determinate, checkbox is already determinate'); | |||
| return false; | |||
| } | |||
| if(settings.beforeDeterminate.apply(input) === false) { | |||
| module.debug('Should not allow determinate, beforeDeterminate cancelled'); | |||
| return false; | |||
| } | |||
| return true; | |||
| }, | |||
| forceCallbacks: function() { | |||
| return (module.is.initialLoad() && settings.fireOnInit); | |||
| }, | |||
| ignoreCallbacks: function() { | |||
| return (initialLoad && !settings.fireOnInit); | |||
| } | |||
| }, | |||
| can: { | |||
| change: function() { | |||
| return !( $module.hasClass(className.disabled) || $module.hasClass(className.readOnly) || $input.prop('disabled') || $input.prop('readonly') ); | |||
| }, | |||
| uncheck: function() { | |||
| return (typeof settings.uncheckable === 'boolean') | |||
| ? settings.uncheckable | |||
| : !module.is.radio() | |||
| ; | |||
| } | |||
| }, | |||
| set: { | |||
| initialLoad: function() { | |||
| initialLoad = true; | |||
| }, | |||
| checked: function() { | |||
| module.verbose('Setting class to checked'); | |||
| $module | |||
| .removeClass(className.indeterminate) | |||
| .addClass(className.checked) | |||
| ; | |||
| if( module.is.radio() ) { | |||
| module.uncheckOthers(); | |||
| } | |||
| if(!module.is.indeterminate() && module.is.checked()) { | |||
| module.debug('Input is already checked, skipping input property change'); | |||
| return; | |||
| } | |||
| module.verbose('Setting state to checked', input); | |||
| $input | |||
| .prop('indeterminate', false) | |||
| .prop('checked', true) | |||
| ; | |||
| module.trigger.change(); | |||
| }, | |||
| unchecked: function() { | |||
| module.verbose('Removing checked class'); | |||
| $module | |||
| .removeClass(className.indeterminate) | |||
| .removeClass(className.checked) | |||
| ; | |||
| if(!module.is.indeterminate() && module.is.unchecked() ) { | |||
| module.debug('Input is already unchecked'); | |||
| return; | |||
| } | |||
| module.debug('Setting state to unchecked'); | |||
| $input | |||
| .prop('indeterminate', false) | |||
| .prop('checked', false) | |||
| ; | |||
| module.trigger.change(); | |||
| }, | |||
| indeterminate: function() { | |||
| module.verbose('Setting class to indeterminate'); | |||
| $module | |||
| .addClass(className.indeterminate) | |||
| ; | |||
| if( module.is.indeterminate() ) { | |||
| module.debug('Input is already indeterminate, skipping input property change'); | |||
| return; | |||
| } | |||
| module.debug('Setting state to indeterminate'); | |||
| $input | |||
| .prop('indeterminate', true) | |||
| ; | |||
| module.trigger.change(); | |||
| }, | |||
| determinate: function() { | |||
| module.verbose('Removing indeterminate class'); | |||
| $module | |||
| .removeClass(className.indeterminate) | |||
| ; | |||
| if( module.is.determinate() ) { | |||
| module.debug('Input is already determinate, skipping input property change'); | |||
| return; | |||
| } | |||
| module.debug('Setting state to determinate'); | |||
| $input | |||
| .prop('indeterminate', false) | |||
| ; | |||
| }, | |||
| disabled: function() { | |||
| module.verbose('Setting class to disabled'); | |||
| $module | |||
| .addClass(className.disabled) | |||
| ; | |||
| if( module.is.disabled() ) { | |||
| module.debug('Input is already disabled, skipping input property change'); | |||
| return; | |||
| } | |||
| module.debug('Setting state to disabled'); | |||
| $input | |||
| .prop('disabled', 'disabled') | |||
| ; | |||
| module.trigger.change(); | |||
| }, | |||
| enabled: function() { | |||
| module.verbose('Removing disabled class'); | |||
| $module.removeClass(className.disabled); | |||
| if( module.is.enabled() ) { | |||
| module.debug('Input is already enabled, skipping input property change'); | |||
| return; | |||
| } | |||
| module.debug('Setting state to enabled'); | |||
| $input | |||
| .prop('disabled', false) | |||
| ; | |||
| module.trigger.change(); | |||
| }, | |||
| tabbable: function() { | |||
| module.verbose('Adding tabindex to checkbox'); | |||
| if( $input.attr('tabindex') === undefined) { | |||
| $input.attr('tabindex', 0); | |||
| } | |||
| } | |||
| }, | |||
| remove: { | |||
| initialLoad: function() { | |||
| initialLoad = false; | |||
| } | |||
| }, | |||
| trigger: { | |||
| change: function() { | |||
| var | |||
| events = document.createEvent('HTMLEvents'), | |||
| inputElement = $input[0] | |||
| ; | |||
| if(inputElement) { | |||
| module.verbose('Triggering native change event'); | |||
| events.initEvent('change', true, false); | |||
| inputElement.dispatchEvent(events); | |||
| } | |||
| } | |||
| }, | |||
| create: { | |||
| label: function() { | |||
| if($input.prevAll(selector.label).length > 0) { | |||
| $input.prev(selector.label).detach().insertAfter($input); | |||
| module.debug('Moving existing label', $label); | |||
| } | |||
| else if( !module.has.label() ) { | |||
| $label = $('<label>').insertAfter($input); | |||
| module.debug('Creating label', $label); | |||
| } | |||
| } | |||
| }, | |||
| has: { | |||
| label: function() { | |||
| return ($label.length > 0); | |||
| } | |||
| }, | |||
| bind: { | |||
| events: function() { | |||
| module.verbose('Attaching checkbox events'); | |||
| $module | |||
| .on('click' + eventNamespace, module.event.click) | |||
| .on('keydown' + eventNamespace, selector.input, module.event.keydown) | |||
| .on('keyup' + eventNamespace, selector.input, module.event.keyup) | |||
| ; | |||
| } | |||
| }, | |||
| unbind: { | |||
| events: function() { | |||
| module.debug('Removing events'); | |||
| $module | |||
| .off(eventNamespace) | |||
| ; | |||
| } | |||
| }, | |||
| uncheckOthers: function() { | |||
| var | |||
| $radios = module.get.otherRadios() | |||
| ; | |||
| module.debug('Unchecking other radios', $radios); | |||
| $radios.removeClass(className.checked); | |||
| }, | |||
| toggle: function() { | |||
| if( !module.can.change() ) { | |||
| if(!module.is.radio()) { | |||
| module.debug('Checkbox is read-only or disabled, ignoring toggle'); | |||
| } | |||
| return; | |||
| } | |||
| if( module.is.indeterminate() || module.is.unchecked() ) { | |||
| module.debug('Currently unchecked'); | |||
| module.check(); | |||
| } | |||
| else if( module.is.checked() && module.can.uncheck() ) { | |||
| module.debug('Currently checked'); | |||
| module.uncheck(); | |||
| } | |||
| }, | |||
| setting: function(name, value) { | |||
| module.debug('Changing setting', name, value); | |||
| if( $.isPlainObject(name) ) { | |||
| $.extend(true, settings, name); | |||
| } | |||
| else if(value !== undefined) { | |||
| settings[name] = value; | |||
| } | |||
| else { | |||
| return settings[name]; | |||
| } | |||
| }, | |||
| internal: function(name, value) { | |||
| if( $.isPlainObject(name) ) { | |||
| $.extend(true, module, name); | |||
| } | |||
| else if(value !== undefined) { | |||
| module[name] = value; | |||
| } | |||
| else { | |||
| return module[name]; | |||
| } | |||
| }, | |||
| debug: function() { | |||
| if(settings.debug) { | |||
| if(settings.performance) { | |||
| module.performance.log(arguments); | |||
| } | |||
| else { | |||
| module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':'); | |||
| module.debug.apply(console, arguments); | |||
| } | |||
| } | |||
| }, | |||
| verbose: function() { | |||
| if(settings.verbose && settings.debug) { | |||
| if(settings.performance) { | |||
| module.performance.log(arguments); | |||
| } | |||
| else { | |||
| module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':'); | |||
| module.verbose.apply(console, arguments); | |||
| } | |||
| } | |||
| }, | |||
| error: function() { | |||
| module.error = Function.prototype.bind.call(console.error, console, settings.name + ':'); | |||
| module.error.apply(console, arguments); | |||
| }, | |||
| performance: { | |||
| log: function(message) { | |||
| var | |||
| currentTime, | |||
| executionTime, | |||
| previousTime | |||
| ; | |||
| if(settings.performance) { | |||
| currentTime = new Date().getTime(); | |||
| previousTime = time || currentTime; | |||
| executionTime = currentTime - previousTime; | |||
| time = currentTime; | |||
| performance.push({ | |||
| 'Name' : message[0], | |||
| 'Arguments' : [].slice.call(message, 1) || '', | |||
| 'Element' : element, | |||
| 'Execution Time' : executionTime | |||
| }); | |||
| } | |||
| clearTimeout(module.performance.timer); | |||
| module.performance.timer = setTimeout(module.performance.display, 500); | |||
| }, | |||
| display: function() { | |||
| var | |||
| title = settings.name + ':', | |||
| totalTime = 0 | |||
| ; | |||
| time = false; | |||
| clearTimeout(module.performance.timer); | |||
| $.each(performance, function(index, data) { | |||
| totalTime += data['Execution Time']; | |||
| }); | |||
| title += ' ' + totalTime + 'ms'; | |||
| if(moduleSelector) { | |||
| title += ' \'' + moduleSelector + '\''; | |||
| } | |||
| if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) { | |||
| console.groupCollapsed(title); | |||
| if(console.table) { | |||
| console.table(performance); | |||
| } | |||
| else { | |||
| $.each(performance, function(index, data) { | |||
| console.log(data['Name'] + ': ' + data['Execution Time']+'ms'); | |||
| }); | |||
| } | |||
| console.groupEnd(); | |||
| } | |||
| performance = []; | |||
| } | |||
| }, | |||
| invoke: function(query, passedArguments, context) { | |||
| var | |||
| object = instance, | |||
| maxDepth, | |||
| found, | |||
| response | |||
| ; | |||
| passedArguments = passedArguments || queryArguments; | |||
| context = element || context; | |||
| if(typeof query == 'string' && object !== undefined) { | |||
| query = query.split(/[\. ]/); | |||
| maxDepth = query.length - 1; | |||
| $.each(query, function(depth, value) { | |||
| var camelCaseValue = (depth != maxDepth) | |||
| ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1) | |||
| : query | |||
| ; | |||
| if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) { | |||
| object = object[camelCaseValue]; | |||
| } | |||
| else if( object[camelCaseValue] !== undefined ) { | |||
| found = object[camelCaseValue]; | |||
| return false; | |||
| } | |||
| else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) { | |||
| object = object[value]; | |||
| } | |||
| else if( object[value] !== undefined ) { | |||
| found = object[value]; | |||
| return false; | |||
| } | |||
| else { | |||
| module.error(error.method, query); | |||
| return false; | |||
| } | |||
| }); | |||
| } | |||
| if ( $.isFunction( found ) ) { | |||
| response = found.apply(context, passedArguments); | |||
| } | |||
| else if(found !== undefined) { | |||
| response = found; | |||
| } | |||
| if($.isArray(returnedValue)) { | |||
| returnedValue.push(response); | |||
| } | |||
| else if(returnedValue !== undefined) { | |||
| returnedValue = [returnedValue, response]; | |||
| } | |||
| else if(response !== undefined) { | |||
| returnedValue = response; | |||
| } | |||
| return found; | |||
| } | |||
| }; | |||
| if(methodInvoked) { | |||
| if(instance === undefined) { | |||
| module.initialize(); | |||
| } | |||
| module.invoke(query); | |||
| } | |||
| else { | |||
| if(instance !== undefined) { | |||
| instance.invoke('destroy'); | |||
| } | |||
| module.initialize(); | |||
| } | |||
| }) | |||
| ; | |||
| return (returnedValue !== undefined) | |||
| ? returnedValue | |||
| : this | |||
| ; | |||
| }; | |||
| $.fn.checkbox.settings = { | |||
| name : 'Checkbox', | |||
| namespace : 'checkbox', | |||
| debug : false, | |||
| verbose : true, | |||
| performance : true, | |||
| // delegated event context | |||
| uncheckable : 'auto', | |||
| fireOnInit : false, | |||
| onChange : function(){}, | |||
| beforeChecked : function(){}, | |||
| beforeUnchecked : function(){}, | |||
| beforeDeterminate : function(){}, | |||
| beforeIndeterminate : function(){}, | |||
| onChecked : function(){}, | |||
| onUnchecked : function(){}, | |||
| onDeterminate : function() {}, | |||
| onIndeterminate : function() {}, | |||
| onEnabled : function(){}, | |||
| onDisabled : function(){}, | |||
| className : { | |||
| checked : 'checked', | |||
| indeterminate : 'indeterminate', | |||
| disabled : 'disabled', | |||
| hidden : 'hidden', | |||
| radio : 'radio', | |||
| readOnly : 'read-only' | |||
| }, | |||
| error : { | |||
| method : 'The method you called is not defined' | |||
| }, | |||
| selector : { | |||
| checkbox : '.ui.checkbox', | |||
| label : 'label, .box', | |||
| input : 'input[type="checkbox"], input[type="radio"]', | |||
| link : 'a[href]' | |||
| } | |||
| }; | |||
| })( jQuery, window, document ); | |||
| @ -0,0 +1,253 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Comment | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Standard | |||
| *******************************/ | |||
| /*-------------- | |||
| Comments | |||
| ---------------*/ | |||
| .ui.comments { | |||
| margin: 1.5em 0em; | |||
| max-width: 650px; | |||
| } | |||
| .ui.comments:first-child { | |||
| margin-top: 0em; | |||
| } | |||
| .ui.comments:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| /*-------------- | |||
| Comment | |||
| ---------------*/ | |||
| .ui.comments .comment { | |||
| position: relative; | |||
| background: none; | |||
| margin: 0.5em 0em 0em; | |||
| padding: 0.5em 0em 0em; | |||
| border: none; | |||
| border-top: none; | |||
| line-height: 1.2; | |||
| } | |||
| .ui.comments .comment:first-child { | |||
| margin-top: 0em; | |||
| padding-top: 0em; | |||
| } | |||
| /*-------------------- | |||
| Nested Comments | |||
| ---------------------*/ | |||
| .ui.comments .comment .comments { | |||
| margin: 0em 0em 0.5em 0.5em; | |||
| padding: 1em 0em 1em 1em; | |||
| } | |||
| .ui.comments .comment .comments:before { | |||
| position: absolute; | |||
| top: 0px; | |||
| left: 0px; | |||
| } | |||
| .ui.comments .comment .comments .comment { | |||
| border: none; | |||
| border-top: none; | |||
| background: none; | |||
| } | |||
| /*-------------- | |||
| Avatar | |||
| ---------------*/ | |||
| .ui.comments .comment .avatar { | |||
| display: block; | |||
| width: 2.5em; | |||
| height: auto; | |||
| float: left; | |||
| margin: 0.2em 0em 0em; | |||
| } | |||
| .ui.comments .comment img.avatar, | |||
| .ui.comments .comment .avatar img { | |||
| display: block; | |||
| margin: 0em auto; | |||
| width: 100%; | |||
| height: 100%; | |||
| border-radius: 0.25rem; | |||
| } | |||
| /*-------------- | |||
| Content | |||
| ---------------*/ | |||
| .ui.comments .comment > .content { | |||
| display: block; | |||
| } | |||
| /* If there is an avatar move content over */ | |||
| .ui.comments .comment > .avatar ~ .content { | |||
| margin-left: 3.5em; | |||
| } | |||
| /*-------------- | |||
| Author | |||
| ---------------*/ | |||
| .ui.comments .comment .author { | |||
| font-size: 1em; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| font-weight: bold; | |||
| } | |||
| .ui.comments .comment a.author { | |||
| cursor: pointer; | |||
| } | |||
| .ui.comments .comment a.author:hover { | |||
| color: #4078C0; | |||
| } | |||
| /*-------------- | |||
| Metadata | |||
| ---------------*/ | |||
| .ui.comments .comment .metadata { | |||
| display: inline-block; | |||
| margin-left: 0.5em; | |||
| color: rgba(0, 0, 0, 0.4); | |||
| font-size: 0.875em; | |||
| } | |||
| .ui.comments .comment .metadata > * { | |||
| display: inline-block; | |||
| margin: 0em 0.5em 0em 0em; | |||
| } | |||
| .ui.comments .comment .metadata > :last-child { | |||
| margin-right: 0em; | |||
| } | |||
| /*-------------------- | |||
| Comment Text | |||
| ---------------------*/ | |||
| .ui.comments .comment .text { | |||
| margin: 0.25em 0em 0.5em; | |||
| font-size: 1em; | |||
| word-wrap: break-word; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| line-height: 1.3; | |||
| } | |||
| /*-------------------- | |||
| User Actions | |||
| ---------------------*/ | |||
| .ui.comments .comment .actions { | |||
| font-size: 0.875em; | |||
| } | |||
| .ui.comments .comment .actions a { | |||
| cursor: pointer; | |||
| display: inline-block; | |||
| margin: 0em 0.75em 0em 0em; | |||
| color: rgba(0, 0, 0, 0.4); | |||
| } | |||
| .ui.comments .comment .actions a:last-child { | |||
| margin-right: 0em; | |||
| } | |||
| .ui.comments .comment .actions a.active, | |||
| .ui.comments .comment .actions a:hover { | |||
| color: rgba(0, 0, 0, 0.8); | |||
| } | |||
| /*-------------------- | |||
| Reply Form | |||
| ---------------------*/ | |||
| .ui.comments > .reply.form { | |||
| margin-top: 1em; | |||
| } | |||
| .ui.comments .comment .reply.form { | |||
| width: 100%; | |||
| margin-top: 1em; | |||
| } | |||
| .ui.comments .reply.form textarea { | |||
| font-size: 1em; | |||
| height: 12em; | |||
| } | |||
| /******************************* | |||
| State | |||
| *******************************/ | |||
| .ui.collapsed.comments, | |||
| .ui.comments .collapsed.comments, | |||
| .ui.comments .collapsed.comment { | |||
| display: none; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*-------------------- | |||
| Threaded | |||
| ---------------------*/ | |||
| .ui.threaded.comments .comment .comments { | |||
| margin: -1.5em 0 -1em 1.25em; | |||
| padding: 3em 0em 2em 2.25em; | |||
| box-shadow: -1px 0px 0px rgba(0, 0, 0, 0.13); | |||
| } | |||
| /*-------------------- | |||
| Minimal | |||
| ---------------------*/ | |||
| .ui.minimal.comments .comment .actions { | |||
| opacity: 0; | |||
| position: absolute; | |||
| top: 0px; | |||
| right: 0px; | |||
| left: auto; | |||
| -webkit-transition: opacity 0.2s ease; | |||
| transition: opacity 0.2s ease; | |||
| -webkit-transition-delay: 0.1s; | |||
| transition-delay: 0.1s; | |||
| } | |||
| .ui.minimal.comments .comment > .content:hover > .actions { | |||
| opacity: 1; | |||
| } | |||
| /*-------------------- | |||
| Sizes | |||
| ---------------------*/ | |||
| .ui.small.comments { | |||
| font-size: 0.9em; | |||
| } | |||
| .ui.comments { | |||
| font-size: 1em; | |||
| } | |||
| .ui.large.comments { | |||
| font-size: 1.1em; | |||
| } | |||
| .ui.huge.comments { | |||
| font-size: 1.2em; | |||
| } | |||
| /******************************* | |||
| User Variable Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Comment | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */.ui.comments{margin:1.5em 0;max-width:650px}.ui.comments:first-child{margin-top:0}.ui.comments:last-child{margin-bottom:0}.ui.comments .comment{position:relative;background:0 0;margin:.5em 0 0;padding:.5em 0 0;border:none;border-top:none;line-height:1.2}.ui.comments .comment:first-child{margin-top:0;padding-top:0}.ui.comments .comment .comments{margin:0 0 .5em .5em;padding:1em 0 1em 1em}.ui.comments .comment .comments:before{position:absolute;top:0;left:0}.ui.comments .comment .comments .comment{border:none;border-top:none;background:0 0}.ui.comments .comment .avatar{display:block;width:2.5em;height:auto;float:left;margin:.2em 0 0}.ui.comments .comment .avatar img,.ui.comments .comment img.avatar{display:block;margin:0 auto;width:100%;height:100%;border-radius:.25rem}.ui.comments .comment>.content{display:block}.ui.comments .comment>.avatar~.content{margin-left:3.5em}.ui.comments .comment .author{font-size:1em;color:rgba(0,0,0,.87);font-weight:700}.ui.comments .comment a.author{cursor:pointer}.ui.comments .comment a.author:hover{color:#4078C0}.ui.comments .comment .metadata{display:inline-block;margin-left:.5em;color:rgba(0,0,0,.4);font-size:.875em}.ui.comments .comment .metadata>*{display:inline-block;margin:0 .5em 0 0}.ui.comments .comment .metadata>:last-child{margin-right:0}.ui.comments .comment .text{margin:.25em 0 .5em;font-size:1em;word-wrap:break-word;color:rgba(0,0,0,.87);line-height:1.3}.ui.comments .comment .actions{font-size:.875em}.ui.comments .comment .actions a{cursor:pointer;display:inline-block;margin:0 .75em 0 0;color:rgba(0,0,0,.4)}.ui.comments .comment .actions a:last-child{margin-right:0}.ui.comments .comment .actions a.active,.ui.comments .comment .actions a:hover{color:rgba(0,0,0,.8)}.ui.comments>.reply.form{margin-top:1em}.ui.comments .comment .reply.form{width:100%;margin-top:1em}.ui.comments .reply.form textarea{font-size:1em;height:12em}.ui.collapsed.comments,.ui.comments .collapsed.comment,.ui.comments .collapsed.comments{display:none}.ui.threaded.comments .comment .comments{margin:-1.5em 0 -1em 1.25em;padding:3em 0 2em 2.25em;box-shadow:-1px 0 0 rgba(0,0,0,.13)}.ui.minimal.comments .comment .actions{opacity:0;position:absolute;top:0;right:0;left:auto;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;-webkit-transition-delay:.1s;transition-delay:.1s}.ui.minimal.comments .comment>.content:hover>.actions{opacity:1}.ui.small.comments{font-size:.9em}.ui.comments{font-size:1em}.ui.large.comments{font-size:1.1em}.ui.huge.comments{font-size:1.2em} | |||
| @ -0,0 +1,143 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Container | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Container | |||
| *******************************/ | |||
| /* All Sizes */ | |||
| .ui.container { | |||
| display: block; | |||
| max-width: 100% !important; | |||
| } | |||
| /* Mobile */ | |||
| @media only screen and (max-width: 687px) { | |||
| .ui.container { | |||
| width: auto !important; | |||
| margin-left: 1em !important; | |||
| margin-right: 1em !important; | |||
| } | |||
| .ui.grid.container { | |||
| width: auto !important; | |||
| } | |||
| .ui.relaxed.grid.container { | |||
| width: auto !important; | |||
| } | |||
| .ui.very.relaxed.grid.container { | |||
| width: auto !important; | |||
| } | |||
| } | |||
| /* Tablet */ | |||
| @media only screen and (min-width: 688px) and (max-width: 687px) { | |||
| .ui.container { | |||
| width: 645px; | |||
| margin-left: auto !important; | |||
| margin-right: auto !important; | |||
| } | |||
| .ui.grid.container { | |||
| width: calc( 645px + 2rem ) !important; | |||
| } | |||
| .ui.relaxed.grid.container { | |||
| width: calc( 645px + 3rem ) !important; | |||
| } | |||
| .ui.very.relaxed.grid.container { | |||
| width: calc( 645px + 5rem ) !important; | |||
| } | |||
| } | |||
| /* Small Monitor */ | |||
| @media only screen and (min-width: 688px) and (max-width: 687px) { | |||
| .ui.container { | |||
| width: 632px; | |||
| margin-left: auto !important; | |||
| margin-right: auto !important; | |||
| } | |||
| .ui.grid.container { | |||
| width: calc( 632px + 2rem ) !important; | |||
| } | |||
| .ui.relaxed.grid.container { | |||
| width: calc( 632px + 3rem ) !important; | |||
| } | |||
| .ui.very.relaxed.grid.container { | |||
| width: calc( 632px + 5rem ) !important; | |||
| } | |||
| } | |||
| /* Large Monitor */ | |||
| @media only screen and (min-width: 688px) { | |||
| .ui.container { | |||
| width: 619px; | |||
| margin-left: auto !important; | |||
| margin-right: auto !important; | |||
| } | |||
| .ui.grid.container { | |||
| width: calc( 619px + 2rem ) !important; | |||
| } | |||
| .ui.relaxed.grid.container { | |||
| width: calc( 619px + 3rem ) !important; | |||
| } | |||
| .ui.very.relaxed.grid.container { | |||
| width: calc( 619px + 5rem ) !important; | |||
| } | |||
| } | |||
| /******************************* | |||
| Types | |||
| *******************************/ | |||
| /* Text Container */ | |||
| .ui.text.container { | |||
| font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif; | |||
| max-width: 700px !important; | |||
| line-height: 1.5; | |||
| } | |||
| .ui.text.container { | |||
| font-size: 1.15384615rem; | |||
| } | |||
| /* Fluid */ | |||
| .ui.fluid.container { | |||
| width: 100%; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| .ui[class*="left aligned"].container { | |||
| text-align: left; | |||
| } | |||
| .ui[class*="center aligned"].container { | |||
| text-align: center; | |||
| } | |||
| .ui[class*="right aligned"].container { | |||
| text-align: right; | |||
| } | |||
| .ui.justified.container { | |||
| text-align: justify; | |||
| -webkit-hyphens: auto; | |||
| -moz-hyphens: auto; | |||
| -ms-hyphens: auto; | |||
| hyphens: auto; | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Container | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */.ui.container{display:block;max-width:100%!important}@media only screen and (max-width:687px){.ui.container{width:auto!important;margin-left:1em!important;margin-right:1em!important}.ui.grid.container,.ui.relaxed.grid.container,.ui.very.relaxed.grid.container{width:auto!important}}@media only screen and (min-width:688px) and (max-width:687px){.ui.container{width:632px;margin-left:auto!important;margin-right:auto!important}.ui.grid.container{width:calc(632px + 2rem)!important}.ui.relaxed.grid.container{width:calc(632px + 3rem)!important}.ui.very.relaxed.grid.container{width:calc(632px + 5rem)!important}}@media only screen and (min-width:688px){.ui.container{width:619px;margin-left:auto!important;margin-right:auto!important}.ui.grid.container{width:calc(619px + 2rem)!important}.ui.relaxed.grid.container{width:calc(619px + 3rem)!important}.ui.very.relaxed.grid.container{width:calc(619px + 5rem)!important}}.ui.text.container{font-family:Arial,'Helvetica Neue',Arial,Helvetica,sans-serif;max-width:700px!important;line-height:1.5;font-size:1.15384615rem}.ui.fluid.container{width:100%}.ui[class*="left aligned"].container{text-align:left}.ui[class*="center aligned"].container{text-align:center}.ui[class*="right aligned"].container{text-align:right}.ui.justified.container{text-align:justify;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto} | |||
| @ -0,0 +1,193 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Dimmer | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Dimmer | |||
| *******************************/ | |||
| .dimmable { | |||
| position: relative; | |||
| } | |||
| .ui.dimmer { | |||
| display: none; | |||
| position: absolute; | |||
| top: 0em !important; | |||
| left: 0em !important; | |||
| width: 100%; | |||
| height: 100%; | |||
| text-align: center; | |||
| vertical-align: middle; | |||
| background-color: rgba(0, 0, 0, 0.85); | |||
| opacity: 0; | |||
| line-height: 1; | |||
| -webkit-animation-fill-mode: both; | |||
| animation-fill-mode: both; | |||
| -webkit-animation-duration: 0.5s; | |||
| animation-duration: 0.5s; | |||
| -webkit-transition: background-color 0.5s linear; | |||
| transition: background-color 0.5s linear; | |||
| -webkit-user-select: none; | |||
| -moz-user-select: none; | |||
| -ms-user-select: none; | |||
| user-select: none; | |||
| will-change: opacity; | |||
| z-index: 1000; | |||
| } | |||
| /* Dimmer Content */ | |||
| .ui.dimmer > .content { | |||
| width: 100%; | |||
| height: 100%; | |||
| display: table; | |||
| -webkit-user-select: text; | |||
| -moz-user-select: text; | |||
| -ms-user-select: text; | |||
| user-select: text; | |||
| } | |||
| .ui.dimmer > .content > * { | |||
| display: table-cell; | |||
| vertical-align: middle; | |||
| color: #FFFFFF; | |||
| } | |||
| /* Loose Coupling */ | |||
| .ui.segment > .ui.dimmer { | |||
| border-radius: inherit !important; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| .animating.dimmable:not(body), | |||
| .dimmed.dimmable:not(body) { | |||
| overflow: hidden; | |||
| } | |||
| .dimmed.dimmable > .ui.animating.dimmer, | |||
| .dimmed.dimmable > .ui.visible.dimmer, | |||
| .ui.active.dimmer { | |||
| display: block; | |||
| opacity: 1; | |||
| } | |||
| .ui.disabled.dimmer { | |||
| width: 0 !important; | |||
| height: 0 !important; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*-------------- | |||
| Page | |||
| ---------------*/ | |||
| .ui.page.dimmer { | |||
| position: fixed; | |||
| -webkit-transform-style: ''; | |||
| transform-style: ''; | |||
| -webkit-perspective: 2000px; | |||
| perspective: 2000px; | |||
| -webkit-transform-origin: center center; | |||
| transform-origin: center center; | |||
| } | |||
| body.animating.in.dimmable, | |||
| body.dimmed.dimmable { | |||
| overflow: hidden; | |||
| } | |||
| body.dimmable > .dimmer { | |||
| position: fixed; | |||
| } | |||
| /*-------------- | |||
| Blurring | |||
| ---------------*/ | |||
| .blurring.dimmable > :not(.dimmer) { | |||
| -webkit-filter: blur(0px) grayscale(0); | |||
| filter: blur(0px) grayscale(0); | |||
| -webkit-transition: 800ms -webkit-filter ease, 800ms filter ease; | |||
| transition: 800ms filter ease; | |||
| } | |||
| .blurring.dimmed.dimmable > :not(.dimmer) { | |||
| -webkit-filter: blur(5px) grayscale(0.7); | |||
| filter: blur(5px) grayscale(0.7); | |||
| } | |||
| /* Dimmer Color */ | |||
| .blurring.dimmable > .dimmer { | |||
| background-color: rgba(0, 0, 0, 0.6); | |||
| } | |||
| .blurring.dimmable > .inverted.dimmer { | |||
| background-color: rgba(255, 255, 255, 0.6); | |||
| } | |||
| /*-------------- | |||
| Aligned | |||
| ---------------*/ | |||
| .ui.dimmer > .top.aligned.content > * { | |||
| vertical-align: top; | |||
| } | |||
| .ui.dimmer > .bottom.aligned.content > * { | |||
| vertical-align: bottom; | |||
| } | |||
| /*-------------- | |||
| Inverted | |||
| ---------------*/ | |||
| .ui.inverted.dimmer { | |||
| background-color: rgba(255, 255, 255, 0.85); | |||
| } | |||
| .ui.inverted.dimmer > .content > * { | |||
| color: #FFFFFF; | |||
| } | |||
| /*-------------- | |||
| Simple | |||
| ---------------*/ | |||
| /* Displays without javascript */ | |||
| .ui.simple.dimmer { | |||
| display: block; | |||
| overflow: hidden; | |||
| opacity: 1; | |||
| width: 0%; | |||
| height: 0%; | |||
| z-index: -100; | |||
| background-color: rgba(0, 0, 0, 0); | |||
| } | |||
| .dimmed.dimmable > .ui.simple.dimmer { | |||
| overflow: visible; | |||
| opacity: 1; | |||
| width: 100%; | |||
| height: 100%; | |||
| background-color: rgba(0, 0, 0, 0.85); | |||
| z-index: 1; | |||
| } | |||
| .ui.simple.inverted.dimmer { | |||
| background-color: rgba(255, 255, 255, 0); | |||
| } | |||
| .dimmed.dimmable > .ui.simple.inverted.dimmer { | |||
| background-color: rgba(255, 255, 255, 0.85); | |||
| } | |||
| /******************************* | |||
| User Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,693 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Dimmer | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| ;(function ( $, window, document, undefined ) { | |||
| "use strict"; | |||
| $.fn.dimmer = function(parameters) { | |||
| var | |||
| $allModules = $(this), | |||
| time = new Date().getTime(), | |||
| performance = [], | |||
| query = arguments[0], | |||
| methodInvoked = (typeof query == 'string'), | |||
| queryArguments = [].slice.call(arguments, 1), | |||
| returnedValue | |||
| ; | |||
| $allModules | |||
| .each(function() { | |||
| var | |||
| settings = ( $.isPlainObject(parameters) ) | |||
| ? $.extend(true, {}, $.fn.dimmer.settings, parameters) | |||
| : $.extend({}, $.fn.dimmer.settings), | |||
| selector = settings.selector, | |||
| namespace = settings.namespace, | |||
| className = settings.className, | |||
| error = settings.error, | |||
| eventNamespace = '.' + namespace, | |||
| moduleNamespace = 'module-' + namespace, | |||
| moduleSelector = $allModules.selector || '', | |||
| clickEvent = ('ontouchstart' in document.documentElement) | |||
| ? 'touchstart' | |||
| : 'click', | |||
| $module = $(this), | |||
| $dimmer, | |||
| $dimmable, | |||
| element = this, | |||
| instance = $module.data(moduleNamespace), | |||
| module | |||
| ; | |||
| module = { | |||
| preinitialize: function() { | |||
| if( module.is.dimmer() ) { | |||
| $dimmable = $module.parent(); | |||
| $dimmer = $module; | |||
| } | |||
| else { | |||
| $dimmable = $module; | |||
| if( module.has.dimmer() ) { | |||
| if(settings.dimmerName) { | |||
| $dimmer = $dimmable.find(selector.dimmer).filter('.' + settings.dimmerName); | |||
| } | |||
| else { | |||
| $dimmer = $dimmable.find(selector.dimmer); | |||
| } | |||
| } | |||
| else { | |||
| $dimmer = module.create(); | |||
| } | |||
| } | |||
| }, | |||
| initialize: function() { | |||
| module.debug('Initializing dimmer', settings); | |||
| module.bind.events(); | |||
| module.set.dimmable(); | |||
| module.instantiate(); | |||
| }, | |||
| instantiate: function() { | |||
| module.verbose('Storing instance of module', module); | |||
| instance = module; | |||
| $module | |||
| .data(moduleNamespace, instance) | |||
| ; | |||
| }, | |||
| destroy: function() { | |||
| module.verbose('Destroying previous module', $dimmer); | |||
| module.unbind.events(); | |||
| module.remove.variation(); | |||
| $dimmable | |||
| .off(eventNamespace) | |||
| ; | |||
| }, | |||
| bind: { | |||
| events: function() { | |||
| if(settings.on == 'hover') { | |||
| $dimmable | |||
| .on('mouseenter' + eventNamespace, module.show) | |||
| .on('mouseleave' + eventNamespace, module.hide) | |||
| ; | |||
| } | |||
| else if(settings.on == 'click') { | |||
| $dimmable | |||
| .on(clickEvent + eventNamespace, module.toggle) | |||
| ; | |||
| } | |||
| if( module.is.page() ) { | |||
| module.debug('Setting as a page dimmer', $dimmable); | |||
| module.set.pageDimmer(); | |||
| } | |||
| if( module.is.closable() ) { | |||
| module.verbose('Adding dimmer close event', $dimmer); | |||
| $dimmable | |||
| .on(clickEvent + eventNamespace, selector.dimmer, module.event.click) | |||
| ; | |||
| } | |||
| } | |||
| }, | |||
| unbind: { | |||
| events: function() { | |||
| $module | |||
| .removeData(moduleNamespace) | |||
| ; | |||
| } | |||
| }, | |||
| event: { | |||
| click: function(event) { | |||
| module.verbose('Determining if event occured on dimmer', event); | |||
| if( $dimmer.find(event.target).length === 0 || $(event.target).is(selector.content) ) { | |||
| module.hide(); | |||
| event.stopImmediatePropagation(); | |||
| } | |||
| } | |||
| }, | |||
| addContent: function(element) { | |||
| var | |||
| $content = $(element) | |||
| ; | |||
| module.debug('Add content to dimmer', $content); | |||
| if($content.parent()[0] !== $dimmer[0]) { | |||
| $content.detach().appendTo($dimmer); | |||
| } | |||
| }, | |||
| create: function() { | |||
| var | |||
| $element = $( settings.template.dimmer() ) | |||
| ; | |||
| if(settings.variation) { | |||
| module.debug('Creating dimmer with variation', settings.variation); | |||
| $element.addClass(settings.variation); | |||
| } | |||
| if(settings.dimmerName) { | |||
| module.debug('Creating named dimmer', settings.dimmerName); | |||
| $element.addClass(settings.dimmerName); | |||
| } | |||
| $element | |||
| .appendTo($dimmable) | |||
| ; | |||
| return $element; | |||
| }, | |||
| show: function(callback) { | |||
| callback = $.isFunction(callback) | |||
| ? callback | |||
| : function(){} | |||
| ; | |||
| module.debug('Showing dimmer', $dimmer, settings); | |||
| if( (!module.is.dimmed() || module.is.animating()) && module.is.enabled() ) { | |||
| module.animate.show(callback); | |||
| settings.onShow.call(element); | |||
| settings.onChange.call(element); | |||
| } | |||
| else { | |||
| module.debug('Dimmer is already shown or disabled'); | |||
| } | |||
| }, | |||
| hide: function(callback) { | |||
| callback = $.isFunction(callback) | |||
| ? callback | |||
| : function(){} | |||
| ; | |||
| if( module.is.dimmed() || module.is.animating() ) { | |||
| module.debug('Hiding dimmer', $dimmer); | |||
| module.animate.hide(callback); | |||
| settings.onHide.call(element); | |||
| settings.onChange.call(element); | |||
| } | |||
| else { | |||
| module.debug('Dimmer is not visible'); | |||
| } | |||
| }, | |||
| toggle: function() { | |||
| module.verbose('Toggling dimmer visibility', $dimmer); | |||
| if( !module.is.dimmed() ) { | |||
| module.show(); | |||
| } | |||
| else { | |||
| module.hide(); | |||
| } | |||
| }, | |||
| animate: { | |||
| show: function(callback) { | |||
| callback = $.isFunction(callback) | |||
| ? callback | |||
| : function(){} | |||
| ; | |||
| if(settings.useCSS && $.fn.transition !== undefined && $dimmer.transition('is supported')) { | |||
| if(settings.opacity !== 'auto') { | |||
| module.set.opacity(); | |||
| } | |||
| $dimmer | |||
| .transition({ | |||
| animation : settings.transition + ' in', | |||
| queue : false, | |||
| duration : module.get.duration(), | |||
| useFailSafe : true, | |||
| onStart : function() { | |||
| module.set.dimmed(); | |||
| }, | |||
| onComplete : function() { | |||
| module.set.active(); | |||
| callback(); | |||
| } | |||
| }) | |||
| ; | |||
| } | |||
| else { | |||
| module.verbose('Showing dimmer animation with javascript'); | |||
| module.set.dimmed(); | |||
| if(settings.opacity == 'auto') { | |||
| settings.opacity = 0.8; | |||
| } | |||
| $dimmer | |||
| .stop() | |||
| .css({ | |||
| opacity : 0, | |||
| width : '100%', | |||
| height : '100%' | |||
| }) | |||
| .fadeTo(module.get.duration(), settings.opacity, function() { | |||
| $dimmer.removeAttr('style'); | |||
| module.set.active(); | |||
| callback(); | |||
| }) | |||
| ; | |||
| } | |||
| }, | |||
| hide: function(callback) { | |||
| callback = $.isFunction(callback) | |||
| ? callback | |||
| : function(){} | |||
| ; | |||
| if(settings.useCSS && $.fn.transition !== undefined && $dimmer.transition('is supported')) { | |||
| module.verbose('Hiding dimmer with css'); | |||
| $dimmer | |||
| .transition({ | |||
| animation : settings.transition + ' out', | |||
| queue : false, | |||
| duration : module.get.duration(), | |||
| useFailSafe : true, | |||
| onStart : function() { | |||
| module.remove.dimmed(); | |||
| }, | |||
| onComplete : function() { | |||
| module.remove.active(); | |||
| callback(); | |||
| } | |||
| }) | |||
| ; | |||
| } | |||
| else { | |||
| module.verbose('Hiding dimmer with javascript'); | |||
| module.remove.dimmed(); | |||
| $dimmer | |||
| .stop() | |||
| .fadeOut(module.get.duration(), function() { | |||
| module.remove.active(); | |||
| $dimmer.removeAttr('style'); | |||
| callback(); | |||
| }) | |||
| ; | |||
| } | |||
| } | |||
| }, | |||
| get: { | |||
| dimmer: function() { | |||
| return $dimmer; | |||
| }, | |||
| duration: function() { | |||
| if(typeof settings.duration == 'object') { | |||
| if( module.is.active() ) { | |||
| return settings.duration.hide; | |||
| } | |||
| else { | |||
| return settings.duration.show; | |||
| } | |||
| } | |||
| return settings.duration; | |||
| } | |||
| }, | |||
| has: { | |||
| dimmer: function() { | |||
| if(settings.dimmerName) { | |||
| return ($module.find(selector.dimmer).filter('.' + settings.dimmerName).length > 0); | |||
| } | |||
| else { | |||
| return ( $module.find(selector.dimmer).length > 0 ); | |||
| } | |||
| } | |||
| }, | |||
| is: { | |||
| active: function() { | |||
| return $dimmer.hasClass(className.active); | |||
| }, | |||
| animating: function() { | |||
| return ( $dimmer.is(':animated') || $dimmer.hasClass(className.animating) ); | |||
| }, | |||
| closable: function() { | |||
| if(settings.closable == 'auto') { | |||
| if(settings.on == 'hover') { | |||
| return false; | |||
| } | |||
| return true; | |||
| } | |||
| return settings.closable; | |||
| }, | |||
| dimmer: function() { | |||
| return $module.hasClass(className.dimmer); | |||
| }, | |||
| dimmable: function() { | |||
| return $module.hasClass(className.dimmable); | |||
| }, | |||
| dimmed: function() { | |||
| return $dimmable.hasClass(className.dimmed); | |||
| }, | |||
| disabled: function() { | |||
| return $dimmable.hasClass(className.disabled); | |||
| }, | |||
| enabled: function() { | |||
| return !module.is.disabled(); | |||
| }, | |||
| page: function () { | |||
| return $dimmable.is('body'); | |||
| }, | |||
| pageDimmer: function() { | |||
| return $dimmer.hasClass(className.pageDimmer); | |||
| } | |||
| }, | |||
| can: { | |||
| show: function() { | |||
| return !$dimmer.hasClass(className.disabled); | |||
| } | |||
| }, | |||
| set: { | |||
| opacity: function(opacity) { | |||
| var | |||
| color = $dimmer.css('background-color'), | |||
| colorArray = color.split(','), | |||
| isRGBA = (colorArray && colorArray.length == 4) | |||
| ; | |||
| opacity = settings.opacity === 0 ? 0 : settings.opacity || opacity; | |||
| if(isRGBA) { | |||
| colorArray[3] = opacity + ')'; | |||
| color = colorArray.join(','); | |||
| } | |||
| else { | |||
| color = 'rgba(0, 0, 0, ' + opacity + ')'; | |||
| } | |||
| module.debug('Setting opacity to', opacity); | |||
| $dimmer.css('background-color', color); | |||
| }, | |||
| active: function() { | |||
| $dimmer.addClass(className.active); | |||
| }, | |||
| dimmable: function() { | |||
| $dimmable.addClass(className.dimmable); | |||
| }, | |||
| dimmed: function() { | |||
| $dimmable.addClass(className.dimmed); | |||
| }, | |||
| pageDimmer: function() { | |||
| $dimmer.addClass(className.pageDimmer); | |||
| }, | |||
| disabled: function() { | |||
| $dimmer.addClass(className.disabled); | |||
| }, | |||
| variation: function(variation) { | |||
| variation = variation || settings.variation; | |||
| if(variation) { | |||
| $dimmer.addClass(variation); | |||
| } | |||
| } | |||
| }, | |||
| remove: { | |||
| active: function() { | |||
| $dimmer | |||
| .removeClass(className.active) | |||
| ; | |||
| }, | |||
| dimmed: function() { | |||
| $dimmable.removeClass(className.dimmed); | |||
| }, | |||
| disabled: function() { | |||
| $dimmer.removeClass(className.disabled); | |||
| }, | |||
| variation: function(variation) { | |||
| variation = variation || settings.variation; | |||
| if(variation) { | |||
| $dimmer.removeClass(variation); | |||
| } | |||
| } | |||
| }, | |||
| setting: function(name, value) { | |||
| module.debug('Changing setting', name, value); | |||
| if( $.isPlainObject(name) ) { | |||
| $.extend(true, settings, name); | |||
| } | |||
| else if(value !== undefined) { | |||
| settings[name] = value; | |||
| } | |||
| else { | |||
| return settings[name]; | |||
| } | |||
| }, | |||
| internal: function(name, value) { | |||
| if( $.isPlainObject(name) ) { | |||
| $.extend(true, module, name); | |||
| } | |||
| else if(value !== undefined) { | |||
| module[name] = value; | |||
| } | |||
| else { | |||
| return module[name]; | |||
| } | |||
| }, | |||
| debug: function() { | |||
| if(settings.debug) { | |||
| if(settings.performance) { | |||
| module.performance.log(arguments); | |||
| } | |||
| else { | |||
| module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':'); | |||
| module.debug.apply(console, arguments); | |||
| } | |||
| } | |||
| }, | |||
| verbose: function() { | |||
| if(settings.verbose && settings.debug) { | |||
| if(settings.performance) { | |||
| module.performance.log(arguments); | |||
| } | |||
| else { | |||
| module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':'); | |||
| module.verbose.apply(console, arguments); | |||
| } | |||
| } | |||
| }, | |||
| error: function() { | |||
| module.error = Function.prototype.bind.call(console.error, console, settings.name + ':'); | |||
| module.error.apply(console, arguments); | |||
| }, | |||
| performance: { | |||
| log: function(message) { | |||
| var | |||
| currentTime, | |||
| executionTime, | |||
| previousTime | |||
| ; | |||
| if(settings.performance) { | |||
| currentTime = new Date().getTime(); | |||
| previousTime = time || currentTime; | |||
| executionTime = currentTime - previousTime; | |||
| time = currentTime; | |||
| performance.push({ | |||
| 'Name' : message[0], | |||
| 'Arguments' : [].slice.call(message, 1) || '', | |||
| 'Element' : element, | |||
| 'Execution Time' : executionTime | |||
| }); | |||
| } | |||
| clearTimeout(module.performance.timer); | |||
| module.performance.timer = setTimeout(module.performance.display, 500); | |||
| }, | |||
| display: function() { | |||
| var | |||
| title = settings.name + ':', | |||
| totalTime = 0 | |||
| ; | |||
| time = false; | |||
| clearTimeout(module.performance.timer); | |||
| $.each(performance, function(index, data) { | |||
| totalTime += data['Execution Time']; | |||
| }); | |||
| title += ' ' + totalTime + 'ms'; | |||
| if(moduleSelector) { | |||
| title += ' \'' + moduleSelector + '\''; | |||
| } | |||
| if($allModules.length > 1) { | |||
| title += ' ' + '(' + $allModules.length + ')'; | |||
| } | |||
| if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) { | |||
| console.groupCollapsed(title); | |||
| if(console.table) { | |||
| console.table(performance); | |||
| } | |||
| else { | |||
| $.each(performance, function(index, data) { | |||
| console.log(data['Name'] + ': ' + data['Execution Time']+'ms'); | |||
| }); | |||
| } | |||
| console.groupEnd(); | |||
| } | |||
| performance = []; | |||
| } | |||
| }, | |||
| invoke: function(query, passedArguments, context) { | |||
| var | |||
| object = instance, | |||
| maxDepth, | |||
| found, | |||
| response | |||
| ; | |||
| passedArguments = passedArguments || queryArguments; | |||
| context = element || context; | |||
| if(typeof query == 'string' && object !== undefined) { | |||
| query = query.split(/[\. ]/); | |||
| maxDepth = query.length - 1; | |||
| $.each(query, function(depth, value) { | |||
| var camelCaseValue = (depth != maxDepth) | |||
| ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1) | |||
| : query | |||
| ; | |||
| if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) { | |||
| object = object[camelCaseValue]; | |||
| } | |||
| else if( object[camelCaseValue] !== undefined ) { | |||
| found = object[camelCaseValue]; | |||
| return false; | |||
| } | |||
| else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) { | |||
| object = object[value]; | |||
| } | |||
| else if( object[value] !== undefined ) { | |||
| found = object[value]; | |||
| return false; | |||
| } | |||
| else { | |||
| module.error(error.method, query); | |||
| return false; | |||
| } | |||
| }); | |||
| } | |||
| if ( $.isFunction( found ) ) { | |||
| response = found.apply(context, passedArguments); | |||
| } | |||
| else if(found !== undefined) { | |||
| response = found; | |||
| } | |||
| if($.isArray(returnedValue)) { | |||
| returnedValue.push(response); | |||
| } | |||
| else if(returnedValue !== undefined) { | |||
| returnedValue = [returnedValue, response]; | |||
| } | |||
| else if(response !== undefined) { | |||
| returnedValue = response; | |||
| } | |||
| return found; | |||
| } | |||
| }; | |||
| module.preinitialize(); | |||
| if(methodInvoked) { | |||
| if(instance === undefined) { | |||
| module.initialize(); | |||
| } | |||
| module.invoke(query); | |||
| } | |||
| else { | |||
| if(instance !== undefined) { | |||
| instance.invoke('destroy'); | |||
| } | |||
| module.initialize(); | |||
| } | |||
| }) | |||
| ; | |||
| return (returnedValue !== undefined) | |||
| ? returnedValue | |||
| : this | |||
| ; | |||
| }; | |||
| $.fn.dimmer.settings = { | |||
| name : 'Dimmer', | |||
| namespace : 'dimmer', | |||
| debug : false, | |||
| verbose : false, | |||
| performance : true, | |||
| // name to distinguish between multiple dimmers in context | |||
| dimmerName : false, | |||
| // whether to add a variation type | |||
| variation : false, | |||
| // whether to bind close events | |||
| closable : 'auto', | |||
| // whether to use css animations | |||
| useCSS : true, | |||
| // css animation to use | |||
| transition : 'fade', | |||
| // event to bind to | |||
| on : false, | |||
| // overriding opacity value | |||
| opacity : 'auto', | |||
| // transition durations | |||
| duration : { | |||
| show : 500, | |||
| hide : 500 | |||
| }, | |||
| onChange : function(){}, | |||
| onShow : function(){}, | |||
| onHide : function(){}, | |||
| error : { | |||
| method : 'The method you called is not defined.' | |||
| }, | |||
| className : { | |||
| active : 'active', | |||
| animating : 'animating', | |||
| dimmable : 'dimmable', | |||
| dimmed : 'dimmed', | |||
| dimmer : 'dimmer', | |||
| disabled : 'disabled', | |||
| hide : 'hide', | |||
| pageDimmer : 'page', | |||
| show : 'show' | |||
| }, | |||
| selector: { | |||
| dimmer : '> .ui.dimmer', | |||
| content : '.ui.dimmer > .content, .ui.dimmer > .content > .center' | |||
| }, | |||
| template: { | |||
| dimmer: function() { | |||
| return $('<div />').attr('class', 'ui dimmer'); | |||
| } | |||
| } | |||
| }; | |||
| })( jQuery, window, document ); | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Dimmer | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */.dimmable{position:relative}.ui.dimmer{display:none;position:absolute;top:0!important;left:0!important;width:100%;height:100%;text-align:center;vertical-align:middle;background-color:rgba(0,0,0,.85);opacity:0;line-height:1;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-transition:background-color .5s linear;transition:background-color .5s linear;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;will-change:opacity;z-index:1000}.ui.dimmer>.content{width:100%;height:100%;display:table;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ui.dimmer>.content>*{display:table-cell;vertical-align:middle;color:#FFF}.ui.segment>.ui.dimmer{border-radius:inherit!important}.animating.dimmable:not(body),.dimmed.dimmable:not(body){overflow:hidden}.dimmed.dimmable>.ui.animating.dimmer,.dimmed.dimmable>.ui.visible.dimmer,.ui.active.dimmer{display:block;opacity:1}.ui.disabled.dimmer{width:0!important;height:0!important}.ui.page.dimmer{position:fixed;-webkit-transform-style:'';transform-style:'';-webkit-perspective:2000px;perspective:2000px;-webkit-transform-origin:center center;transform-origin:center center}body.animating.in.dimmable,body.dimmed.dimmable{overflow:hidden}body.dimmable>.dimmer{position:fixed}.blurring.dimmable>:not(.dimmer){-webkit-filter:blur(0) grayscale(0);filter:blur(0) grayscale(0);-webkit-transition:.8s -webkit-filter ease,.8s filter ease;transition:.8s filter ease}.blurring.dimmed.dimmable>:not(.dimmer){-webkit-filter:blur(5px) grayscale(.7);filter:blur(5px) grayscale(.7)}.blurring.dimmable>.dimmer{background-color:rgba(0,0,0,.6)}.blurring.dimmable>.inverted.dimmer{background-color:rgba(255,255,255,.6)}.ui.dimmer>.top.aligned.content>*{vertical-align:top}.ui.dimmer>.bottom.aligned.content>*{vertical-align:bottom}.ui.inverted.dimmer{background-color:rgba(255,255,255,.85)}.ui.inverted.dimmer>.content>*{color:#FFF}.ui.simple.dimmer{display:block;overflow:hidden;opacity:1;width:0;height:0%;z-index:-100;background-color:rgba(0,0,0,0)}.dimmed.dimmable>.ui.simple.dimmer{overflow:visible;opacity:1;width:100%;height:100%;background-color:rgba(0,0,0,.85);z-index:1}.ui.simple.inverted.dimmer{background-color:rgba(255,255,255,0)}.dimmed.dimmable>.ui.simple.inverted.dimmer{background-color:rgba(255,255,255,.85)} | |||
| @ -0,0 +1,244 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Divider | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Divider | |||
| *******************************/ | |||
| .ui.divider { | |||
| margin: 1rem 0rem; | |||
| line-height: 1; | |||
| height: 0em; | |||
| font-weight: bold; | |||
| text-transform: uppercase; | |||
| letter-spacing: 0.05em; | |||
| color: rgba(0, 0, 0, 0.85); | |||
| -webkit-user-select: none; | |||
| -moz-user-select: none; | |||
| -ms-user-select: none; | |||
| user-select: none; | |||
| -webkit-tap-highlight-color: rgba(0, 0, 0, 0); | |||
| } | |||
| /*-------------- | |||
| Basic | |||
| ---------------*/ | |||
| .ui.divider:not(.vertical):not(.horizontal) { | |||
| border-top: 1px solid rgba(0, 0, 0, 0.13); | |||
| border-bottom: 1px solid rgba(255, 255, 255, 0.1); | |||
| } | |||
| /*-------------- | |||
| Coupling | |||
| ---------------*/ | |||
| /* Allow divider between each column row */ | |||
| .ui.grid > .column + .divider, | |||
| .ui.grid > .row > .column + .divider { | |||
| left: auto; | |||
| } | |||
| /*-------------- | |||
| Horizontal | |||
| ---------------*/ | |||
| .ui.horizontal.divider { | |||
| display: table; | |||
| white-space: nowrap; | |||
| height: auto; | |||
| margin: ''; | |||
| overflow: hidden; | |||
| line-height: 1; | |||
| text-align: center; | |||
| } | |||
| .ui.horizontal.divider:before, | |||
| .ui.horizontal.divider:after { | |||
| content: ''; | |||
| display: table-cell; | |||
| position: relative; | |||
| top: 50%; | |||
| width: 50%; | |||
| background-repeat: no-repeat; | |||
| } | |||
| .ui.horizontal.divider:before { | |||
| background-position: right 1em top 50%; | |||
| } | |||
| .ui.horizontal.divider:after { | |||
| background-position: left 1em top 50%; | |||
| } | |||
| /*-------------- | |||
| Vertical | |||
| ---------------*/ | |||
| .ui.vertical.divider { | |||
| position: absolute; | |||
| z-index: 2; | |||
| top: 50%; | |||
| left: 50%; | |||
| margin: 0rem; | |||
| padding: 0em; | |||
| width: auto; | |||
| height: 50%; | |||
| line-height: 0em; | |||
| text-align: center; | |||
| -webkit-transform: translateX(-50%); | |||
| transform: translateX(-50%); | |||
| } | |||
| .ui.vertical.divider:before, | |||
| .ui.vertical.divider:after { | |||
| position: absolute; | |||
| left: 50%; | |||
| content: ''; | |||
| z-index: 3; | |||
| border-left: 1px solid rgba(0, 0, 0, 0.13); | |||
| border-right: 1px solid rgba(255, 255, 255, 0.1); | |||
| width: 0%; | |||
| height: calc(100% - 1rem ); | |||
| } | |||
| .ui.vertical.divider:before { | |||
| top: -100%; | |||
| } | |||
| .ui.vertical.divider:after { | |||
| top: auto; | |||
| bottom: 0px; | |||
| } | |||
| /* Inside grid */ | |||
| @media only screen and (max-width: 687px) { | |||
| .ui.stackable.grid .ui.vertical.divider, | |||
| .ui.grid .stackable.row .ui.vertical.divider { | |||
| display: table; | |||
| white-space: nowrap; | |||
| height: auto; | |||
| margin: ''; | |||
| overflow: hidden; | |||
| line-height: 1; | |||
| text-align: center; | |||
| position: static; | |||
| top: 0; | |||
| left: 0; | |||
| -webkit-transform: none; | |||
| transform: none; | |||
| } | |||
| .ui.stackable.grid .ui.vertical.divider:before, | |||
| .ui.grid .stackable.row .ui.vertical.divider:before, | |||
| .ui.stackable.grid .ui.vertical.divider:after, | |||
| .ui.grid .stackable.row .ui.vertical.divider:after { | |||
| position: static; | |||
| left: 0; | |||
| border-left: none; | |||
| border-right: none; | |||
| content: ''; | |||
| display: table-cell; | |||
| position: relative; | |||
| top: 50%; | |||
| width: 50%; | |||
| background-repeat: no-repeat; | |||
| } | |||
| .ui.stackable.grid .ui.vertical.divider:before, | |||
| .ui.grid .stackable.row .ui.vertical.divider:before { | |||
| background-position: right 1em top 50%; | |||
| } | |||
| .ui.stackable.grid .ui.vertical.divider:after, | |||
| .ui.grid .stackable.row .ui.vertical.divider:after { | |||
| background-position: left 1em top 50%; | |||
| } | |||
| } | |||
| /*-------------- | |||
| Icon | |||
| ---------------*/ | |||
| .ui.divider > .icon { | |||
| margin: 0rem; | |||
| font-size: 1rem; | |||
| height: 1em; | |||
| vertical-align: middle; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*-------------- | |||
| Hidden | |||
| ---------------*/ | |||
| .ui.hidden.divider { | |||
| border-color: transparent !important; | |||
| } | |||
| .ui.hidden.divider:before, | |||
| .ui.hidden.divider:after { | |||
| display: none; | |||
| } | |||
| /*-------------- | |||
| Inverted | |||
| ---------------*/ | |||
| .ui.divider.inverted, | |||
| .ui.vertical.inverted.divider, | |||
| .ui.horizontal.inverted.divider { | |||
| color: #FFFFFF; | |||
| } | |||
| .ui.divider.inverted, | |||
| .ui.divider.inverted:after, | |||
| .ui.divider.inverted:before { | |||
| border-top-color: rgba(0, 0, 0, 0.13) !important; | |||
| border-left-color: rgba(0, 0, 0, 0.13) !important; | |||
| border-bottom-color: rgba(255, 255, 255, 0.15) !important; | |||
| border-right-color: rgba(255, 255, 255, 0.15) !important; | |||
| } | |||
| /*-------------- | |||
| Fitted | |||
| ---------------*/ | |||
| .ui.fitted.divider { | |||
| margin: 0em; | |||
| } | |||
| /*-------------- | |||
| Clearing | |||
| ---------------*/ | |||
| .ui.clearing.divider { | |||
| clear: both; | |||
| } | |||
| /*-------------- | |||
| Section | |||
| ---------------*/ | |||
| .ui.section.divider { | |||
| margin-top: 2rem; | |||
| margin-bottom: 2rem; | |||
| } | |||
| /*-------------- | |||
| Sizes | |||
| ---------------*/ | |||
| .ui.divider { | |||
| font-size: 1rem; | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Divider | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */.ui.divider{margin:1rem 0;line-height:1;height:0;font-weight:700;text-transform:uppercase;letter-spacing:.05em;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;font-size:1rem}.ui.divider:not(.vertical):not(.horizontal){border-top:1px solid rgba(0,0,0,.13);border-bottom:1px solid rgba(255,255,255,.1)}.ui.grid>.column+.divider,.ui.grid>.row>.column+.divider{left:auto}.ui.horizontal.divider{display:table;white-space:nowrap;height:auto;margin:'';overflow:hidden;line-height:1;text-align:center}.ui.horizontal.divider:after,.ui.horizontal.divider:before{content:'';display:table-cell;position:relative;top:50%;width:50%;background-repeat:no-repeat}.ui.horizontal.divider:before{background-position:right 1em top 50%}.ui.horizontal.divider:after{background-position:left 1em top 50%}.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%);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,.13);border-right:1px solid rgba(255,255,255,.1);width:0;height:calc(100% - 1rem)}.ui.vertical.divider:before{top:-100%}.ui.vertical.divider:after{top:auto;bottom:0}@media only screen and (max-width:687px){.ui.grid .stackable.row .ui.vertical.divider,.ui.stackable.grid .ui.vertical.divider{display:table;white-space:nowrap;height:auto;margin:'';overflow:hidden;line-height:1;text-align:center;position:static;top:0;left:0;-webkit-transform:none;transform:none}.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{left:0;border-left:none;border-right:none;content:'';display:table-cell;position:relative;top:50%;width:50%;background-repeat:no-repeat}.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:before{background-position:right 1em top 50%}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:after{background-position:left 1em top 50%}}.ui.divider>.icon{margin:0;font-size:1rem;height:1em;vertical-align:middle}.ui.hidden.divider{border-color:transparent!important}.ui.hidden.divider:after,.ui.hidden.divider:before{display:none}.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,.13)!important;border-left-color:rgba(0,0,0,.13)!important;border-bottom-color:rgba(255,255,255,.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} | |||
| @ -0,0 +1,161 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Video | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Types | |||
| *******************************/ | |||
| .ui.embed { | |||
| position: relative; | |||
| max-width: 100%; | |||
| height: 0px; | |||
| overflow: hidden; | |||
| background: #DCDDDE; | |||
| padding-bottom: 56.25%; | |||
| } | |||
| /*----------------- | |||
| Embedded Content | |||
| ------------------*/ | |||
| .ui.embed iframe, | |||
| .ui.embed embed, | |||
| .ui.embed object { | |||
| position: absolute; | |||
| border: none; | |||
| width: 100%; | |||
| height: 100%; | |||
| top: 0px; | |||
| left: 0px; | |||
| margin: 0em; | |||
| padding: 0em; | |||
| } | |||
| /*----------------- | |||
| Embed | |||
| ------------------*/ | |||
| .ui.embed > .embed { | |||
| display: none; | |||
| } | |||
| /*-------------- | |||
| Placeholder | |||
| ---------------*/ | |||
| .ui.embed > .placeholder { | |||
| position: absolute; | |||
| cursor: pointer; | |||
| top: 0px; | |||
| left: 0px; | |||
| display: block; | |||
| width: 100%; | |||
| height: 100%; | |||
| background-color: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); | |||
| } | |||
| /*-------------- | |||
| Icon | |||
| ---------------*/ | |||
| .ui.embed > .icon { | |||
| cursor: pointer; | |||
| position: absolute; | |||
| top: 0px; | |||
| left: 0px; | |||
| width: 100%; | |||
| height: 100%; | |||
| z-index: 2; | |||
| } | |||
| .ui.embed > .icon:after { | |||
| position: absolute; | |||
| top: 0%; | |||
| left: 0%; | |||
| width: 100%; | |||
| height: 100%; | |||
| z-index: 3; | |||
| content: ''; | |||
| background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); | |||
| background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); | |||
| opacity: 0.5; | |||
| -webkit-transition: opacity 0.5s ease; | |||
| transition: opacity 0.5s ease; | |||
| } | |||
| .ui.embed > .icon:before { | |||
| position: absolute; | |||
| top: 50%; | |||
| left: 50%; | |||
| z-index: 4; | |||
| -webkit-transform: translateX(-50%) translateY(-50%); | |||
| transform: translateX(-50%) translateY(-50%); | |||
| color: #FFFFFF; | |||
| font-size: 6rem; | |||
| text-shadow: 0px 2px 10px rgba(34, 36, 38, 0.2); | |||
| -webkit-transition: opacity 0.5s ease, color 0.5s ease; | |||
| transition: opacity 0.5s ease, color 0.5s ease; | |||
| z-index: 10; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| /*-------------- | |||
| Hover | |||
| ---------------*/ | |||
| .ui.embed .icon:hover:after { | |||
| background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); | |||
| background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); | |||
| opacity: 1; | |||
| } | |||
| .ui.embed .icon:hover:before { | |||
| color: #FFFFFF; | |||
| } | |||
| /*-------------- | |||
| Active | |||
| ---------------*/ | |||
| .ui.active.embed > .icon, | |||
| .ui.active.embed > .placeholder { | |||
| display: none; | |||
| } | |||
| .ui.active.embed > .embed { | |||
| display: block; | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| .ui.square.embed { | |||
| padding-bottom: 100%; | |||
| } | |||
| .ui[class*="4:3"].embed { | |||
| padding-bottom: 75%; | |||
| } | |||
| .ui[class*="16:9"].embed { | |||
| padding-bottom: 56.25%; | |||
| } | |||
| .ui[class*="21:9"].embed { | |||
| padding-bottom: 42.85714286%; | |||
| } | |||
| @ -0,0 +1,659 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Video | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| ;(function ($, window, document, undefined) { | |||
| "use strict"; | |||
| $.fn.embed = function(parameters) { | |||
| var | |||
| $allModules = $(this), | |||
| moduleSelector = $allModules.selector || '', | |||
| time = new Date().getTime(), | |||
| performance = [], | |||
| query = arguments[0], | |||
| methodInvoked = (typeof query == 'string'), | |||
| queryArguments = [].slice.call(arguments, 1), | |||
| returnedValue | |||
| ; | |||
| $allModules | |||
| .each(function() { | |||
| var | |||
| settings = ( $.isPlainObject(parameters) ) | |||
| ? $.extend(true, {}, $.fn.embed.settings, parameters) | |||
| : $.extend({}, $.fn.embed.settings), | |||
| selector = settings.selector, | |||
| className = settings.className, | |||
| sources = settings.sources, | |||
| error = settings.error, | |||
| metadata = settings.metadata, | |||
| namespace = settings.namespace, | |||
| templates = settings.templates, | |||
| eventNamespace = '.' + namespace, | |||
| moduleNamespace = 'module-' + namespace, | |||
| $window = $(window), | |||
| $module = $(this), | |||
| $placeholder = $module.find(selector.placeholder), | |||
| $icon = $module.find(selector.icon), | |||
| $embed = $module.find(selector.embed), | |||
| element = this, | |||
| instance = $module.data(moduleNamespace), | |||
| module | |||
| ; | |||
| module = { | |||
| initialize: function() { | |||
| module.debug('Initializing embed'); | |||
| module.determine.autoplay(); | |||
| module.create(); | |||
| module.bind.events(); | |||
| module.instantiate(); | |||
| }, | |||
| instantiate: function() { | |||
| module.verbose('Storing instance of module', module); | |||
| instance = module; | |||
| $module | |||
| .data(moduleNamespace, module) | |||
| ; | |||
| }, | |||
| destroy: function() { | |||
| module.verbose('Destroying previous instance of embed'); | |||
| module.reset(); | |||
| $module | |||
| .removeData(moduleNamespace) | |||
| .off(eventNamespace) | |||
| ; | |||
| }, | |||
| refresh: function() { | |||
| module.verbose('Refreshing selector cache'); | |||
| $placeholder = $module.find(selector.placeholder); | |||
| $icon = $module.find(selector.icon); | |||
| $embed = $module.find(selector.embed); | |||
| }, | |||
| bind: { | |||
| events: function() { | |||
| if( module.has.placeholder() ) { | |||
| module.debug('Adding placeholder events'); | |||
| $module | |||
| .on('click' + eventNamespace, selector.placeholder, module.createAndShow) | |||
| .on('click' + eventNamespace, selector.icon, module.createAndShow) | |||
| ; | |||
| } | |||
| } | |||
| }, | |||
| create: function() { | |||
| var | |||
| placeholder = module.get.placeholder() | |||
| ; | |||
| if(placeholder) { | |||
| module.createPlaceholder(); | |||
| } | |||
| else { | |||
| module.createAndShow(); | |||
| } | |||
| }, | |||
| createPlaceholder: function(placeholder) { | |||
| var | |||
| icon = module.get.icon(), | |||
| url = module.get.url(), | |||
| embed = module.generate.embed(url) | |||
| ; | |||
| placeholder = placeholder || module.get.placeholder(); | |||
| $module.html( templates.placeholder(placeholder, icon) ); | |||
| module.debug('Creating placeholder for embed', placeholder, icon); | |||
| }, | |||
| createEmbed: function(url) { | |||
| module.refresh(); | |||
| url = url || module.get.url(); | |||
| $embed = $('<div/>') | |||
| .addClass(className.embed) | |||
| .html( module.generate.embed(url) ) | |||
| .appendTo($module) | |||
| ; | |||
| settings.onCreate.call(element, url); | |||
| module.debug('Creating embed object', $embed); | |||
| }, | |||
| createAndShow: function() { | |||
| module.createEmbed(); | |||
| module.show(); | |||
| }, | |||
| // sets new embed | |||
| change: function(source, id, url) { | |||
| module.debug('Changing video to ', source, id, url); | |||
| $module | |||
| .data(metadata.source, source) | |||
| .data(metadata.id, id) | |||
| .data(metadata.url, url) | |||
| ; | |||
| module.create(); | |||
| }, | |||
| // clears embed | |||
| reset: function() { | |||
| module.debug('Clearing embed and showing placeholder'); | |||
| module.remove.active(); | |||
| module.remove.embed(); | |||
| module.showPlaceholder(); | |||
| settings.onReset.call(element); | |||
| }, | |||
| // shows current embed | |||
| show: function() { | |||
| module.debug('Showing embed'); | |||
| module.set.active(); | |||
| settings.onDisplay.call(element); | |||
| }, | |||
| hide: function() { | |||
| module.debug('Hiding embed'); | |||
| module.showPlaceholder(); | |||
| }, | |||
| showPlaceholder: function() { | |||
| module.debug('Showing placeholder image'); | |||
| module.remove.active(); | |||
| settings.onPlaceholderDisplay.call(element); | |||
| }, | |||
| get: { | |||
| id: function() { | |||
| return settings.id || $module.data(metadata.id); | |||
| }, | |||
| placeholder: function() { | |||
| return settings.placeholder || $module.data(metadata.placeholder); | |||
| }, | |||
| icon: function() { | |||
| return (settings.icon) | |||
| ? settings.icon | |||
| : ($module.data(metadata.icon) !== undefined) | |||
| ? $module.data(metadata.icon) | |||
| : module.determine.icon() | |||
| ; | |||
| }, | |||
| source: function(url) { | |||
| return (settings.source) | |||
| ? settings.source | |||
| : ($module.data(metadata.source) !== undefined) | |||
| ? $module.data(metadata.source) | |||
| : module.determine.source() | |||
| ; | |||
| }, | |||
| type: function() { | |||
| var source = module.get.source(); | |||
| return (sources[source] !== undefined) | |||
| ? sources[source].type | |||
| : false | |||
| ; | |||
| }, | |||
| url: function() { | |||
| return (settings.url) | |||
| ? settings.url | |||
| : ($module.data(metadata.url) !== undefined) | |||
| ? $module.data(metadata.url) | |||
| : module.determine.url() | |||
| ; | |||
| } | |||
| }, | |||
| determine: { | |||
| autoplay: function() { | |||
| if(module.should.autoplay()) { | |||
| settings.autoplay = true; | |||
| } | |||
| }, | |||
| source: function(url) { | |||
| var | |||
| matchedSource = false | |||
| ; | |||
| url = url || module.get.url(); | |||
| if(url) { | |||
| $.each(sources, function(name, source) { | |||
| if(url.search(source.domain) !== -1) { | |||
| matchedSource = name; | |||
| return false; | |||
| } | |||
| }); | |||
| } | |||
| return matchedSource; | |||
| }, | |||
| icon: function() { | |||
| var | |||
| source = module.get.source() | |||
| ; | |||
| return (sources[source] !== undefined) | |||
| ? sources[source].icon | |||
| : false | |||
| ; | |||
| }, | |||
| url: function() { | |||
| var | |||
| id = settings.id || $module.data(metadata.id), | |||
| source = settings.source || $module.data(metadata.source), | |||
| url | |||
| ; | |||
| url = (sources[source] !== undefined) | |||
| ? sources[source].url.replace('{id}', id) | |||
| : false | |||
| ; | |||
| if(url) { | |||
| $module.data(metadata.url, url); | |||
| } | |||
| return url; | |||
| } | |||
| }, | |||
| set: { | |||
| active: function() { | |||
| $module.addClass(className.active); | |||
| } | |||
| }, | |||
| remove: { | |||
| active: function() { | |||
| $module.removeClass(className.active); | |||
| }, | |||
| embed: function() { | |||
| $embed.empty(); | |||
| } | |||
| }, | |||
| encode: { | |||
| parameters: function(parameters) { | |||
| var | |||
| urlString = [], | |||
| index | |||
| ; | |||
| for (index in parameters) { | |||
| urlString.push( encodeURIComponent(index) + '=' + encodeURIComponent( parameters[index] ) ); | |||
| } | |||
| return urlString.join('&'); | |||
| } | |||
| }, | |||
| generate: { | |||
| embed: function(url) { | |||
| module.debug('Generating embed html'); | |||
| var | |||
| source = module.get.source(), | |||
| html, | |||
| parameters | |||
| ; | |||
| url = module.get.url(url); | |||
| if(url) { | |||
| parameters = module.generate.parameters(source); | |||
| html = templates.iframe(url, parameters); | |||
| } | |||
| else { | |||
| module.error(error.noURL, $module); | |||
| } | |||
| return html; | |||
| }, | |||
| parameters: function(source, extraParameters) { | |||
| var | |||
| parameters = (sources[source] && sources[source].parameters !== undefined) | |||
| ? sources[source].parameters(settings) | |||
| : {} | |||
| ; | |||
| extraParameters = extraParameters || settings.parameters; | |||
| if(extraParameters) { | |||
| parameters = $.extend({}, parameters, extraParameters); | |||
| } | |||
| parameters = settings.onEmbed(parameters); | |||
| return module.encode.parameters(parameters); | |||
| } | |||
| }, | |||
| has: { | |||
| placeholder: function() { | |||
| return settings.placeholder || $module.data(metadata.placeholder); | |||
| } | |||
| }, | |||
| should: { | |||
| autoplay: function() { | |||
| return (settings.autoplay === 'auto') | |||
| ? (settings.placeholder || $module.data(metadata.placeholder) !== undefined) | |||
| : settings.autoplay | |||
| ; | |||
| } | |||
| }, | |||
| is: { | |||
| video: function() { | |||
| return module.get.type() == 'video'; | |||
| } | |||
| }, | |||
| setting: function(name, value) { | |||
| module.debug('Changing setting', name, value); | |||
| if( $.isPlainObject(name) ) { | |||
| $.extend(true, settings, name); | |||
| } | |||
| else if(value !== undefined) { | |||
| settings[name] = value; | |||
| } | |||
| else { | |||
| return settings[name]; | |||
| } | |||
| }, | |||
| internal: function(name, value) { | |||
| if( $.isPlainObject(name) ) { | |||
| $.extend(true, module, name); | |||
| } | |||
| else if(value !== undefined) { | |||
| module[name] = value; | |||
| } | |||
| else { | |||
| return module[name]; | |||
| } | |||
| }, | |||
| debug: function() { | |||
| if(settings.debug) { | |||
| if(settings.performance) { | |||
| module.performance.log(arguments); | |||
| } | |||
| else { | |||
| module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':'); | |||
| module.debug.apply(console, arguments); | |||
| } | |||
| } | |||
| }, | |||
| verbose: function() { | |||
| if(settings.verbose && settings.debug) { | |||
| if(settings.performance) { | |||
| module.performance.log(arguments); | |||
| } | |||
| else { | |||
| module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':'); | |||
| module.verbose.apply(console, arguments); | |||
| } | |||
| } | |||
| }, | |||
| error: function() { | |||
| module.error = Function.prototype.bind.call(console.error, console, settings.name + ':'); | |||
| module.error.apply(console, arguments); | |||
| }, | |||
| performance: { | |||
| log: function(message) { | |||
| var | |||
| currentTime, | |||
| executionTime, | |||
| previousTime | |||
| ; | |||
| if(settings.performance) { | |||
| currentTime = new Date().getTime(); | |||
| previousTime = time || currentTime; | |||
| executionTime = currentTime - previousTime; | |||
| time = currentTime; | |||
| performance.push({ | |||
| 'Name' : message[0], | |||
| 'Arguments' : [].slice.call(message, 1) || '', | |||
| 'Element' : element, | |||
| 'Execution Time' : executionTime | |||
| }); | |||
| } | |||
| clearTimeout(module.performance.timer); | |||
| module.performance.timer = setTimeout(module.performance.display, 500); | |||
| }, | |||
| display: function() { | |||
| var | |||
| title = settings.name + ':', | |||
| totalTime = 0 | |||
| ; | |||
| time = false; | |||
| clearTimeout(module.performance.timer); | |||
| $.each(performance, function(index, data) { | |||
| totalTime += data['Execution Time']; | |||
| }); | |||
| title += ' ' + totalTime + 'ms'; | |||
| if(moduleSelector) { | |||
| title += ' \'' + moduleSelector + '\''; | |||
| } | |||
| if($allModules.length > 1) { | |||
| title += ' ' + '(' + $allModules.length + ')'; | |||
| } | |||
| if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) { | |||
| console.groupCollapsed(title); | |||
| if(console.table) { | |||
| console.table(performance); | |||
| } | |||
| else { | |||
| $.each(performance, function(index, data) { | |||
| console.log(data['Name'] + ': ' + data['Execution Time']+'ms'); | |||
| }); | |||
| } | |||
| console.groupEnd(); | |||
| } | |||
| performance = []; | |||
| } | |||
| }, | |||
| invoke: function(query, passedArguments, context) { | |||
| var | |||
| object = instance, | |||
| maxDepth, | |||
| found, | |||
| response | |||
| ; | |||
| passedArguments = passedArguments || queryArguments; | |||
| context = element || context; | |||
| if(typeof query == 'string' && object !== undefined) { | |||
| query = query.split(/[\. ]/); | |||
| maxDepth = query.length - 1; | |||
| $.each(query, function(depth, value) { | |||
| var camelCaseValue = (depth != maxDepth) | |||
| ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1) | |||
| : query | |||
| ; | |||
| if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) { | |||
| object = object[camelCaseValue]; | |||
| } | |||
| else if( object[camelCaseValue] !== undefined ) { | |||
| found = object[camelCaseValue]; | |||
| return false; | |||
| } | |||
| else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) { | |||
| object = object[value]; | |||
| } | |||
| else if( object[value] !== undefined ) { | |||
| found = object[value]; | |||
| return false; | |||
| } | |||
| else { | |||
| module.error(error.method, query); | |||
| return false; | |||
| } | |||
| }); | |||
| } | |||
| if ( $.isFunction( found ) ) { | |||
| response = found.apply(context, passedArguments); | |||
| } | |||
| else if(found !== undefined) { | |||
| response = found; | |||
| } | |||
| if($.isArray(returnedValue)) { | |||
| returnedValue.push(response); | |||
| } | |||
| else if(returnedValue !== undefined) { | |||
| returnedValue = [returnedValue, response]; | |||
| } | |||
| else if(response !== undefined) { | |||
| returnedValue = response; | |||
| } | |||
| return found; | |||
| } | |||
| }; | |||
| if(methodInvoked) { | |||
| if(instance === undefined) { | |||
| module.initialize(); | |||
| } | |||
| module.invoke(query); | |||
| } | |||
| else { | |||
| if(instance !== undefined) { | |||
| instance.invoke('destroy'); | |||
| } | |||
| module.initialize(); | |||
| } | |||
| }) | |||
| ; | |||
| return (returnedValue !== undefined) | |||
| ? returnedValue | |||
| : this | |||
| ; | |||
| }; | |||
| $.fn.embed.settings = { | |||
| name : 'Embed', | |||
| namespace : 'embed', | |||
| debug : false, | |||
| verbose : false, | |||
| performance : true, | |||
| icon : false, | |||
| source : false, | |||
| url : false, | |||
| id : false, | |||
| // standard video settings | |||
| autoplay : 'auto', | |||
| color : '#444444', | |||
| hd : true, | |||
| brandedUI : false, | |||
| // additional parameters to include with the embed | |||
| parameters: false, | |||
| onDisplay : function() {}, | |||
| onPlaceholderDisplay : function() {}, | |||
| onReset : function() {}, | |||
| onCreate : function(url) {}, | |||
| onEmbed : function(parameters) { | |||
| return parameters; | |||
| }, | |||
| metadata : { | |||
| id : 'id', | |||
| icon : 'icon', | |||
| placeholder : 'placeholder', | |||
| source : 'source', | |||
| url : 'url' | |||
| }, | |||
| error : { | |||
| noURL : 'No URL specified', | |||
| method : 'The method you called is not defined' | |||
| }, | |||
| className : { | |||
| active : 'active', | |||
| embed : 'embed' | |||
| }, | |||
| selector : { | |||
| embed : '.embed', | |||
| placeholder : '.placeholder', | |||
| icon : '.icon' | |||
| }, | |||
| sources: { | |||
| youtube: { | |||
| name : 'youtube', | |||
| type : 'video', | |||
| icon : 'video play', | |||
| domain : 'youtube.com', | |||
| url : '//www.youtube.com/embed/{id}', | |||
| parameters: function(settings) { | |||
| return { | |||
| autohide : !settings.brandedUI, | |||
| autoplay : settings.autoplay, | |||
| color : settings.colors || undefined, | |||
| hq : settings.hd, | |||
| jsapi : settings.api, | |||
| modestbranding : !settings.brandedUI | |||
| }; | |||
| } | |||
| }, | |||
| vimeo: { | |||
| name : 'vimeo', | |||
| type : 'video', | |||
| icon : 'video play', | |||
| domain : 'vimeo.com', | |||
| url : '//player.vimeo.com/video/{id}', | |||
| parameters: function(settings) { | |||
| return { | |||
| api : settings.api, | |||
| autoplay : settings.autoplay, | |||
| byline : settings.brandedUI, | |||
| color : settings.colors || undefined, | |||
| portrait : settings.brandedUI, | |||
| title : settings.brandedUI | |||
| }; | |||
| } | |||
| } | |||
| }, | |||
| templates: { | |||
| iframe : function(url, parameters) { | |||
| return '' | |||
| + '<iframe src="' + url + '?' + parameters + '"' | |||
| + ' width="100%" height="100%"' | |||
| + ' frameborder="0" scrolling="no" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>' | |||
| ; | |||
| }, | |||
| placeholder : function(image, icon) { | |||
| var | |||
| html = '' | |||
| ; | |||
| if(icon) { | |||
| html += '<i class="' + icon + ' icon"></i>'; | |||
| } | |||
| if(image) { | |||
| html += '<img class="placeholder" src="' + image + '">'; | |||
| } | |||
| return html; | |||
| } | |||
| }, | |||
| // NOT YET IMPLEMENTED | |||
| api : true, | |||
| onPause : function() {}, | |||
| onPlay : function() {}, | |||
| onStop : function() {} | |||
| }; | |||
| })( jQuery, window, document ); | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Video | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */.ui.embed{position:relative;max-width:100%;height:0;overflow:hidden;background:#DCDDDE;padding-bottom:56.25%}.ui.embed embed,.ui.embed iframe,.ui.embed object{position:absolute;border:none;width:100%;height:100%;top:0;left:0;margin:0;padding:0}.ui.embed>.embed{display:none}.ui.embed>.placeholder{position:absolute;cursor:pointer;top:0;left:0;display:block;width:100%;height:100%;background-color:radial-gradient(transparent 45%,rgba(0,0,0,.3))}.ui.embed>.icon{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;z-index:2}.ui.embed>.icon:after{position:absolute;top:0;left:0;width:100%;height:100%;z-index:3;content:'';background:-webkit-radial-gradient(transparent 45%,rgba(0,0,0,.3));background:radial-gradient(transparent 45%,rgba(0,0,0,.3));opacity:.5;-webkit-transition:opacity .5s ease;transition:opacity .5s ease}.ui.embed>.icon:before{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);color:#FFF;font-size:6rem;text-shadow:0 2px 10px rgba(34,36,38,.2);-webkit-transition:opacity .5s ease,color .5s ease;transition:opacity .5s ease,color .5s ease;z-index:10}.ui.embed .icon:hover:after{background:-webkit-radial-gradient(transparent 45%,rgba(0,0,0,.3));background:radial-gradient(transparent 45%,rgba(0,0,0,.3));opacity:1}.ui.embed .icon:hover:before{color:#FFF}.ui.active.embed>.icon,.ui.active.embed>.placeholder{display:none}.ui.active.embed>.embed{display:block}.ui.square.embed{padding-bottom:100%}.ui[class*="4:3"].embed{padding-bottom:75%}.ui[class*="16:9"].embed{padding-bottom:56.25%}.ui[class*="21:9"].embed{padding-bottom:42.85714286%} | |||
| @ -0,0 +1,295 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Feed | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Activity Feed | |||
| *******************************/ | |||
| .ui.feed { | |||
| margin: 1em 0em; | |||
| } | |||
| .ui.feed:first-child { | |||
| margin-top: 0em; | |||
| } | |||
| .ui.feed:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| /******************************* | |||
| Content | |||
| *******************************/ | |||
| /* Event */ | |||
| .ui.feed > .event { | |||
| display: -webkit-box; | |||
| display: -webkit-flex; | |||
| display: -ms-flexbox; | |||
| display: flex; | |||
| -webkit-box-orient: horizontal; | |||
| -webkit-box-direction: normal; | |||
| -webkit-flex-direction: row; | |||
| -ms-flex-direction: row; | |||
| flex-direction: row; | |||
| width: 100%; | |||
| padding: 0.23076923rem 0em; | |||
| margin: 0em; | |||
| background: none; | |||
| border-top: none; | |||
| } | |||
| .ui.feed > .event:first-child { | |||
| border-top: 0px; | |||
| padding-top: 0em; | |||
| } | |||
| .ui.feed > .event:last-child { | |||
| padding-bottom: 0em; | |||
| } | |||
| /* Event Label */ | |||
| .ui.feed > .event > .label { | |||
| display: block; | |||
| -webkit-box-flex: 0; | |||
| -webkit-flex: 0 0 auto; | |||
| -ms-flex: 0 0 auto; | |||
| flex: 0 0 auto; | |||
| width: 2.5em; | |||
| height: auto; | |||
| -webkit-align-self: stretch; | |||
| -ms-flex-item-align: stretch; | |||
| align-self: stretch; | |||
| text-align: left; | |||
| } | |||
| .ui.feed > .event > .label .icon { | |||
| opacity: 1; | |||
| font-size: 1.5em; | |||
| width: 100%; | |||
| padding: 0.25em; | |||
| background: none; | |||
| border: none; | |||
| border-radius: none; | |||
| color: rgba(0, 0, 0, 0.6); | |||
| } | |||
| .ui.feed > .event > .label img { | |||
| width: 100%; | |||
| height: auto; | |||
| border-radius: 500rem; | |||
| } | |||
| .ui.feed > .event > .label + .content { | |||
| margin: 0.5em 0em 0.38461538em 1.15384615em; | |||
| } | |||
| /*-------------- | |||
| Content | |||
| ---------------*/ | |||
| /* Content */ | |||
| .ui.feed > .event > .content { | |||
| display: block; | |||
| -webkit-box-flex: 1; | |||
| -webkit-flex: 1 1 auto; | |||
| -ms-flex: 1 1 auto; | |||
| flex: 1 1 auto; | |||
| -webkit-align-self: stretch; | |||
| -ms-flex-item-align: stretch; | |||
| align-self: stretch; | |||
| text-align: left; | |||
| word-wrap: break-word; | |||
| } | |||
| .ui.feed > .event:last-child > .content { | |||
| padding-bottom: 0em; | |||
| } | |||
| /* Link */ | |||
| .ui.feed > .event > .content a { | |||
| cursor: pointer; | |||
| } | |||
| /*-------------- | |||
| Date | |||
| ---------------*/ | |||
| .ui.feed > .event > .content .date { | |||
| margin: -0.5rem 0em 0em; | |||
| padding: 0em; | |||
| font-weight: normal; | |||
| font-size: 1em; | |||
| font-style: normal; | |||
| color: rgba(0, 0, 0, 0.4); | |||
| } | |||
| /*-------------- | |||
| Summary | |||
| ---------------*/ | |||
| .ui.feed > .event > .content .summary { | |||
| margin: 0em; | |||
| font-size: 1em; | |||
| font-weight: bold; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /* Summary Image */ | |||
| .ui.feed > .event > .content .summary img { | |||
| display: inline-block; | |||
| width: auto; | |||
| height: 10em; | |||
| margin: -0.25em 0.25em 0em 0em; | |||
| border-radius: 0.25em; | |||
| vertical-align: middle; | |||
| } | |||
| /*-------------- | |||
| User | |||
| ---------------*/ | |||
| .ui.feed > .event > .content .user { | |||
| display: inline-block; | |||
| font-weight: bold; | |||
| margin-right: 0em; | |||
| vertical-align: baseline; | |||
| } | |||
| .ui.feed > .event > .content .user img { | |||
| margin: -0.25em 0.25em 0em 0em; | |||
| width: auto; | |||
| height: 10em; | |||
| vertical-align: middle; | |||
| } | |||
| /*-------------- | |||
| Inline Date | |||
| ---------------*/ | |||
| /* Date inside Summary */ | |||
| .ui.feed > .event > .content .summary > .date { | |||
| display: inline-block; | |||
| float: none; | |||
| font-weight: normal; | |||
| font-size: 0.84615385em; | |||
| font-style: normal; | |||
| margin: 0em 0em 0em 0.5em; | |||
| padding: 0em; | |||
| color: rgba(0, 0, 0, 0.4); | |||
| } | |||
| /*-------------- | |||
| Extra Summary | |||
| ---------------*/ | |||
| .ui.feed > .event > .content .extra { | |||
| margin: 0.5em 0em 0em; | |||
| background: none; | |||
| padding: 0em; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /* Images */ | |||
| .ui.feed > .event > .content .extra.images img { | |||
| display: inline-block; | |||
| margin: 0em 0.25em 0em 0em; | |||
| width: 6em; | |||
| } | |||
| /* Text */ | |||
| .ui.feed > .event > .content .extra.text { | |||
| padding: 0em; | |||
| border-left: none; | |||
| font-size: 1em; | |||
| max-width: 500px; | |||
| line-height: 1.4285em; | |||
| } | |||
| /*-------------- | |||
| Meta | |||
| ---------------*/ | |||
| .ui.feed > .event > .content .meta { | |||
| display: inline-block; | |||
| font-size: 0.84615385em; | |||
| margin: 0.5em 0em 0em; | |||
| background: none; | |||
| border: none; | |||
| border-radius: 0; | |||
| box-shadow: none; | |||
| padding: 0em; | |||
| color: rgba(0, 0, 0, 0.6); | |||
| } | |||
| .ui.feed > .event > .content .meta > * { | |||
| position: relative; | |||
| margin-left: 0.75em; | |||
| } | |||
| .ui.feed > .event > .content .meta > *:after { | |||
| content: ''; | |||
| color: rgba(0, 0, 0, 0.2); | |||
| top: 0em; | |||
| left: -1em; | |||
| opacity: 1; | |||
| position: absolute; | |||
| vertical-align: top; | |||
| } | |||
| .ui.feed > .event > .content .meta .like { | |||
| color: ''; | |||
| -webkit-transition: 0.2s color ease; | |||
| transition: 0.2s color ease; | |||
| } | |||
| .ui.feed > .event > .content .meta .like:hover .icon { | |||
| color: #FF2733; | |||
| } | |||
| .ui.feed > .event > .content .meta .active.like .icon { | |||
| color: #EF404A; | |||
| } | |||
| /* First element */ | |||
| .ui.feed > .event > .content .meta > :first-child { | |||
| margin-left: 0em; | |||
| } | |||
| .ui.feed > .event > .content .meta > :first-child::after { | |||
| display: none; | |||
| } | |||
| /* Action */ | |||
| .ui.feed > .event > .content .meta a, | |||
| .ui.feed > .event > .content .meta > .icon { | |||
| cursor: pointer; | |||
| opacity: 1; | |||
| color: rgba(0, 0, 0, 0.5); | |||
| -webkit-transition: color 0.1s ease; | |||
| transition: color 0.1s ease; | |||
| } | |||
| .ui.feed > .event > .content .meta a:hover, | |||
| .ui.feed > .event > .content .meta a:hover .icon, | |||
| .ui.feed > .event > .content .meta > .icon:hover { | |||
| color: rgba(0, 0, 0, 0.95); | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| .ui.small.feed { | |||
| font-size: 0.92307692rem; | |||
| } | |||
| .ui.feed { | |||
| font-size: 1rem; | |||
| } | |||
| .ui.large.feed { | |||
| font-size: 1.15384615rem; | |||
| } | |||
| /******************************* | |||
| User Variable Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Feed | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */.ui.feed{margin:1em 0}.ui.feed:first-child{margin-top:0}.ui.feed:last-child{margin-bottom:0}.ui.feed>.event{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;width:100%;padding:.23076923rem 0;margin:0;background:0 0;border-top:none}.ui.feed>.event:first-child{border-top:0;padding-top:0}.ui.feed>.event:last-child{padding-bottom:0}.ui.feed>.event>.label{display:block;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:2.5em;height:auto;-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch;text-align:left}.ui.feed>.event>.label .icon{opacity:1;font-size:1.5em;width:100%;padding:.25em;background:0 0;border:none;border-radius:none;color:rgba(0,0,0,.6)}.ui.feed>.event>.label img{width:100%;height:auto;border-radius:500rem}.ui.feed>.event>.label+.content{margin:.5em 0 .38461538em 1.15384615em}.ui.feed>.event>.content{display:block;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch;text-align:left;word-wrap:break-word}.ui.feed>.event:last-child>.content{padding-bottom:0}.ui.feed>.event>.content a{cursor:pointer}.ui.feed>.event>.content .date{margin:-.5rem 0 0;padding:0;font-weight:400;font-size:1em;font-style:normal;color:rgba(0,0,0,.4)}.ui.feed>.event>.content .summary{margin:0;font-size:1em;font-weight:700;color:rgba(0,0,0,.87)}.ui.feed>.event>.content .summary img{display:inline-block;width:auto;height:10em;margin:-.25em .25em 0 0;border-radius:.25em;vertical-align:middle}.ui.feed>.event>.content .user{display:inline-block;font-weight:700;margin-right:0;vertical-align:baseline}.ui.feed>.event>.content .user img{margin:-.25em .25em 0 0;width:auto;height:10em;vertical-align:middle}.ui.feed>.event>.content .summary>.date{display:inline-block;float:none;font-weight:400;font-size:.84615385em;font-style:normal;margin:0 0 0 .5em;padding:0;color:rgba(0,0,0,.4)}.ui.feed>.event>.content .extra{margin:.5em 0 0;background:0 0;padding:0;color:rgba(0,0,0,.87)}.ui.feed>.event>.content .extra.images img{display:inline-block;margin:0 .25em 0 0;width:6em}.ui.feed>.event>.content .extra.text{padding:0;border-left:none;font-size:1em;max-width:500px;line-height:1.4285em}.ui.feed>.event>.content .meta{display:inline-block;font-size:.84615385em;margin:.5em 0 0;background:0 0;border:none;border-radius:0;box-shadow:none;padding:0;color:rgba(0,0,0,.6)}.ui.feed>.event>.content .meta>*{position:relative;margin-left:.75em}.ui.feed>.event>.content .meta>:after{content:'';color:rgba(0,0,0,.2);top:0;left:-1em;opacity:1;position:absolute;vertical-align:top}.ui.feed>.event>.content .meta .like{color:'';-webkit-transition:.2s color ease;transition:.2s color ease}.ui.feed>.event>.content .meta .like:hover .icon{color:#FF2733}.ui.feed>.event>.content .meta .active.like .icon{color:#EF404A}.ui.feed>.event>.content .meta>:first-child{margin-left:0}.ui.feed>.event>.content .meta>:first-child::after{display:none}.ui.feed>.event>.content .meta a,.ui.feed>.event>.content .meta>.icon{cursor:pointer;opacity:1;color:rgba(0,0,0,.5);-webkit-transition:color .1s ease;transition:color .1s ease}.ui.feed>.event>.content .meta a:hover,.ui.feed>.event>.content .meta a:hover .icon,.ui.feed>.event>.content .meta>.icon:hover{color:rgba(0,0,0,.95)}.ui.small.feed{font-size:.92307692rem}.ui.feed{font-size:1rem}.ui.large.feed{font-size:1.15384615rem} | |||
| @ -0,0 +1,44 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Flag | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Flag | |||
| *******************************/ | |||
| i.flag:not(.icon) { | |||
| display: inline-block; | |||
| width: 16px; | |||
| height: 11px; | |||
| line-height: 11px; | |||
| vertical-align: baseline; | |||
| margin: 0em 0.5em 0em 0em; | |||
| text-decoration: inherit; | |||
| speak: none; | |||
| font-smoothing: antialiased; | |||
| -webkit-backface-visibility: hidden; | |||
| backface-visibility: hidden; | |||
| } | |||
| /* Sprite */ | |||
| i.flag:not(.icon):before { | |||
| display: inline-block; | |||
| content: ''; | |||
| background: url("../themes/default/assets/images/flags.png") no-repeat 0px 0px; | |||
| width: 16px; | |||
| height: 11px; | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Flag | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */i.flag:not(.icon){display:inline-block;width:16px;height:11px;line-height:11px;vertical-align:baseline;margin:0 .5em 0 0;text-decoration:inherit;speak:none;font-smoothing:antialiased;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag:not(.icon):before{display:inline-block;content:'';background:url(../themes/default/assets/images/flags.png) no-repeat;width:16px;height:11px} | |||
| @ -0,0 +1,715 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Header | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Header | |||
| *******************************/ | |||
| /* Standard */ | |||
| .ui.header { | |||
| border: none; | |||
| margin: calc(2rem - 0.14285em ) 0em 1rem; | |||
| padding: 0em 0em; | |||
| font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif; | |||
| font-weight: bold; | |||
| line-height: 1.2857em; | |||
| text-transform: none; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.header:first-child { | |||
| margin-top: -0.14285em; | |||
| } | |||
| .ui.header:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| /*-------------- | |||
| Sub Header | |||
| ---------------*/ | |||
| .ui.header .sub.header { | |||
| display: block; | |||
| font-weight: normal; | |||
| padding: 0em; | |||
| margin: 0em; | |||
| font-size: 1rem; | |||
| line-height: 1.2em; | |||
| color: rgba(0, 0, 0, 0.6); | |||
| } | |||
| /*-------------- | |||
| Icon | |||
| ---------------*/ | |||
| .ui.header > .icon { | |||
| display: table-cell; | |||
| opacity: 1; | |||
| font-size: 1.5em; | |||
| padding-top: 0.14285em; | |||
| vertical-align: middle; | |||
| } | |||
| /* With Text Node */ | |||
| .ui.header .icon:only-child { | |||
| display: inline-block; | |||
| padding: 0em; | |||
| margin-right: 0.30769231rem; | |||
| } | |||
| /*------------------- | |||
| Image | |||
| --------------------*/ | |||
| .ui.header > .image, | |||
| .ui.header > img { | |||
| display: inline-block; | |||
| margin-top: 0.14285em; | |||
| width: 2.5em; | |||
| height: auto; | |||
| vertical-align: middle; | |||
| } | |||
| .ui.header > .image:only-child, | |||
| .ui.header > img:only-child { | |||
| margin-right: 0.30769231rem; | |||
| } | |||
| /*-------------- | |||
| Content | |||
| ---------------*/ | |||
| .ui.header .content { | |||
| display: inline-block; | |||
| vertical-align: top; | |||
| } | |||
| /* After Image */ | |||
| .ui.header > img + .content, | |||
| .ui.header > .image + .content { | |||
| padding-left: 0.30769231rem; | |||
| vertical-align: middle; | |||
| } | |||
| /* After Icon */ | |||
| .ui.header > .icon + .content { | |||
| padding-left: 0.30769231rem; | |||
| display: table-cell; | |||
| vertical-align: middle; | |||
| } | |||
| /*-------------- | |||
| Loose Coupling | |||
| ---------------*/ | |||
| .ui.header .ui.label { | |||
| font-size: ''; | |||
| margin-left: 0.5rem; | |||
| vertical-align: middle; | |||
| } | |||
| /* Positioning */ | |||
| .ui.header + p { | |||
| margin-top: 0em; | |||
| } | |||
| /******************************* | |||
| Types | |||
| *******************************/ | |||
| /*-------------- | |||
| Page | |||
| ---------------*/ | |||
| h1.ui.header { | |||
| font-size: 2.25em; | |||
| } | |||
| h2.ui.header { | |||
| font-size: 1.714rem; | |||
| } | |||
| h3.ui.header { | |||
| font-size: 1.28rem; | |||
| } | |||
| h4.ui.header { | |||
| font-size: 1.071rem; | |||
| } | |||
| h5.ui.header { | |||
| font-size: 1rem; | |||
| } | |||
| /* Sub Header */ | |||
| h1.ui.header .sub.header { | |||
| font-size: 1.15384615rem; | |||
| } | |||
| h2.ui.header .sub.header { | |||
| font-size: 1.15384615rem; | |||
| } | |||
| h3.ui.header .sub.header { | |||
| font-size: 1rem; | |||
| } | |||
| h4.ui.header .sub.header { | |||
| font-size: 1rem; | |||
| } | |||
| h5.ui.header .sub.header { | |||
| font-size: 0.92307692rem; | |||
| } | |||
| /*-------------- | |||
| Content Heading | |||
| ---------------*/ | |||
| .ui.huge.header { | |||
| min-height: 1em; | |||
| font-size: 2.25em; | |||
| } | |||
| .ui.large.header { | |||
| font-size: 1.714em; | |||
| } | |||
| .ui.medium.header { | |||
| font-size: 1.28em; | |||
| } | |||
| .ui.small.header { | |||
| font-size: 1.071em; | |||
| } | |||
| .ui.tiny.header { | |||
| font-size: 1em; | |||
| } | |||
| /* Sub Header */ | |||
| .ui.huge.header .sub.header { | |||
| font-size: 1.15384615rem; | |||
| } | |||
| .ui.large.header .sub.header { | |||
| font-size: 1.15384615rem; | |||
| } | |||
| .ui.header .sub.header { | |||
| font-size: 1rem; | |||
| } | |||
| .ui.small.header .sub.header { | |||
| font-size: 1rem; | |||
| } | |||
| .ui.tiny.header .sub.header { | |||
| font-size: 0.92307692rem; | |||
| } | |||
| /*-------------- | |||
| Sub Heading | |||
| ---------------*/ | |||
| .ui.sub.header { | |||
| padding: 0em; | |||
| margin-bottom: 0.15384615rem; | |||
| font-weight: bold; | |||
| font-size: 0.84615385em; | |||
| text-transform: uppercase; | |||
| color: ''; | |||
| } | |||
| .ui.small.sub.header { | |||
| font-size: 0.69230769em; | |||
| } | |||
| .ui.sub.header { | |||
| font-size: 0.84615385em; | |||
| } | |||
| .ui.large.sub.header { | |||
| font-size: 0.92307692em; | |||
| } | |||
| .ui.huge.sub.header { | |||
| font-size: 1em; | |||
| } | |||
| /*------------------- | |||
| Icon | |||
| --------------------*/ | |||
| .ui.icon.header { | |||
| display: inline-block; | |||
| text-align: center; | |||
| margin: 2rem 0em 1rem; | |||
| } | |||
| .ui.icon.header:after { | |||
| content: ''; | |||
| display: block; | |||
| height: 0px; | |||
| clear: both; | |||
| visibility: hidden; | |||
| } | |||
| .ui.icon.header:first-child { | |||
| margin-top: 0em; | |||
| } | |||
| .ui.icon.header .icon { | |||
| float: none; | |||
| display: block; | |||
| width: auto; | |||
| height: auto; | |||
| line-height: 1; | |||
| padding: 0em; | |||
| font-size: 3em; | |||
| margin: 0em auto 0.5rem; | |||
| opacity: 1; | |||
| } | |||
| .ui.icon.header .content { | |||
| display: block; | |||
| } | |||
| .ui.icon.header .circular.icon { | |||
| font-size: 2em; | |||
| } | |||
| .ui.icon.header .square.icon { | |||
| font-size: 2em; | |||
| } | |||
| .ui.block.icon.header .icon { | |||
| margin-bottom: 0em; | |||
| } | |||
| .ui.icon.header.aligned { | |||
| margin-left: auto; | |||
| margin-right: auto; | |||
| display: block; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| .ui.disabled.header { | |||
| opacity: 0.3; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*------------------- | |||
| Inverted | |||
| --------------------*/ | |||
| .ui.inverted.header { | |||
| color: #FFFFFF; | |||
| } | |||
| .ui.inverted.header .sub.header { | |||
| color: rgba(255, 255, 255, 0.8); | |||
| } | |||
| .ui.inverted.attached.header { | |||
| background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); | |||
| background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05)); | |||
| box-shadow: none; | |||
| border-color: transparent; | |||
| } | |||
| .ui.inverted.block.header { | |||
| background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); | |||
| background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05)); | |||
| box-shadow: none; | |||
| } | |||
| .ui.inverted.block.header { | |||
| border-bottom: none; | |||
| } | |||
| /*------------------- | |||
| Colors | |||
| --------------------*/ | |||
| /*--- Red ---*/ | |||
| .ui.red.header { | |||
| color: #DB2828 !important; | |||
| } | |||
| a.ui.red.header:hover { | |||
| color: #d01919 !important; | |||
| } | |||
| .ui.red.dividing.header { | |||
| border-bottom: 2px solid #DB2828; | |||
| } | |||
| /* Inverted */ | |||
| .ui.inverted.red.header { | |||
| color: #FF695E !important; | |||
| } | |||
| a.ui.inverted.red.header:hover { | |||
| color: #ff5144 !important; | |||
| } | |||
| /*--- Orange ---*/ | |||
| .ui.orange.header { | |||
| color: #D26911 !important; | |||
| } | |||
| a.ui.orange.header:hover { | |||
| color: #c35c07 !important; | |||
| } | |||
| .ui.orange.dividing.header { | |||
| border-bottom: 2px solid #D26911; | |||
| } | |||
| /* Inverted */ | |||
| .ui.inverted.orange.header { | |||
| color: #FF851B !important; | |||
| } | |||
| a.ui.inverted.orange.header:hover { | |||
| color: #ff7701 !important; | |||
| } | |||
| /*--- Olive ---*/ | |||
| .ui.olive.header { | |||
| color: #B5CC18 !important; | |||
| } | |||
| a.ui.olive.header:hover { | |||
| color: #a7bd0d !important; | |||
| } | |||
| .ui.olive.dividing.header { | |||
| border-bottom: 2px solid #B5CC18; | |||
| } | |||
| /* Inverted */ | |||
| .ui.inverted.olive.header { | |||
| color: #D9E778 !important; | |||
| } | |||
| a.ui.inverted.olive.header:hover { | |||
| color: #d8ea5c !important; | |||
| } | |||
| /*--- Yellow ---*/ | |||
| .ui.yellow.header { | |||
| color: #FBBD08 !important; | |||
| } | |||
| a.ui.yellow.header:hover { | |||
| color: #eaae00 !important; | |||
| } | |||
| .ui.yellow.dividing.header { | |||
| border-bottom: 2px solid #FBBD08; | |||
| } | |||
| /* Inverted */ | |||
| .ui.inverted.yellow.header { | |||
| color: #FFE21F !important; | |||
| } | |||
| a.ui.inverted.yellow.header:hover { | |||
| color: #ffdf05 !important; | |||
| } | |||
| /*--- Green ---*/ | |||
| .ui.green.header { | |||
| color: #78CB5B !important; | |||
| } | |||
| a.ui.green.header:hover { | |||
| color: #65cb41 !important; | |||
| } | |||
| .ui.green.dividing.header { | |||
| border-bottom: 2px solid #78CB5B; | |||
| } | |||
| /* Inverted */ | |||
| .ui.inverted.green.header { | |||
| color: #2ECC40 !important; | |||
| } | |||
| a.ui.inverted.green.header:hover { | |||
| color: #22be34 !important; | |||
| } | |||
| /*--- Teal ---*/ | |||
| .ui.teal.header { | |||
| color: #00B5AD !important; | |||
| } | |||
| a.ui.teal.header:hover { | |||
| color: #009c95 !important; | |||
| } | |||
| .ui.teal.dividing.header { | |||
| border-bottom: 2px solid #00B5AD; | |||
| } | |||
| /* Inverted */ | |||
| .ui.inverted.teal.header { | |||
| color: #6DFFFF !important; | |||
| } | |||
| a.ui.inverted.teal.header:hover { | |||
| color: #54ffff !important; | |||
| } | |||
| /*--- Blue ---*/ | |||
| .ui.blue.header { | |||
| color: #80A6CD !important; | |||
| } | |||
| a.ui.blue.header:hover { | |||
| color: #6999ca !important; | |||
| } | |||
| .ui.blue.dividing.header { | |||
| border-bottom: 2px solid #80A6CD; | |||
| } | |||
| /* Inverted */ | |||
| .ui.inverted.blue.header { | |||
| color: #54C8FF !important; | |||
| } | |||
| a.ui.inverted.blue.header:hover { | |||
| color: #3ac0ff !important; | |||
| } | |||
| /*--- Violet ---*/ | |||
| .ui.violet.header { | |||
| color: #6435C9 !important; | |||
| } | |||
| a.ui.violet.header:hover { | |||
| color: #5829bb !important; | |||
| } | |||
| .ui.violet.dividing.header { | |||
| border-bottom: 2px solid #6435C9; | |||
| } | |||
| /* Inverted */ | |||
| .ui.inverted.violet.header { | |||
| color: #A291FB !important; | |||
| } | |||
| a.ui.inverted.violet.header:hover { | |||
| color: #8a73ff !important; | |||
| } | |||
| /*--- Purple ---*/ | |||
| .ui.purple.header { | |||
| color: #A333C8 !important; | |||
| } | |||
| a.ui.purple.header:hover { | |||
| color: #9627ba !important; | |||
| } | |||
| .ui.purple.dividing.header { | |||
| border-bottom: 2px solid #A333C8; | |||
| } | |||
| /* Inverted */ | |||
| .ui.inverted.purple.header { | |||
| color: #DC73FF !important; | |||
| } | |||
| a.ui.inverted.purple.header:hover { | |||
| color: #d65aff !important; | |||
| } | |||
| /*--- Pink ---*/ | |||
| .ui.pink.header { | |||
| color: #E03997 !important; | |||
| } | |||
| a.ui.pink.header:hover { | |||
| color: #e61a8d !important; | |||
| } | |||
| .ui.pink.dividing.header { | |||
| border-bottom: 2px solid #E03997; | |||
| } | |||
| /* Inverted */ | |||
| .ui.inverted.pink.header { | |||
| color: #FF8EDF !important; | |||
| } | |||
| a.ui.inverted.pink.header:hover { | |||
| color: #ff74d8 !important; | |||
| } | |||
| /*--- Brown ---*/ | |||
| .ui.brown.header { | |||
| color: #A5673F !important; | |||
| } | |||
| a.ui.brown.header:hover { | |||
| color: #975b33 !important; | |||
| } | |||
| .ui.brown.dividing.header { | |||
| border-bottom: 2px solid #A5673F; | |||
| } | |||
| /* Inverted */ | |||
| .ui.inverted.brown.header { | |||
| color: #D67C1C !important; | |||
| } | |||
| a.ui.inverted.brown.header:hover { | |||
| color: #c86f11 !important; | |||
| } | |||
| /*--- Grey ---*/ | |||
| .ui.grey.header { | |||
| color: #767676 !important; | |||
| } | |||
| a.ui.grey.header:hover { | |||
| color: #838383 !important; | |||
| } | |||
| .ui.grey.dividing.header { | |||
| border-bottom: 2px solid #767676; | |||
| } | |||
| /* Inverted */ | |||
| .ui.inverted.grey.header { | |||
| color: #DCDDDE !important; | |||
| } | |||
| a.ui.inverted.grey.header:hover { | |||
| color: #cfd0d2 !important; | |||
| } | |||
| /*------------------- | |||
| Aligned | |||
| --------------------*/ | |||
| .ui.left.aligned.header { | |||
| text-align: left; | |||
| } | |||
| .ui.right.aligned.header { | |||
| text-align: right; | |||
| } | |||
| .ui.centered.header, | |||
| .ui.center.aligned.header { | |||
| text-align: center; | |||
| } | |||
| .ui.justified.header { | |||
| text-align: justify; | |||
| } | |||
| .ui.justified.header:after { | |||
| display: inline-block; | |||
| content: ''; | |||
| width: 100%; | |||
| } | |||
| /*------------------- | |||
| Floated | |||
| --------------------*/ | |||
| .ui.floated.header, | |||
| .ui[class*="left floated"].header { | |||
| float: left; | |||
| margin-top: 0em; | |||
| margin-right: 0.5em; | |||
| } | |||
| .ui[class*="right floated"].header { | |||
| float: right; | |||
| margin-top: 0em; | |||
| margin-left: 0.5em; | |||
| } | |||
| /*------------------- | |||
| Fittted | |||
| --------------------*/ | |||
| .ui.fitted.header { | |||
| padding: 0em; | |||
| } | |||
| /*------------------- | |||
| Dividing | |||
| --------------------*/ | |||
| .ui.dividing.header { | |||
| padding-bottom: 0.23076923rem; | |||
| border-bottom: 1px solid rgba(0, 0, 0, 0.13); | |||
| } | |||
| .ui.dividing.header .sub.header { | |||
| padding-bottom: 0.23076923rem; | |||
| } | |||
| .ui.dividing.header .icon { | |||
| margin-bottom: 0em; | |||
| } | |||
| .ui.inverted.dividing.header { | |||
| border-bottom-color: rgba(255, 255, 255, 0.1); | |||
| } | |||
| /*------------------- | |||
| Block | |||
| --------------------*/ | |||
| .ui.block.header { | |||
| background: #F3F4F5; | |||
| padding: 0.69230769rem 1rem; | |||
| box-shadow: none; | |||
| border: 1px solid #DDDDDD; | |||
| border-radius: 0.2307em; | |||
| } | |||
| .ui.tiny.block.header { | |||
| font-size: 0.84615385rem; | |||
| } | |||
| .ui.small.block.header { | |||
| font-size: 0.92307692rem; | |||
| } | |||
| .ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { | |||
| font-size: 1rem; | |||
| } | |||
| .ui.large.block.header { | |||
| font-size: 1.15384615rem; | |||
| } | |||
| .ui.huge.block.header { | |||
| font-size: 1.46153846rem; | |||
| } | |||
| /*------------------- | |||
| Attached | |||
| --------------------*/ | |||
| .ui.attached.header { | |||
| background: #FFFFFF; | |||
| padding: 0.69230769rem 1rem; | |||
| margin-left: -1px; | |||
| margin-right: -1px; | |||
| box-shadow: none; | |||
| border: 1px solid #DDDDDD; | |||
| } | |||
| .ui.attached.block.header { | |||
| background: #F3F4F5; | |||
| } | |||
| .ui.attached:not(.top):not(.bottom).header { | |||
| margin-top: 0em; | |||
| margin-bottom: 0em; | |||
| border-top: none; | |||
| border-radius: 0em; | |||
| } | |||
| .ui.top.attached.header { | |||
| margin-bottom: 0em; | |||
| border-radius: 0.2307em 0.2307em 0em 0em; | |||
| } | |||
| .ui.bottom.attached.header { | |||
| margin-top: 0em; | |||
| border-top: none; | |||
| border-radius: 0em 0em 0.2307em 0.2307em; | |||
| } | |||
| /* Attached Sizes */ | |||
| .ui.tiny.attached.header { | |||
| font-size: 0.84615385em; | |||
| } | |||
| .ui.small.attached.header { | |||
| font-size: 0.92307692em; | |||
| } | |||
| .ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { | |||
| font-size: 1em; | |||
| } | |||
| .ui.large.attached.header { | |||
| font-size: 1.15384615em; | |||
| } | |||
| .ui.huge.attached.header { | |||
| font-size: 1.46153846em; | |||
| } | |||
| /*------------------- | |||
| Sizing | |||
| --------------------*/ | |||
| .ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { | |||
| font-size: 1.28em; | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,296 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Image | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Image | |||
| *******************************/ | |||
| .ui.image { | |||
| position: relative; | |||
| display: inline-block; | |||
| vertical-align: middle; | |||
| max-width: 100%; | |||
| background-color: transparent; | |||
| } | |||
| img.ui.image { | |||
| display: block; | |||
| } | |||
| .ui.image svg, | |||
| .ui.image img { | |||
| display: block; | |||
| max-width: 100%; | |||
| height: auto; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| .ui.hidden.images, | |||
| .ui.hidden.image { | |||
| display: none; | |||
| } | |||
| .ui.disabled.images, | |||
| .ui.disabled.image { | |||
| cursor: default; | |||
| opacity: 0.3; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*-------------- | |||
| Inline | |||
| ---------------*/ | |||
| .ui.inline.image, | |||
| .ui.inline.image svg, | |||
| .ui.inline.image img { | |||
| display: inline-block; | |||
| } | |||
| /*------------------ | |||
| Vertical Aligned | |||
| -------------------*/ | |||
| .ui.top.aligned.images .image, | |||
| .ui.top.aligned.image, | |||
| .ui.top.aligned.image svg, | |||
| .ui.top.aligned.image img { | |||
| display: inline-block; | |||
| vertical-align: top; | |||
| } | |||
| .ui.middle.aligned.images .image, | |||
| .ui.middle.aligned.image, | |||
| .ui.middle.aligned.image svg, | |||
| .ui.middle.aligned.image img { | |||
| display: inline-block; | |||
| vertical-align: middle; | |||
| } | |||
| .ui.bottom.aligned.images .image, | |||
| .ui.bottom.aligned.image, | |||
| .ui.bottom.aligned.image svg, | |||
| .ui.bottom.aligned.image img { | |||
| display: inline-block; | |||
| vertical-align: bottom; | |||
| } | |||
| /*-------------- | |||
| Rounded | |||
| ---------------*/ | |||
| .ui.rounded.images .image, | |||
| .ui.rounded.image, | |||
| .ui.rounded.images .image > *, | |||
| .ui.rounded.image > * { | |||
| border-radius: 0.3125em; | |||
| } | |||
| /*-------------- | |||
| Bordered | |||
| ---------------*/ | |||
| .ui.bordered.images .image, | |||
| .ui.bordered.images img, | |||
| .ui.bordered.images svg, | |||
| .ui.bordered.image img, | |||
| .ui.bordered.image svg, | |||
| img.ui.bordered.image { | |||
| border: 1px solid rgba(0, 0, 0, 0.1); | |||
| } | |||
| /*-------------- | |||
| Circular | |||
| ---------------*/ | |||
| .ui.circular.images, | |||
| .ui.circular.image { | |||
| overflow: hidden; | |||
| } | |||
| .ui.circular.images .image, | |||
| .ui.circular.image, | |||
| .ui.circular.images .image > *, | |||
| .ui.circular.image > * { | |||
| border-radius: 500rem; | |||
| } | |||
| /*-------------- | |||
| Fluid | |||
| ---------------*/ | |||
| .ui.fluid.images, | |||
| .ui.fluid.image, | |||
| .ui.fluid.images img, | |||
| .ui.fluid.images svg, | |||
| .ui.fluid.image svg, | |||
| .ui.fluid.image img { | |||
| display: block; | |||
| width: 100%; | |||
| height: auto; | |||
| } | |||
| /*-------------- | |||
| Avatar | |||
| ---------------*/ | |||
| .ui.avatar.images .image, | |||
| .ui.avatar.images img, | |||
| .ui.avatar.images svg, | |||
| .ui.avatar.image img, | |||
| .ui.avatar.image svg, | |||
| .ui.avatar.image { | |||
| margin-right: 0.25em; | |||
| display: inline-block; | |||
| width: 2em; | |||
| height: 2em; | |||
| border-radius: 500rem; | |||
| } | |||
| /*------------------- | |||
| Spaced | |||
| --------------------*/ | |||
| .ui.spaced.image { | |||
| display: inline-block !important; | |||
| margin-left: 0.5em; | |||
| margin-right: 0.5em; | |||
| } | |||
| .ui[class*="left spaced"].image { | |||
| margin-left: 0.5em; | |||
| margin-right: 0em; | |||
| } | |||
| .ui[class*="right spaced"].image { | |||
| margin-left: 0em; | |||
| margin-right: 0.5em; | |||
| } | |||
| /*------------------- | |||
| Floated | |||
| --------------------*/ | |||
| .ui.floated.image, | |||
| .ui.floated.images { | |||
| float: left; | |||
| margin-right: 1em; | |||
| margin-bottom: 1em; | |||
| } | |||
| .ui.right.floated.images, | |||
| .ui.right.floated.image { | |||
| float: right; | |||
| margin-right: 0em; | |||
| margin-bottom: 1em; | |||
| margin-left: 1em; | |||
| } | |||
| .ui.floated.images:last-child, | |||
| .ui.floated.image:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| .ui.centered.images, | |||
| .ui.centered.image { | |||
| margin-left: auto; | |||
| margin-right: auto; | |||
| } | |||
| /*-------------- | |||
| Sizes | |||
| ---------------*/ | |||
| .ui.mini.images .image, | |||
| .ui.mini.images img, | |||
| .ui.mini.images svg, | |||
| .ui.mini.image { | |||
| width: 20px; | |||
| height: auto; | |||
| font-size: 0.69230769rem; | |||
| } | |||
| .ui.tiny.images .image, | |||
| .ui.tiny.images img, | |||
| .ui.tiny.images svg, | |||
| .ui.tiny.image { | |||
| width: 80px; | |||
| height: auto; | |||
| font-size: 0.84615385rem; | |||
| } | |||
| .ui.small.images .image, | |||
| .ui.small.images img, | |||
| .ui.small.images svg, | |||
| .ui.small.image { | |||
| width: 150px; | |||
| height: auto; | |||
| font-size: 0.92307692rem; | |||
| } | |||
| .ui.medium.images .image, | |||
| .ui.medium.images img, | |||
| .ui.medium.images svg, | |||
| .ui.medium.image { | |||
| width: 300px; | |||
| height: auto; | |||
| font-size: 1rem; | |||
| } | |||
| .ui.large.images .image, | |||
| .ui.large.images img, | |||
| .ui.large.images svg, | |||
| .ui.large.image { | |||
| width: 450px; | |||
| height: auto; | |||
| font-size: 1.15384615rem; | |||
| } | |||
| .ui.big.images .image, | |||
| .ui.big.images img, | |||
| .ui.big.images svg, | |||
| .ui.big.image { | |||
| width: 600px; | |||
| height: auto; | |||
| font-size: 1.30769231rem; | |||
| } | |||
| .ui.huge.images .image, | |||
| .ui.huge.images img, | |||
| .ui.huge.images svg, | |||
| .ui.huge.image { | |||
| width: 800px; | |||
| height: auto; | |||
| font-size: 1.46153846rem; | |||
| } | |||
| .ui.massive.images .image, | |||
| .ui.massive.images img, | |||
| .ui.massive.images svg, | |||
| .ui.massive.image { | |||
| width: 960px; | |||
| height: auto; | |||
| font-size: 1.69230769rem; | |||
| } | |||
| /******************************* | |||
| Groups | |||
| *******************************/ | |||
| .ui.images { | |||
| font-size: 0em; | |||
| margin: 0em -0.25rem 0rem; | |||
| } | |||
| .ui.images .image, | |||
| .ui.images img, | |||
| .ui.images svg { | |||
| display: inline-block; | |||
| margin: 0em 0.25rem 0.5rem; | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Image | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */.ui.image{position:relative;display:inline-block;vertical-align:middle;max-width:100%;background-color:transparent}img.ui.image{display:block}.ui.image img,.ui.image svg{display:block;max-width:100%;height:auto}.ui.hidden.image,.ui.hidden.images{display:none}.ui.disabled.image,.ui.disabled.images{cursor:default;opacity:.3}.ui.inline.image,.ui.inline.image img,.ui.inline.image svg{display:inline-block}.ui.top.aligned.image,.ui.top.aligned.image img,.ui.top.aligned.image svg,.ui.top.aligned.images .image{display:inline-block;vertical-align:top}.ui.middle.aligned.image,.ui.middle.aligned.image img,.ui.middle.aligned.image svg,.ui.middle.aligned.images .image{display:inline-block;vertical-align:middle}.ui.bottom.aligned.image,.ui.bottom.aligned.image img,.ui.bottom.aligned.image svg,.ui.bottom.aligned.images .image{display:inline-block;vertical-align:bottom}.ui.rounded.image,.ui.rounded.image>*,.ui.rounded.images .image,.ui.rounded.images .image>*{border-radius:.3125em}.ui.bordered.image img,.ui.bordered.image svg,.ui.bordered.images .image,.ui.bordered.images img,.ui.bordered.images svg,img.ui.bordered.image{border:1px solid rgba(0,0,0,.1)}.ui.circular.image,.ui.circular.images{overflow:hidden}.ui.circular.image,.ui.circular.image>*,.ui.circular.images .image,.ui.circular.images .image>*{border-radius:500rem}.ui.fluid.image,.ui.fluid.image img,.ui.fluid.image svg,.ui.fluid.images,.ui.fluid.images img,.ui.fluid.images svg{display:block;width:100%;height:auto}.ui.avatar.image,.ui.avatar.image img,.ui.avatar.image svg,.ui.avatar.images .image,.ui.avatar.images img,.ui.avatar.images svg{margin-right:.25em;display:inline-block;width:2em;height:2em;border-radius:500rem}.ui.spaced.image{display:inline-block!important;margin-left:.5em;margin-right:.5em}.ui[class*="left spaced"].image{margin-left:.5em;margin-right:0}.ui[class*="right spaced"].image{margin-left:0;margin-right:.5em}.ui.floated.image,.ui.floated.images{float:left;margin-right:1em;margin-bottom:1em}.ui.right.floated.image,.ui.right.floated.images{float:right;margin-right:0;margin-bottom:1em;margin-left:1em}.ui.floated.image:last-child,.ui.floated.images:last-child{margin-bottom:0}.ui.centered.image,.ui.centered.images{margin-left:auto;margin-right:auto}.ui.mini.image,.ui.mini.images .image,.ui.mini.images img,.ui.mini.images svg{width:20px;height:auto;font-size:.69230769rem}.ui.tiny.image,.ui.tiny.images .image,.ui.tiny.images img,.ui.tiny.images svg{width:80px;height:auto;font-size:.84615385rem}.ui.small.image,.ui.small.images .image,.ui.small.images img,.ui.small.images svg{width:150px;height:auto;font-size:.92307692rem}.ui.medium.image,.ui.medium.images .image,.ui.medium.images img,.ui.medium.images svg{width:300px;height:auto;font-size:1rem}.ui.large.image,.ui.large.images .image,.ui.large.images img,.ui.large.images svg{width:450px;height:auto;font-size:1.15384615rem}.ui.big.image,.ui.big.images .image,.ui.big.images img,.ui.big.images svg{width:600px;height:auto;font-size:1.30769231rem}.ui.huge.image,.ui.huge.images .image,.ui.huge.images img,.ui.huge.images svg{width:800px;height:auto;font-size:1.46153846rem}.ui.massive.image,.ui.massive.images .image,.ui.massive.images img,.ui.massive.images svg{width:960px;height:auto;font-size:1.69230769rem}.ui.images{font-size:0;margin:0 -.25rem}.ui.images .image,.ui.images img,.ui.images svg{display:inline-block;margin:0 .25rem .5rem} | |||
| @ -0,0 +1,548 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Input | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Standard | |||
| *******************************/ | |||
| /*-------------------- | |||
| Inputs | |||
| ---------------------*/ | |||
| .ui.input { | |||
| position: relative; | |||
| font-weight: normal; | |||
| font-style: normal; | |||
| display: -webkit-inline-box; | |||
| display: -webkit-inline-flex; | |||
| display: -ms-inline-flexbox; | |||
| display: inline-flex; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.input input { | |||
| margin: 0em; | |||
| max-width: 100%; | |||
| -webkit-box-flex: 1; | |||
| -webkit-flex: 1 0 auto; | |||
| -ms-flex: 1 0 auto; | |||
| flex: 1 0 auto; | |||
| outline: none; | |||
| -webkit-tap-highlight-color: rgba(255, 255, 255, 0); | |||
| text-align: left; | |||
| line-height: 1.2142em; | |||
| font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif; | |||
| padding: 0.43136154em 0.61538462em; | |||
| background: #FFFFFF; | |||
| border: 1px solid #CCCCCC; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| border-radius: 0.2307em; | |||
| -webkit-transition: box-shadow 0.1s ease, border-color 0.1s ease; | |||
| transition: box-shadow 0.1s ease, border-color 0.1s ease; | |||
| box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075) inset; | |||
| } | |||
| /*-------------------- | |||
| Placeholder | |||
| ---------------------*/ | |||
| /* browsers require these rules separate */ | |||
| .ui.input input::-webkit-input-placeholder { | |||
| color: rgba(0, 0, 0, 0.4); | |||
| } | |||
| .ui.input input::-moz-placeholder { | |||
| color: rgba(0, 0, 0, 0.4); | |||
| } | |||
| .ui.input input::-ms-input-placeholder { | |||
| color: rgba(0, 0, 0, 0.4); | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| /*-------------------- | |||
| Disabled | |||
| ---------------------*/ | |||
| .ui.disabled.input, | |||
| .ui.input input[disabled] { | |||
| opacity: 0.3; | |||
| } | |||
| .ui.disabled.input input { | |||
| pointer-events: none; | |||
| } | |||
| /*-------------------- | |||
| Active | |||
| ---------------------*/ | |||
| .ui.input input:active, | |||
| .ui.input.down input { | |||
| border-color: rgba(0, 0, 0, 0.3); | |||
| background: #FAFAFA; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| box-shadow: none; | |||
| } | |||
| /*-------------------- | |||
| Loading | |||
| ---------------------*/ | |||
| .ui.loading.loading.input > i.icon:before { | |||
| position: absolute; | |||
| content: ''; | |||
| top: 50%; | |||
| left: 50%; | |||
| margin: -0.65384615em 0em 0em -0.65384615em; | |||
| width: 1.30769231em; | |||
| height: 1.30769231em; | |||
| border-radius: 500rem; | |||
| border: 0.2em solid rgba(0, 0, 0, 0.1); | |||
| } | |||
| .ui.loading.loading.input > i.icon:after { | |||
| position: absolute; | |||
| content: ''; | |||
| top: 50%; | |||
| left: 50%; | |||
| margin: -0.65384615em 0em 0em -0.65384615em; | |||
| width: 1.30769231em; | |||
| height: 1.30769231em; | |||
| -webkit-animation: button-spin 0.6s linear; | |||
| animation: button-spin 0.6s linear; | |||
| -webkit-animation-iteration-count: infinite; | |||
| animation-iteration-count: infinite; | |||
| border-radius: 500rem; | |||
| border-color: #767676 transparent transparent; | |||
| border-style: solid; | |||
| border-width: 0.2em; | |||
| box-shadow: 0px 0px 0px 1px transparent; | |||
| } | |||
| /*-------------------- | |||
| Focus | |||
| ---------------------*/ | |||
| .ui.input.focus input, | |||
| .ui.input input:focus { | |||
| border-color: #51A7E8; | |||
| background: #FFFFFF; | |||
| color: rgba(0, 0, 0, 0.8); | |||
| box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075) inset, 0 0 5px rgba(81, 167, 232, 0.5); | |||
| } | |||
| .ui.input.focus input::-webkit-input-placeholder, | |||
| .ui.input input:focus::-webkit-input-placeholder { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.input.focus input::-moz-placeholder, | |||
| .ui.input input:focus::-moz-placeholder { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.input.focus input::-ms-input-placeholder, | |||
| .ui.input input:focus::-ms-input-placeholder { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /*-------------------- | |||
| Error | |||
| ---------------------*/ | |||
| .ui.input.error input { | |||
| background-color: #FFF6F6; | |||
| border-color: #E0B4B4; | |||
| color: #9F3A38; | |||
| box-shadow: none; | |||
| } | |||
| /* Error Placeholder */ | |||
| .ui.input.error input::-webkit-input-placeholder { | |||
| color: #e7bdbc; | |||
| } | |||
| .ui.input.error input::-moz-placeholder { | |||
| color: #e7bdbc; | |||
| } | |||
| .ui.input.error input::-ms-input-placeholder { | |||
| color: #e7bdbc; | |||
| } | |||
| /* Focused Error Placeholder */ | |||
| .ui.input.error input:focus::-webkit-input-placeholder { | |||
| color: #da9796; | |||
| } | |||
| .ui.input.error input:focus::-moz-placeholder { | |||
| color: #da9796; | |||
| } | |||
| .ui.input.error input:focus::-ms-input-placeholder { | |||
| color: #da9796; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*-------------------- | |||
| Transparent | |||
| ---------------------*/ | |||
| .ui.transparent.input input { | |||
| border-color: transparent !important; | |||
| background-color: transparent !important; | |||
| padding: 0em !important; | |||
| box-shadow: none !important; | |||
| } | |||
| /* Transparent Icon */ | |||
| .ui.transparent.icon.input > i.icon { | |||
| width: 1.1em; | |||
| } | |||
| .ui.transparent.icon.input > input { | |||
| padding-left: 0em !important; | |||
| padding-right: 2em !important; | |||
| } | |||
| .ui.transparent[class*="left icon"].input > input { | |||
| padding-left: 2em !important; | |||
| padding-right: 0em !important; | |||
| } | |||
| /* Transparent Inverted */ | |||
| .ui.transparent.inverted.input { | |||
| color: #FFFFFF; | |||
| } | |||
| .ui.transparent.inverted.input input { | |||
| color: inherit; | |||
| } | |||
| .ui.transparent.inverted.input input::-webkit-input-placeholder { | |||
| color: rgba(255, 255, 255, 0.5); | |||
| } | |||
| .ui.transparent.inverted.input input::-moz-placeholder { | |||
| color: rgba(255, 255, 255, 0.5); | |||
| } | |||
| .ui.transparent.inverted.input input::-ms-input-placeholder { | |||
| color: rgba(255, 255, 255, 0.5); | |||
| } | |||
| /*-------------------- | |||
| Icon | |||
| ---------------------*/ | |||
| .ui.icon.input > i.icon { | |||
| cursor: default; | |||
| position: absolute; | |||
| line-height: 1; | |||
| text-align: center; | |||
| top: 0px; | |||
| right: 0px; | |||
| margin: 0em; | |||
| height: 100%; | |||
| width: 2.17692308em; | |||
| opacity: 0.5; | |||
| border-radius: 0em 0.2307em 0.2307em 0em; | |||
| -webkit-transition: opacity 0.3s ease; | |||
| transition: opacity 0.3s ease; | |||
| } | |||
| .ui.icon.input > i.icon:not(.link) { | |||
| pointer-events: none; | |||
| } | |||
| .ui.icon.input input { | |||
| padding-right: 2.17692308em !important; | |||
| } | |||
| .ui.icon.input > i.icon:before, | |||
| .ui.icon.input > i.icon:after { | |||
| left: 0; | |||
| position: absolute; | |||
| text-align: center; | |||
| top: 50%; | |||
| width: 100%; | |||
| margin-top: -0.5em; | |||
| } | |||
| .ui.icon.input > i.link.icon { | |||
| cursor: pointer; | |||
| } | |||
| .ui.icon.input > i.circular.icon { | |||
| top: 0.35em; | |||
| right: 0.5em; | |||
| } | |||
| /* Left Icon Input */ | |||
| .ui[class*="left icon"].input > i.icon { | |||
| right: auto; | |||
| left: 1px; | |||
| border-radius: 0.2307em 0em 0em 0.2307em; | |||
| } | |||
| .ui[class*="left icon"].input > i.circular.icon { | |||
| right: auto; | |||
| left: 0.5em; | |||
| } | |||
| .ui[class*="left icon"].input > input { | |||
| padding-left: 2.17692308em !important; | |||
| padding-right: 0.61538462em !important; | |||
| } | |||
| /* Focus */ | |||
| .ui.icon.input > input:focus ~ i.icon { | |||
| opacity: 1; | |||
| } | |||
| /*-------------------- | |||
| Labeled | |||
| ---------------------*/ | |||
| /* Adjacent Label */ | |||
| .ui.labeled.input > .label { | |||
| -webkit-box-flex: 0; | |||
| -webkit-flex: 0 0 auto; | |||
| -ms-flex: 0 0 auto; | |||
| flex: 0 0 auto; | |||
| margin: 0; | |||
| font-size: 1em; | |||
| } | |||
| .ui.labeled.input > .label:not(.corner) { | |||
| padding-top: 0.53846154em; | |||
| padding-bottom: 0.53846154em; | |||
| } | |||
| /* Regular Label on Left */ | |||
| .ui.labeled.input:not([class*="corner labeled"]) .label:first-child { | |||
| border-top-right-radius: 0px; | |||
| border-bottom-right-radius: 0px; | |||
| } | |||
| .ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input { | |||
| border-top-left-radius: 0px; | |||
| border-bottom-left-radius: 0px; | |||
| border-left-color: transparent; | |||
| } | |||
| .ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input:focus { | |||
| border-left-color: #51A7E8; | |||
| } | |||
| /* Regular Label on Right */ | |||
| .ui[class*="right labeled"].input input { | |||
| border-top-right-radius: 0px !important; | |||
| border-bottom-right-radius: 0px !important; | |||
| border-right-color: transparent !important; | |||
| } | |||
| .ui[class*="right labeled"].input input + .label { | |||
| border-top-left-radius: 0px; | |||
| border-bottom-left-radius: 0px; | |||
| } | |||
| .ui[class*="right labeled"].input input:focus { | |||
| border-right-color: #51A7E8 !important; | |||
| } | |||
| /* Corner Label */ | |||
| .ui.labeled.input .corner.label { | |||
| top: 1px; | |||
| right: 1px; | |||
| font-size: 0.69230769em; | |||
| border-radius: 0em 0.2307em 0em 0em; | |||
| } | |||
| /* Spacing with corner label */ | |||
| .ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input input { | |||
| padding-right: 2.5em !important; | |||
| } | |||
| .ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > input { | |||
| padding-right: 3.25em !important; | |||
| } | |||
| .ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > .icon { | |||
| margin-right: 1.25em; | |||
| } | |||
| /* Left Labeled */ | |||
| .ui[class*="left corner labeled"].labeled.input input { | |||
| padding-left: 2.5em !important; | |||
| } | |||
| .ui[class*="left corner labeled"].icon.input > input { | |||
| padding-left: 3.25em !important; | |||
| } | |||
| .ui[class*="left corner labeled"].icon.input > .icon { | |||
| margin-left: 1.25em; | |||
| } | |||
| /* Corner Label Position */ | |||
| .ui.input > .ui.corner.label { | |||
| top: 1px; | |||
| right: 1px; | |||
| } | |||
| .ui.input > .ui.left.corner.label { | |||
| right: auto; | |||
| left: 1px; | |||
| } | |||
| /*-------------------- | |||
| Action | |||
| ---------------------*/ | |||
| .ui.action.input > .button, | |||
| .ui.action.input > .buttons { | |||
| display: -webkit-box; | |||
| display: -webkit-flex; | |||
| display: -ms-flexbox; | |||
| display: flex; | |||
| -webkit-box-align: center; | |||
| -webkit-align-items: center; | |||
| -ms-flex-align: center; | |||
| align-items: center; | |||
| -webkit-box-flex: 0; | |||
| -webkit-flex: 0 0 auto; | |||
| -ms-flex: 0 0 auto; | |||
| flex: 0 0 auto; | |||
| } | |||
| .ui.action.input > .button, | |||
| .ui.action.input > .buttons > .button { | |||
| padding-top: 0.53846154em; | |||
| padding-bottom: 0.53846154em; | |||
| margin: 0; | |||
| } | |||
| /* Button on Right */ | |||
| .ui.action.input:not([class*="left action"]) > input { | |||
| border-top-right-radius: 0px !important; | |||
| border-bottom-right-radius: 0px !important; | |||
| border-right-color: transparent !important; | |||
| } | |||
| .ui.action.input:not([class*="left action"]) > .dropdown, | |||
| .ui.action.input:not([class*="left action"]) > .button, | |||
| .ui.action.input:not([class*="left action"]) > .buttons > .button { | |||
| border-radius: 0px; | |||
| } | |||
| .ui.action.input:not([class*="left action"]) > .dropdown:last-child, | |||
| .ui.action.input:not([class*="left action"]) > .button:last-child, | |||
| .ui.action.input:not([class*="left action"]) > .buttons:last-child > .button { | |||
| border-radius: 0px 0.2307em 0.2307em 0px; | |||
| } | |||
| /* Input Focus */ | |||
| .ui.action.input:not([class*="left action"]) input:focus { | |||
| border-right-color: #51A7E8 !important; | |||
| } | |||
| /* Button on Left */ | |||
| .ui[class*="left action"].input > input { | |||
| border-top-left-radius: 0px !important; | |||
| border-bottom-left-radius: 0px !important; | |||
| border-left-color: transparent !important; | |||
| } | |||
| .ui[class*="left action"].input > .dropdown, | |||
| .ui[class*="left action"].input > .button, | |||
| .ui[class*="left action"].input > .buttons > .button { | |||
| border-radius: 0px; | |||
| } | |||
| .ui[class*="left action"].input > .dropdown:first-child, | |||
| .ui[class*="left action"].input > .button:first-child, | |||
| .ui[class*="left action"].input > .buttons:first-child > .button { | |||
| border-radius: 0.2307em 0px 0px 0.2307em; | |||
| } | |||
| /* Input Focus */ | |||
| .ui[class*="left action"].input > input:focus { | |||
| border-left-color: #51A7E8 !important; | |||
| } | |||
| /*-------------------- | |||
| Inverted | |||
| ---------------------*/ | |||
| /* Standard */ | |||
| .ui.inverted.input input { | |||
| border: none; | |||
| } | |||
| /*-------------------- | |||
| Fluid | |||
| ---------------------*/ | |||
| .ui.fluid.input { | |||
| display: -webkit-box; | |||
| display: -webkit-flex; | |||
| display: -ms-flexbox; | |||
| display: flex; | |||
| } | |||
| .ui.fluid.input > input { | |||
| width: 0px !important; | |||
| } | |||
| /*-------------------- | |||
| Size | |||
| ---------------------*/ | |||
| .ui.mini.input { | |||
| font-size: 0.69230769em; | |||
| } | |||
| .ui.small.input { | |||
| font-size: 0.92307692em; | |||
| } | |||
| .ui.input { | |||
| font-size: 1em; | |||
| } | |||
| .ui.large.input { | |||
| font-size: 1.15384615em; | |||
| } | |||
| .ui.big.input { | |||
| font-size: 1.30769231em; | |||
| } | |||
| .ui.huge.input { | |||
| font-size: 1.46153846em; | |||
| } | |||
| .ui.massive.input { | |||
| font-size: 1.69230769em; | |||
| } | |||
| /******************************* | |||
| Input | |||
| *******************************/ | |||
| /* Labeled Input has padding */ | |||
| .ui.labeled.input { | |||
| background-color: #FFFFFF; | |||
| border: 1px solid #CCCCCC; | |||
| border-radius: 0.2307em !important; | |||
| } | |||
| .ui.labeled.input input { | |||
| box-shadow: none !important; | |||
| border: none !important; | |||
| } | |||
| .ui.labeled.input .label { | |||
| font-weight: normal; | |||
| -webkit-align-self: center; | |||
| -ms-flex-item-align: center; | |||
| align-self: center; | |||
| font-size: 12px; | |||
| margin: 0.15384615rem; | |||
| border-radius: 0.2307em !important; | |||
| padding: 0.38461538em 0.61538462em !important; | |||
| } | |||
| /* GitHub Uses Focus Group with class name added */ | |||
| .ui.labeled.input.focused { | |||
| border-color: #51A7E8; | |||
| box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075) inset, 0 0 5px rgba(81, 167, 232, 0.5); | |||
| } | |||
| .ui.labeled.input.focused .label { | |||
| background-color: #E1EAF5; | |||
| color: #4078C0; | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,476 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Item | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Standard | |||
| *******************************/ | |||
| /*-------------- | |||
| Item | |||
| ---------------*/ | |||
| .ui.items > .item { | |||
| display: -webkit-box; | |||
| display: -webkit-flex; | |||
| display: -ms-flexbox; | |||
| display: flex; | |||
| margin: 1em 0em; | |||
| width: 100%; | |||
| min-height: 0px; | |||
| background: transparent; | |||
| padding: 0em; | |||
| border: none; | |||
| border-radius: 0rem; | |||
| box-shadow: none; | |||
| -webkit-transition: box-shadow 0.1s ease; | |||
| transition: box-shadow 0.1s ease; | |||
| z-index: ''; | |||
| } | |||
| .ui.items > .item a { | |||
| cursor: pointer; | |||
| } | |||
| /*-------------- | |||
| Items | |||
| ---------------*/ | |||
| .ui.items { | |||
| margin: 1.5em 0em; | |||
| } | |||
| .ui.items:first-child { | |||
| margin-top: 0em !important; | |||
| } | |||
| .ui.items:last-child { | |||
| margin-bottom: 0em !important; | |||
| } | |||
| /*-------------- | |||
| Item | |||
| ---------------*/ | |||
| .ui.items > .item:after { | |||
| display: block; | |||
| content: ' '; | |||
| height: 0px; | |||
| clear: both; | |||
| overflow: hidden; | |||
| visibility: hidden; | |||
| } | |||
| .ui.items > .item:first-child { | |||
| margin-top: 0em; | |||
| } | |||
| .ui.items > .item:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| /*-------------- | |||
| Images | |||
| ---------------*/ | |||
| .ui.items > .item > .image { | |||
| position: relative; | |||
| -webkit-box-flex: 0; | |||
| -webkit-flex: 0 0 auto; | |||
| -ms-flex: 0 0 auto; | |||
| flex: 0 0 auto; | |||
| display: block; | |||
| float: none; | |||
| margin: 0em; | |||
| padding: 0em; | |||
| max-height: ''; | |||
| -webkit-align-self: top; | |||
| -ms-flex-item-align: top; | |||
| align-self: top; | |||
| } | |||
| .ui.items > .item > .image > img { | |||
| display: block; | |||
| width: 100%; | |||
| height: auto; | |||
| border-radius: 0.125rem; | |||
| border: none; | |||
| } | |||
| .ui.items > .item > .image:only-child > img { | |||
| border-radius: 0rem; | |||
| } | |||
| /*-------------- | |||
| Content | |||
| ---------------*/ | |||
| .ui.items > .item > .content { | |||
| display: block; | |||
| -webkit-box-flex: 1; | |||
| -webkit-flex: 1 1 auto; | |||
| -ms-flex: 1 1 auto; | |||
| flex: 1 1 auto; | |||
| background: none; | |||
| margin: 0em; | |||
| padding: 0em; | |||
| box-shadow: none; | |||
| font-size: 1em; | |||
| border: none; | |||
| border-radius: 0em; | |||
| } | |||
| .ui.items > .item > .content:after { | |||
| display: block; | |||
| content: ' '; | |||
| height: 0px; | |||
| clear: both; | |||
| overflow: hidden; | |||
| visibility: hidden; | |||
| } | |||
| .ui.items > .item > .image + .content { | |||
| min-width: 0; | |||
| width: auto; | |||
| display: block; | |||
| margin-left: 0em; | |||
| -webkit-align-self: top; | |||
| -ms-flex-item-align: top; | |||
| align-self: top; | |||
| padding-left: 1.5em; | |||
| } | |||
| .ui.items > .item > .content > .header { | |||
| display: inline-block; | |||
| margin: -0.21425em 0em 0em; | |||
| font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif; | |||
| font-weight: bold; | |||
| color: rgba(0, 0, 0, 0.85); | |||
| } | |||
| /* Default Header Size */ | |||
| .ui.items > .item > .content > .header:not(.ui) { | |||
| font-size: 1.30769231em; | |||
| } | |||
| /*-------------- | |||
| Floated | |||
| ---------------*/ | |||
| .ui.items > .item [class*="left floated"] { | |||
| float: left; | |||
| } | |||
| .ui.items > .item [class*="right floated"] { | |||
| float: right; | |||
| } | |||
| /*-------------- | |||
| Content Image | |||
| ---------------*/ | |||
| .ui.items > .item .content img { | |||
| -webkit-align-self: middle; | |||
| -ms-flex-item-align: middle; | |||
| align-self: middle; | |||
| width: ''; | |||
| } | |||
| .ui.items > .item img.avatar, | |||
| .ui.items > .item .avatar img { | |||
| width: ''; | |||
| height: ''; | |||
| border-radius: 500rem; | |||
| } | |||
| /*-------------- | |||
| Description | |||
| ---------------*/ | |||
| .ui.items > .item > .content > .description { | |||
| margin-top: 0.6em; | |||
| max-width: auto; | |||
| font-size: 1em; | |||
| line-height: 1.4285em; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /*-------------- | |||
| Paragraph | |||
| ---------------*/ | |||
| .ui.items > .item > .content p { | |||
| margin: 0em 0em 0.5em; | |||
| } | |||
| .ui.items > .item > .content p:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| /*-------------- | |||
| Meta | |||
| ---------------*/ | |||
| .ui.items > .item .meta { | |||
| margin: 0.5em 0em 0.5em; | |||
| font-size: 1em; | |||
| line-height: 1em; | |||
| color: rgba(0, 0, 0, 0.6); | |||
| } | |||
| .ui.items > .item .meta * { | |||
| margin-right: 0.3em; | |||
| } | |||
| .ui.items > .item .meta :last-child { | |||
| margin-right: 0em; | |||
| } | |||
| .ui.items > .item .meta [class*="right floated"] { | |||
| margin-right: 0em; | |||
| margin-left: 0.3em; | |||
| } | |||
| /*-------------- | |||
| Links | |||
| ---------------*/ | |||
| /* Generic */ | |||
| .ui.items > .item > .content a:not(.ui) { | |||
| color: ''; | |||
| -webkit-transition: color 0.1s ease; | |||
| transition: color 0.1s ease; | |||
| } | |||
| .ui.items > .item > .content a:not(.ui):hover { | |||
| color: ''; | |||
| } | |||
| /* Header */ | |||
| .ui.items > .item > .content > a.header { | |||
| color: rgba(0, 0, 0, 0.85); | |||
| } | |||
| .ui.items > .item > .content > a.header:hover { | |||
| color: #4078C0; | |||
| } | |||
| /* Meta */ | |||
| .ui.items > .item .meta > a:not(.ui) { | |||
| color: rgba(0, 0, 0, 0.4); | |||
| } | |||
| .ui.items > .item .meta > a:not(.ui):hover { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /*-------------- | |||
| Labels | |||
| ---------------*/ | |||
| /*-----Star----- */ | |||
| /* Icon */ | |||
| .ui.items > .item > .content .favorite.icon { | |||
| cursor: pointer; | |||
| opacity: 0.75; | |||
| -webkit-transition: color 0.1s ease; | |||
| transition: color 0.1s ease; | |||
| } | |||
| .ui.items > .item > .content .favorite.icon:hover { | |||
| opacity: 1; | |||
| color: #FFB70A; | |||
| } | |||
| .ui.items > .item > .content .active.favorite.icon { | |||
| color: #FFE623; | |||
| } | |||
| /*-----Like----- */ | |||
| /* Icon */ | |||
| .ui.items > .item > .content .like.icon { | |||
| cursor: pointer; | |||
| opacity: 0.75; | |||
| -webkit-transition: color 0.1s ease; | |||
| transition: color 0.1s ease; | |||
| } | |||
| .ui.items > .item > .content .like.icon:hover { | |||
| opacity: 1; | |||
| color: #FF2733; | |||
| } | |||
| .ui.items > .item > .content .active.like.icon { | |||
| color: #FF2733; | |||
| } | |||
| /*---------------- | |||
| Extra Content | |||
| -----------------*/ | |||
| .ui.items > .item .extra { | |||
| display: block; | |||
| position: relative; | |||
| background: none; | |||
| margin: 0.5rem 0em 0em; | |||
| width: 100%; | |||
| padding: 0em 0em 0em; | |||
| top: 0em; | |||
| left: 0em; | |||
| color: rgba(0, 0, 0, 0.4); | |||
| box-shadow: none; | |||
| -webkit-transition: color 0.1s ease; | |||
| transition: color 0.1s ease; | |||
| border-top: none; | |||
| } | |||
| .ui.items > .item .extra > * { | |||
| margin: 0.25rem 0.5rem 0.25rem 0em; | |||
| } | |||
| .ui.items > .item .extra > [class*="right floated"] { | |||
| margin: 0.25rem 0em 0.25rem 0.5rem; | |||
| } | |||
| .ui.items > .item .extra:after { | |||
| display: block; | |||
| content: ' '; | |||
| height: 0px; | |||
| clear: both; | |||
| overflow: hidden; | |||
| visibility: hidden; | |||
| } | |||
| /******************************* | |||
| Responsive | |||
| *******************************/ | |||
| /* Default Image Width */ | |||
| .ui.items > .item > .image:not(.ui) { | |||
| width: 175px; | |||
| } | |||
| /* Tablet Only */ | |||
| @media only screen and (min-width: 688px) and (max-width: 687px) { | |||
| .ui.items > .item { | |||
| margin: 1em 0em; | |||
| } | |||
| .ui.items > .item > .image:not(.ui) { | |||
| width: 150px; | |||
| } | |||
| .ui.items > .item > .image + .content { | |||
| display: block; | |||
| padding: 0em 0em 0em 1em; | |||
| } | |||
| } | |||
| /* Mobily Only */ | |||
| @media only screen and (max-width: 687px) { | |||
| .ui.items > .item { | |||
| -webkit-box-orient: vertical; | |||
| -webkit-box-direction: normal; | |||
| -webkit-flex-direction: column; | |||
| -ms-flex-direction: column; | |||
| flex-direction: column; | |||
| margin: 2em 0em; | |||
| } | |||
| .ui.items > .item > .image { | |||
| display: block; | |||
| margin-left: auto; | |||
| margin-right: auto; | |||
| } | |||
| .ui.items > .item > .image, | |||
| .ui.items > .item > .image > img { | |||
| max-width: 100% !important; | |||
| width: auto !important; | |||
| max-height: 250px !important; | |||
| } | |||
| .ui.items > .item > .image + .content { | |||
| display: block; | |||
| padding: 1.5em 0em 0em; | |||
| } | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*------------------- | |||
| Aligned | |||
| --------------------*/ | |||
| .ui.items > .item > .image + [class*="top aligned"].content { | |||
| -webkit-align-self: flex-start; | |||
| -ms-flex-item-align: start; | |||
| align-self: flex-start; | |||
| } | |||
| .ui.items > .item > .image + [class*="middle aligned"].content { | |||
| -webkit-align-self: center; | |||
| -ms-flex-item-align: center; | |||
| align-self: center; | |||
| } | |||
| .ui.items > .item > .image + [class*="bottom aligned"].content { | |||
| -webkit-align-self: flex-end; | |||
| -ms-flex-item-align: end; | |||
| align-self: flex-end; | |||
| } | |||
| /*-------------- | |||
| Relaxed | |||
| ---------------*/ | |||
| .ui.relaxed.items > .item { | |||
| margin: 1.5em 0em; | |||
| } | |||
| .ui[class*="very relaxed"].items > .item { | |||
| margin: 2em 0em; | |||
| } | |||
| /*------------------- | |||
| Divided | |||
| --------------------*/ | |||
| .ui.divided.items > .item { | |||
| border-top: 1px solid rgba(0, 0, 0, 0.13); | |||
| margin: 0em; | |||
| padding: 1em 0em; | |||
| } | |||
| .ui.divided.items > .item:first-child { | |||
| border-top: none; | |||
| margin-top: 0em !important; | |||
| padding-top: 0em !important; | |||
| } | |||
| .ui.divided.items > .item:last-child { | |||
| margin-bottom: 0em !important; | |||
| padding-bottom: 0em !important; | |||
| } | |||
| /* Relaxed Divided */ | |||
| .ui.relaxed.divided.items > .item { | |||
| margin: 0em; | |||
| padding: 1.5em 0em; | |||
| } | |||
| .ui[class*="very relaxed"].divided.items > .item { | |||
| margin: 0em; | |||
| padding: 2em 0em; | |||
| } | |||
| /*------------------- | |||
| Link | |||
| --------------------*/ | |||
| .ui.items a.item:hover, | |||
| .ui.link.items > .item:hover { | |||
| cursor: pointer; | |||
| } | |||
| .ui.items a.item:hover .content .header, | |||
| .ui.link.items > .item:hover .content .header { | |||
| color: #4078C0; | |||
| } | |||
| /*-------------- | |||
| Size | |||
| ---------------*/ | |||
| .ui.items > .item { | |||
| font-size: 1em; | |||
| } | |||
| /******************************* | |||
| User Variable Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,933 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - List | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| List | |||
| *******************************/ | |||
| ul.ui.list, | |||
| ol.ui.list, | |||
| .ui.list { | |||
| list-style-type: none; | |||
| margin: 1em 0em; | |||
| padding: 0em 0em; | |||
| } | |||
| ul.ui.list:first-child, | |||
| ol.ui.list:first-child, | |||
| .ui.list:first-child { | |||
| margin-top: 0em; | |||
| padding-top: 0em; | |||
| } | |||
| ul.ui.list:last-child, | |||
| ol.ui.list:last-child, | |||
| .ui.list:last-child { | |||
| margin-bottom: 0em; | |||
| padding-bottom: 0em; | |||
| } | |||
| /******************************* | |||
| Content | |||
| *******************************/ | |||
| /* List Item */ | |||
| ul.ui.list li, | |||
| ol.ui.list li, | |||
| .ui.list > .item, | |||
| .ui.list .list > .item { | |||
| display: list-item; | |||
| table-layout: fixed; | |||
| list-style-type: none; | |||
| list-style-position: outside; | |||
| padding: 0.23076923em 0em; | |||
| line-height: 1.15384615em; | |||
| } | |||
| ul.ui.list > li:first-child:after, | |||
| ol.ui.list > li:first-child:after, | |||
| .ui.list > .list > .item, | |||
| .ui.list > .item:after { | |||
| content: ''; | |||
| display: block; | |||
| height: 0; | |||
| clear: both; | |||
| visibility: hidden; | |||
| } | |||
| ul.ui.list li:first-child, | |||
| ol.ui.list li:first-child, | |||
| .ui.list .list > .item:first-child, | |||
| .ui.list > .item:first-child { | |||
| padding-top: 0em; | |||
| } | |||
| ul.ui.list li:last-child, | |||
| ol.ui.list li:last-child, | |||
| .ui.list .list > .item:last-child, | |||
| .ui.list > .item:last-child { | |||
| padding-bottom: 0em; | |||
| } | |||
| /* Child List */ | |||
| ul.ui.list ul, | |||
| ol.ui.list ol, | |||
| .ui.list .list { | |||
| clear: both; | |||
| margin: 0em; | |||
| padding: 0.75em 0em 0.25em 0.5em; | |||
| } | |||
| /* Child Item */ | |||
| ul.ui.list ul li, | |||
| ol.ui.list ol li, | |||
| .ui.list .list > .item { | |||
| padding: 0.15384615em 0em; | |||
| line-height: inherit; | |||
| } | |||
| /* Icon */ | |||
| .ui.list .list > .item > i.icon, | |||
| .ui.list > .item > i.icon { | |||
| display: table-cell; | |||
| margin: 0em; | |||
| padding-top: 0.07692308em; | |||
| padding-right: 0.30769231em; | |||
| vertical-align: top; | |||
| -webkit-transition: color 0.1s ease; | |||
| transition: color 0.1s ease; | |||
| } | |||
| .ui.list .list > .item > i.icon:only-child, | |||
| .ui.list > .item > i.icon:only-child { | |||
| display: inline-block; | |||
| vertical-align: top; | |||
| } | |||
| /* Image */ | |||
| .ui.list .list > .item > .image, | |||
| .ui.list > .item > .image { | |||
| display: table-cell; | |||
| background-color: transparent; | |||
| margin: 0em; | |||
| vertical-align: top; | |||
| } | |||
| .ui.list .list > .item > .image:not(:only-child):not(img), | |||
| .ui.list > .item > .image:not(:only-child):not(img) { | |||
| padding-right: 0.5em; | |||
| } | |||
| .ui.list .list > .item > .image img, | |||
| .ui.list > .item > .image img { | |||
| vertical-align: top; | |||
| } | |||
| .ui.list .list > .item > img.image, | |||
| .ui.list .list > .item > .image:only-child, | |||
| .ui.list > .item > img.image, | |||
| .ui.list > .item > .image:only-child { | |||
| display: inline-block; | |||
| } | |||
| /* Content */ | |||
| .ui.list .list > .item > .content, | |||
| .ui.list > .item > .content { | |||
| line-height: 1.15384615em; | |||
| } | |||
| .ui.list .list > .item > .image + .content, | |||
| .ui.list .list > .item > .icon + .content, | |||
| .ui.list > .item > .image + .content, | |||
| .ui.list > .item > .icon + .content { | |||
| display: table-cell; | |||
| padding: 0em 0em 0em 0.5em; | |||
| vertical-align: top; | |||
| } | |||
| .ui.list .list > .item > img.image + .content, | |||
| .ui.list > .item > img.image + .content { | |||
| display: inline-block; | |||
| } | |||
| .ui.list .list > .item > .content > .list, | |||
| .ui.list > .item > .content > .list { | |||
| margin-left: 0em; | |||
| padding-left: 0em; | |||
| } | |||
| /* Header */ | |||
| .ui.list .list > .item .header, | |||
| .ui.list > .item .header { | |||
| display: block; | |||
| margin: 0em; | |||
| font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif; | |||
| font-weight: bold; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /* Description */ | |||
| .ui.list .list > .item .description, | |||
| .ui.list > .item .description { | |||
| display: block; | |||
| color: rgba(0, 0, 0, 0.7); | |||
| } | |||
| /* Child Link */ | |||
| .ui.list > .item a, | |||
| .ui.list .list > .item a { | |||
| cursor: pointer; | |||
| } | |||
| /* Linking Item */ | |||
| .ui.list .list > a.item, | |||
| .ui.list > a.item { | |||
| cursor: pointer; | |||
| color: #4078C0; | |||
| } | |||
| .ui.list .list > a.item:hover, | |||
| .ui.list > a.item:hover { | |||
| color: #4078C0; | |||
| } | |||
| /* Linked Item Icons */ | |||
| .ui.list .list > a.item i.icon, | |||
| .ui.list > a.item i.icon { | |||
| color: rgba(0, 0, 0, 0.4); | |||
| } | |||
| /* Header Link */ | |||
| .ui.list .list > .item a.header, | |||
| .ui.list > .item a.header { | |||
| cursor: pointer; | |||
| color: #4078C0 !important; | |||
| } | |||
| .ui.list .list > .item a.header:hover, | |||
| .ui.list > .item a.header:hover { | |||
| color: #4078C0 !important; | |||
| } | |||
| /* Floated Content */ | |||
| .ui[class*="left floated"].list { | |||
| float: left; | |||
| } | |||
| .ui[class*="right floated"].list { | |||
| float: right; | |||
| } | |||
| .ui.list .list > .item [class*="left floated"], | |||
| .ui.list > .item [class*="left floated"] { | |||
| float: left; | |||
| margin: 0em 1em 0em 0em; | |||
| } | |||
| .ui.list .list > .item [class*="right floated"], | |||
| .ui.list > .item [class*="right floated"] { | |||
| float: right; | |||
| margin: 0em 0em 0em 1em; | |||
| } | |||
| /******************************* | |||
| Coupling | |||
| *******************************/ | |||
| .ui.menu .ui.list > .item, | |||
| .ui.menu .ui.list .list > .item { | |||
| display: list-item; | |||
| table-layout: fixed; | |||
| background-color: transparent; | |||
| list-style-type: none; | |||
| list-style-position: outside; | |||
| padding: 0.23076923em 0em; | |||
| line-height: 1.15384615em; | |||
| } | |||
| .ui.menu .ui.list .list > .item:before, | |||
| .ui.menu .ui.list > .item:before { | |||
| border: none; | |||
| background: none; | |||
| } | |||
| .ui.menu .ui.list .list > .item:first-child, | |||
| .ui.menu .ui.list > .item:first-child { | |||
| padding-top: 0em; | |||
| } | |||
| .ui.menu .ui.list .list > .item:last-child, | |||
| .ui.menu .ui.list > .item:last-child { | |||
| padding-bottom: 0em; | |||
| } | |||
| /******************************* | |||
| Types | |||
| *******************************/ | |||
| /*------------------- | |||
| Horizontal | |||
| --------------------*/ | |||
| .ui.horizontal.list { | |||
| display: inline-block; | |||
| font-size: 0em; | |||
| } | |||
| .ui.horizontal.list > .item { | |||
| display: inline-block; | |||
| margin-left: 1em; | |||
| font-size: 1rem; | |||
| } | |||
| .ui.horizontal.list:not(.celled) > .item:first-child { | |||
| margin-left: 0em !important; | |||
| padding-left: 0em !important; | |||
| } | |||
| .ui.horizontal.list .list { | |||
| padding-left: 0em; | |||
| padding-bottom: 0em; | |||
| } | |||
| .ui.horizontal.list > .item > .image, | |||
| .ui.horizontal.list .list > .item > .image, | |||
| .ui.horizontal.list > .item > .icon, | |||
| .ui.horizontal.list .list > .item > .icon, | |||
| .ui.horizontal.list > .item > .content, | |||
| .ui.horizontal.list .list > .item > .content { | |||
| vertical-align: middle; | |||
| } | |||
| /* Padding on all elements */ | |||
| .ui.horizontal.list > .item:first-child, | |||
| .ui.horizontal.list > .item:last-child { | |||
| padding-top: 0.23076923em; | |||
| padding-bottom: 0.23076923em; | |||
| } | |||
| /* Horizontal List */ | |||
| .ui.horizontal.list > .item > i.icon { | |||
| margin: 0em; | |||
| padding: 0em 0.25em 0em 0em; | |||
| } | |||
| .ui.horizontal.list > .item > .icon, | |||
| .ui.horizontal.list > .item > .icon + .content { | |||
| float: none; | |||
| display: inline-block; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| /*------------------- | |||
| Disabled | |||
| --------------------*/ | |||
| .ui.list .list > .disabled.item, | |||
| .ui.list > .disabled.item { | |||
| pointer-events: none; | |||
| color: rgba(40, 40, 40, 0.3) !important; | |||
| } | |||
| .ui.inverted.list .list > .disabled.item, | |||
| .ui.inverted.list > .disabled.item { | |||
| color: rgba(225, 225, 225, 0.3) !important; | |||
| } | |||
| /*------------------- | |||
| Hover | |||
| --------------------*/ | |||
| .ui.list .list > a.item:hover .icon, | |||
| .ui.list > a.item:hover .icon { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*------------------- | |||
| Inverted | |||
| --------------------*/ | |||
| .ui.inverted.list .list > a.item > .icon, | |||
| .ui.inverted.list > a.item > .icon { | |||
| color: rgba(255, 255, 255, 0.7); | |||
| } | |||
| .ui.inverted.list .list > .item .header, | |||
| .ui.inverted.list > .item .header { | |||
| color: rgba(255, 255, 255, 0.9); | |||
| } | |||
| .ui.inverted.list .list > .item .description, | |||
| .ui.inverted.list > .item .description { | |||
| color: rgba(255, 255, 255, 0.7); | |||
| } | |||
| /* Item Link */ | |||
| .ui.inverted.list .list > a.item, | |||
| .ui.inverted.list > a.item { | |||
| cursor: pointer; | |||
| color: rgba(255, 255, 255, 0.9); | |||
| } | |||
| .ui.inverted.list .list > a.item:hover, | |||
| .ui.inverted.list > a.item:hover { | |||
| color: #4078C0; | |||
| } | |||
| /* Linking Content */ | |||
| .ui.inverted.list .item a:not(.ui) { | |||
| color: rgba(255, 255, 255, 0.9) !important; | |||
| } | |||
| .ui.inverted.list .item a:not(.ui):hover { | |||
| color: #4078C0 !important; | |||
| } | |||
| /*------------------- | |||
| Aligned | |||
| --------------------*/ | |||
| .ui.list[class*="top aligned"] .image, | |||
| .ui.list[class*="top aligned"] .content, | |||
| .ui.list [class*="top aligned"] { | |||
| vertical-align: top !important; | |||
| } | |||
| .ui.list[class*="middle aligned"] .image, | |||
| .ui.list[class*="middle aligned"] .content, | |||
| .ui.list [class*="middle aligned"] { | |||
| vertical-align: middle !important; | |||
| } | |||
| .ui.list[class*="bottom aligned"] .image, | |||
| .ui.list[class*="bottom aligned"] .content, | |||
| .ui.list [class*="bottom aligned"] { | |||
| vertical-align: bottom !important; | |||
| } | |||
| /*------------------- | |||
| Link | |||
| --------------------*/ | |||
| .ui.link.list .item, | |||
| .ui.link.list a.item, | |||
| .ui.link.list .item a:not(.ui) { | |||
| color: rgba(0, 0, 0, 0.4); | |||
| -webkit-transition: 0.1s color ease; | |||
| transition: 0.1s color ease; | |||
| } | |||
| .ui.link.list a.item:hover, | |||
| .ui.link.list .item a:not(.ui):hover { | |||
| color: rgba(0, 0, 0, 0.8); | |||
| } | |||
| .ui.link.list a.item:active, | |||
| .ui.link.list .item a:not(.ui):active { | |||
| color: rgba(0, 0, 0, 0.9); | |||
| } | |||
| .ui.link.list .active.item, | |||
| .ui.link.list .active.item a:not(.ui) { | |||
| color: rgba(0, 0, 0, 0.95); | |||
| } | |||
| /* Inverted */ | |||
| .ui.inverted.link.list .item, | |||
| .ui.inverted.link.list a.item, | |||
| .ui.inverted.link.list .item a:not(.ui) { | |||
| color: rgba(255, 255, 255, 0.5); | |||
| } | |||
| .ui.inverted.link.list a.item:hover, | |||
| .ui.inverted.link.list .item a:not(.ui):hover { | |||
| color: #ffffff; | |||
| } | |||
| .ui.inverted.link.list a.item:active, | |||
| .ui.inverted.link.list .item a:not(.ui):active { | |||
| color: #ffffff; | |||
| } | |||
| .ui.inverted.link.list a.active.item, | |||
| .ui.inverted.link.list .active.item a:not(.ui) { | |||
| color: #ffffff; | |||
| } | |||
| /*------------------- | |||
| Selection | |||
| --------------------*/ | |||
| .ui.selection.list .list > .item, | |||
| .ui.selection.list > .item { | |||
| cursor: pointer; | |||
| background: transparent; | |||
| padding: 0.5em 0.5em; | |||
| margin: 0em; | |||
| color: rgba(0, 0, 0, 0.4); | |||
| border-radius: 0.5em; | |||
| -webkit-transition: 0.1s color ease, 0.1s padding-left ease, 0.1s background-color ease; | |||
| transition: 0.1s color ease, 0.1s padding-left ease, 0.1s background-color ease; | |||
| } | |||
| .ui.selection.list .list > .item:last-child, | |||
| .ui.selection.list > .item:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| .ui.selection.list.list > .item:hover, | |||
| .ui.selection.list > .item:hover { | |||
| background: rgba(0, 0, 0, 0.03); | |||
| color: rgba(0, 0, 0, 0.8); | |||
| } | |||
| .ui.selection.list .list > .item:active, | |||
| .ui.selection.list > .item:active { | |||
| background: rgba(0, 0, 0, 0.05); | |||
| color: rgba(0, 0, 0, 0.9); | |||
| } | |||
| .ui.selection.list .list > .item.active, | |||
| .ui.selection.list > .item.active { | |||
| background: rgba(0, 0, 0, 0.05); | |||
| color: rgba(0, 0, 0, 0.95); | |||
| } | |||
| /* Inverted */ | |||
| .ui.inverted.selection.list > .item, | |||
| .ui.inverted.selection.list > .item { | |||
| background: transparent; | |||
| color: rgba(255, 255, 255, 0.5); | |||
| } | |||
| .ui.inverted.selection.list > .item:hover, | |||
| .ui.inverted.selection.list > .item:hover { | |||
| background: rgba(255, 255, 255, 0.02); | |||
| color: #ffffff; | |||
| } | |||
| .ui.inverted.selection.list > .item:active, | |||
| .ui.inverted.selection.list > .item:active { | |||
| background: rgba(255, 255, 255, 0.08); | |||
| color: #ffffff; | |||
| } | |||
| .ui.inverted.selection.list > .item.active, | |||
| .ui.inverted.selection.list > .item.active { | |||
| background: rgba(255, 255, 255, 0.08); | |||
| color: #ffffff; | |||
| } | |||
| /* Celled / Divided Selection List */ | |||
| .ui.celled.selection.list .list > .item, | |||
| .ui.divided.selection.list .list > .item, | |||
| .ui.celled.selection.list > .item, | |||
| .ui.divided.selection.list > .item { | |||
| border-radius: 0em; | |||
| } | |||
| /*------------------- | |||
| Animated | |||
| --------------------*/ | |||
| .ui.animated.list > .item { | |||
| -webkit-transition: 0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s; | |||
| transition: 0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s; | |||
| } | |||
| .ui.animated.list:not(.horizontal) > .item:hover { | |||
| padding-left: 1em; | |||
| } | |||
| /*------------------- | |||
| Fitted | |||
| --------------------*/ | |||
| .ui.fitted.list:not(.selection) .list > .item, | |||
| .ui.fitted.list:not(.selection) > .item { | |||
| padding-left: 0em; | |||
| padding-right: 0em; | |||
| } | |||
| .ui.fitted.selection.list .list > .item, | |||
| .ui.fitted.selection.list > .item { | |||
| margin-left: -0.5em; | |||
| margin-right: -0.5em; | |||
| } | |||
| /*------------------- | |||
| Bulleted | |||
| --------------------*/ | |||
| ul.ui.list, | |||
| .ui.bulleted.list { | |||
| margin-left: 1.25rem; | |||
| } | |||
| ul.ui.list li, | |||
| .ui.bulleted.list .list > .item, | |||
| .ui.bulleted.list > .item { | |||
| position: relative; | |||
| } | |||
| ul.ui.list li:before, | |||
| .ui.bulleted.list .list > .item:before, | |||
| .ui.bulleted.list > .item:before { | |||
| -webkit-user-select: none; | |||
| -moz-user-select: none; | |||
| -ms-user-select: none; | |||
| user-select: none; | |||
| pointer-events: none; | |||
| position: absolute; | |||
| top: auto; | |||
| left: auto; | |||
| margin-left: -1.25rem; | |||
| content: '•'; | |||
| opacity: 1; | |||
| color: inherit; | |||
| vertical-align: top; | |||
| } | |||
| ul.ui.list ul, | |||
| .ui.bulleted.list .list { | |||
| padding-left: 1.25rem; | |||
| } | |||
| /* Horizontal Bulleted */ | |||
| ul.ui.horizontal.bulleted.list, | |||
| .ui.horizontal.bulleted.list { | |||
| margin-left: 0em; | |||
| } | |||
| ul.ui.horizontal.bulleted.list li, | |||
| .ui.horizontal.bulleted.list > .item { | |||
| margin-left: 1.75rem; | |||
| } | |||
| ul.ui.horizontal.bulleted.list li:first-child, | |||
| .ui.horizontal.bulleted.list > .item:first-child { | |||
| margin-left: 0em; | |||
| } | |||
| ul.ui.horizontal.bulleted.list li::before, | |||
| .ui.horizontal.bulleted.list > .item::before { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| ul.ui.horizontal.bulleted.list li:first-child::before, | |||
| .ui.horizontal.bulleted.list > .item:first-child::before { | |||
| display: none; | |||
| } | |||
| /*------------------- | |||
| Ordered | |||
| --------------------*/ | |||
| ol.ui.list, | |||
| .ui.ordered.list, | |||
| .ui.ordered.list .list, | |||
| ol.ui.list ol { | |||
| counter-reset: ordered; | |||
| margin-left: 1.25rem; | |||
| list-style-type: none; | |||
| } | |||
| ol.ui.list li, | |||
| .ui.ordered.list .list > .item, | |||
| .ui.ordered.list > .item { | |||
| list-style-type: none; | |||
| position: relative; | |||
| } | |||
| ol.ui.list li:before, | |||
| .ui.ordered.list .list > .item:before, | |||
| .ui.ordered.list > .item:before { | |||
| position: absolute; | |||
| top: auto; | |||
| left: auto; | |||
| -webkit-user-select: none; | |||
| -moz-user-select: none; | |||
| -ms-user-select: none; | |||
| user-select: none; | |||
| pointer-events: none; | |||
| margin-left: -1.25rem; | |||
| counter-increment: ordered; | |||
| content: counters(ordered, ".") " "; | |||
| text-align: right; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| vertical-align: middle; | |||
| opacity: 0.8; | |||
| } | |||
| ol.ui.inverted.list li:before, | |||
| .ui.ordered.inverted.list .list > .item:before, | |||
| .ui.ordered.inverted.list > .item:before { | |||
| color: rgba(255, 255, 255, 0.7); | |||
| } | |||
| /* Value */ | |||
| .ui.ordered.list > .list > .item[data-value], | |||
| .ui.ordered.list > .item[data-value] { | |||
| content: attr(data-value); | |||
| } | |||
| ol.ui.list li[value]:before { | |||
| content: attr(value); | |||
| } | |||
| /* Child Lists */ | |||
| ol.ui.list ol, | |||
| .ui.ordered.list .list { | |||
| margin-left: 1em; | |||
| } | |||
| ol.ui.list ol li:before, | |||
| .ui.ordered.list .list > .item:before { | |||
| margin-left: -2em; | |||
| } | |||
| /* Horizontal Ordered */ | |||
| ol.ui.horizontal.list, | |||
| .ui.ordered.horizontal.list { | |||
| margin-left: 0em; | |||
| } | |||
| ol.ui.horizontal.list li:before, | |||
| .ui.ordered.horizontal.list .list > .item:before, | |||
| .ui.ordered.horizontal.list > .item:before { | |||
| position: static; | |||
| margin: 0em 0.5em 0em 0em; | |||
| } | |||
| /*------------------- | |||
| Divided | |||
| --------------------*/ | |||
| .ui.divided.list > .item { | |||
| border-top: 1px solid rgba(0, 0, 0, 0.13); | |||
| } | |||
| .ui.divided.list .list > .item { | |||
| border-top: none; | |||
| } | |||
| .ui.divided.list .item .list > .item { | |||
| border-top: none; | |||
| } | |||
| .ui.divided.list .list > .item:first-child, | |||
| .ui.divided.list > .item:first-child { | |||
| border-top: none; | |||
| } | |||
| /* Sub Menu */ | |||
| .ui.divided.list:not(.horizontal) .list > .item:first-child { | |||
| border-top-width: 1px; | |||
| } | |||
| /* Divided bulleted */ | |||
| .ui.divided.bulleted.list:not(.horizontal), | |||
| .ui.divided.bulleted.list .list { | |||
| margin-left: 0em; | |||
| padding-left: 0em; | |||
| } | |||
| .ui.divided.bulleted.list > .item:not(.horizontal) { | |||
| padding-left: 1.25rem; | |||
| } | |||
| /* Divided Ordered */ | |||
| .ui.divided.ordered.list { | |||
| margin-left: 0em; | |||
| } | |||
| .ui.divided.ordered.list .list > .item, | |||
| .ui.divided.ordered.list > .item { | |||
| padding-left: 1.25rem; | |||
| } | |||
| .ui.divided.ordered.list .item .list { | |||
| margin-left: 0em; | |||
| margin-right: 0em; | |||
| padding-bottom: 0.23076923em; | |||
| } | |||
| .ui.divided.ordered.list .item .list > .item { | |||
| padding-left: 1em; | |||
| } | |||
| /* Divided Selection */ | |||
| .ui.divided.selection.list .list > .item, | |||
| .ui.divided.selection.list > .item { | |||
| margin: 0em; | |||
| border-radius: 0em; | |||
| } | |||
| /* Divided horizontal */ | |||
| .ui.divided.horizontal.list { | |||
| margin-left: 0em; | |||
| } | |||
| .ui.divided.horizontal.list > .item { | |||
| border-top: none; | |||
| border-left: 1px solid rgba(0, 0, 0, 0.13); | |||
| margin: 0em; | |||
| padding-left: 0.5em; | |||
| padding-right: 0.5em; | |||
| line-height: 0.6; | |||
| } | |||
| .ui.horizontal.divided.list > .item:first-child { | |||
| border-left: none; | |||
| } | |||
| /* Inverted */ | |||
| .ui.divided.inverted.list > .item, | |||
| .ui.divided.inverted.list > .list, | |||
| .ui.divided.inverted.horizontal.list > .item { | |||
| border-color: rgba(255, 255, 255, 0.1); | |||
| } | |||
| /*------------------- | |||
| Celled | |||
| --------------------*/ | |||
| .ui.celled.list > .item, | |||
| .ui.celled.list > .list { | |||
| border-top: 1px solid rgba(0, 0, 0, 0.13); | |||
| padding-left: 0.5em; | |||
| padding-right: 0.5em; | |||
| } | |||
| .ui.celled.list > .item:last-child { | |||
| border-bottom: 1px solid rgba(0, 0, 0, 0.13); | |||
| } | |||
| /* Padding on all elements */ | |||
| .ui.celled.list > .item:first-child, | |||
| .ui.celled.list > .item:last-child { | |||
| padding-top: 0.23076923em; | |||
| padding-bottom: 0.23076923em; | |||
| } | |||
| /* Sub Menu */ | |||
| .ui.celled.list .item .list > .item { | |||
| border-width: 0px; | |||
| } | |||
| .ui.celled.list .list > .item:first-child { | |||
| border-top-width: 0px; | |||
| } | |||
| /* Celled Bulleted */ | |||
| .ui.celled.bulleted.list { | |||
| margin-left: 0em; | |||
| } | |||
| .ui.celled.bulleted.list .list > .item, | |||
| .ui.celled.bulleted.list > .item { | |||
| padding-left: 1.25rem; | |||
| } | |||
| .ui.celled.bulleted.list .item .list { | |||
| margin-left: -1.25rem; | |||
| margin-right: -1.25rem; | |||
| padding-bottom: 0.23076923em; | |||
| } | |||
| /* Celled Ordered */ | |||
| .ui.celled.ordered.list { | |||
| margin-left: 0em; | |||
| } | |||
| .ui.celled.ordered.list .list > .item, | |||
| .ui.celled.ordered.list > .item { | |||
| padding-left: 1.25rem; | |||
| } | |||
| .ui.celled.ordered.list .item .list { | |||
| margin-left: 0em; | |||
| margin-right: 0em; | |||
| padding-bottom: 0.23076923em; | |||
| } | |||
| .ui.celled.ordered.list .list > .item { | |||
| padding-left: 1em; | |||
| } | |||
| /* Celled Horizontal */ | |||
| .ui.horizontal.celled.list { | |||
| margin-left: 0em; | |||
| } | |||
| .ui.horizontal.celled.list .list > .item, | |||
| .ui.horizontal.celled.list > .item { | |||
| border-top: none; | |||
| border-left: 1px solid rgba(0, 0, 0, 0.13); | |||
| margin: 0em; | |||
| padding-left: 0.5em; | |||
| padding-right: 0.5em; | |||
| line-height: 0.6; | |||
| } | |||
| .ui.horizontal.celled.list .list > .item:last-child, | |||
| .ui.horizontal.celled.list > .item:last-child { | |||
| border-bottom: none; | |||
| border-right: 1px solid rgba(0, 0, 0, 0.13); | |||
| } | |||
| /* Inverted */ | |||
| .ui.celled.inverted.list > .item, | |||
| .ui.celled.inverted.list > .list { | |||
| border-color: 1px solid rgba(255, 255, 255, 0.1); | |||
| } | |||
| .ui.celled.inverted.horizontal.list .list > .item, | |||
| .ui.celled.inverted.horizontal.list > .item { | |||
| border-color: 1px solid rgba(255, 255, 255, 0.1); | |||
| } | |||
| /*------------------- | |||
| Relaxed | |||
| --------------------*/ | |||
| .ui.relaxed.list:not(.horizontal) > .item { | |||
| padding-top: 0.46153846em; | |||
| padding-bottom: 0.46153846em; | |||
| } | |||
| .ui.relaxed.list:not(.horizontal) .list > .item { | |||
| padding-top: 0.23076923em; | |||
| padding-bottom: 0.23076923em; | |||
| } | |||
| .ui.horizontal.relaxed.list > .item { | |||
| padding-left: 1rem; | |||
| padding-right: 1rem; | |||
| } | |||
| /* Very Relaxed */ | |||
| .ui[class*="very relaxed"].list:not(.horizontal) > .item { | |||
| padding-top: 0.92307692em; | |||
| padding-bottom: 0.92307692em; | |||
| } | |||
| .ui[class*="very relaxed"].list:not(.horizontal) .list > .item { | |||
| padding-top: 0.30769231em; | |||
| padding-bottom: 0.30769231em; | |||
| } | |||
| .ui.horizontal[class*="very relaxed"].list .list > .item, | |||
| .ui.horizontal[class*="very relaxed"].list > .item { | |||
| padding-left: 1.5rem; | |||
| padding-right: 1.5rem; | |||
| } | |||
| /*------------------- | |||
| Sizes | |||
| --------------------*/ | |||
| .ui.mini.list { | |||
| font-size: 0.69230769em; | |||
| } | |||
| .ui.tiny.list { | |||
| font-size: 0.84615385em; | |||
| } | |||
| .ui.small.list { | |||
| font-size: 0.92307692em; | |||
| } | |||
| .ui.list { | |||
| font-size: 1em; | |||
| } | |||
| .ui.large.list { | |||
| font-size: 1.15384615em; | |||
| } | |||
| .ui.big.list { | |||
| font-size: 1.30769231em; | |||
| } | |||
| .ui.huge.list { | |||
| font-size: 1.46153846em; | |||
| } | |||
| .ui.massive.list { | |||
| font-size: 1.69230769em; | |||
| } | |||
| .ui.mini.horizontal.list .list > .item, | |||
| .ui.mini.horizontal.list > .item { | |||
| font-size: 0.69230769rem; | |||
| } | |||
| .ui.tiny.horizontal.list .list > .item, | |||
| .ui.tiny.horizontal.list > .item { | |||
| font-size: 0.84615385rem; | |||
| } | |||
| .ui.small.horizontal.list .list > .item, | |||
| .ui.small.horizontal.list > .item { | |||
| font-size: 0.92307692rem; | |||
| } | |||
| .ui.horizontal.list .list > .item, | |||
| .ui.horizontal.list > .item { | |||
| font-size: 1rem; | |||
| } | |||
| .ui.large.horizontal.list .list > .item, | |||
| .ui.large.horizontal.list > .item { | |||
| font-size: 1.15384615rem; | |||
| } | |||
| .ui.big.horizontal.list .list > .item, | |||
| .ui.big.horizontal.list > .item { | |||
| font-size: 1.30769231rem; | |||
| } | |||
| .ui.huge.horizontal.list .list > .item, | |||
| .ui.huge.horizontal.list > .item { | |||
| font-size: 1.46153846rem; | |||
| } | |||
| .ui.massive.horizontal.list .list > .item, | |||
| .ui.massive.horizontal.list > .item { | |||
| font-size: 1.69230769rem; | |||
| } | |||
| /******************************* | |||
| User Variable Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,278 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Loader | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Loader | |||
| *******************************/ | |||
| /* Standard Size */ | |||
| .ui.loader { | |||
| display: none; | |||
| position: absolute; | |||
| top: 50%; | |||
| left: 50%; | |||
| margin: 0px; | |||
| text-align: center; | |||
| z-index: 1000; | |||
| -webkit-transform: translateX(-50%) translateY(-50%); | |||
| transform: translateX(-50%) translateY(-50%); | |||
| } | |||
| /* Static Shape */ | |||
| .ui.loader:before { | |||
| position: absolute; | |||
| content: ''; | |||
| top: 0%; | |||
| left: 50%; | |||
| width: 100%; | |||
| height: 100%; | |||
| border-radius: 500rem; | |||
| border: 0.2em solid rgba(0, 0, 0, 0.1); | |||
| } | |||
| /* Active Shape */ | |||
| .ui.loader:after { | |||
| position: absolute; | |||
| content: ''; | |||
| top: 0%; | |||
| left: 50%; | |||
| width: 100%; | |||
| height: 100%; | |||
| -webkit-animation: loader 0.6s linear; | |||
| animation: loader 0.6s linear; | |||
| -webkit-animation-iteration-count: infinite; | |||
| animation-iteration-count: infinite; | |||
| border-radius: 500rem; | |||
| border-color: #767676 transparent transparent; | |||
| border-style: solid; | |||
| border-width: 0.2em; | |||
| box-shadow: 0px 0px 0px 1px transparent; | |||
| } | |||
| /* Active Animation */ | |||
| @-webkit-keyframes loader { | |||
| from { | |||
| -webkit-transform: rotate(0deg); | |||
| transform: rotate(0deg); | |||
| } | |||
| to { | |||
| -webkit-transform: rotate(360deg); | |||
| transform: rotate(360deg); | |||
| } | |||
| } | |||
| @keyframes loader { | |||
| from { | |||
| -webkit-transform: rotate(0deg); | |||
| transform: rotate(0deg); | |||
| } | |||
| to { | |||
| -webkit-transform: rotate(360deg); | |||
| transform: rotate(360deg); | |||
| } | |||
| } | |||
| /* Sizes */ | |||
| .ui.loader:before, | |||
| .ui.loader:after { | |||
| width: 2.2585em; | |||
| height: 2.2585em; | |||
| margin: 0em 0em 0em -1.12925em; | |||
| } | |||
| .ui.mini.loader:before, | |||
| .ui.mini.loader:after { | |||
| width: 1.2857em; | |||
| height: 1.2857em; | |||
| margin: 0em 0em 0em -0.64285em; | |||
| } | |||
| .ui.small.loader:before, | |||
| .ui.small.loader:after { | |||
| width: 1.7142em; | |||
| height: 1.7142em; | |||
| margin: 0em 0em 0em -0.8571em; | |||
| } | |||
| .ui.large.loader:before, | |||
| .ui.large.loader:after { | |||
| width: 4.5714em; | |||
| height: 4.5714em; | |||
| margin: 0em 0em 0em -2.2857em; | |||
| } | |||
| /*------------------- | |||
| Coupling | |||
| --------------------*/ | |||
| /* Show inside active dimmer */ | |||
| .ui.dimmer .loader { | |||
| display: block; | |||
| } | |||
| /* Black Dimmer */ | |||
| .ui.dimmer .ui.loader { | |||
| color: rgba(255, 255, 255, 0.9); | |||
| } | |||
| .ui.dimmer .ui.loader:before { | |||
| border-color: rgba(255, 255, 255, 0.15); | |||
| } | |||
| .ui.dimmer .ui.loader:after { | |||
| border-color: #FFFFFF transparent transparent; | |||
| } | |||
| /* White Dimmer (Inverted) */ | |||
| .ui.inverted.dimmer .ui.loader { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.inverted.dimmer .ui.loader:before { | |||
| border-color: rgba(0, 0, 0, 0.1); | |||
| } | |||
| .ui.inverted.dimmer .ui.loader:after { | |||
| border-color: #767676 transparent transparent; | |||
| } | |||
| /******************************* | |||
| Types | |||
| *******************************/ | |||
| /*------------------- | |||
| Text | |||
| --------------------*/ | |||
| .ui.text.loader { | |||
| width: auto !important; | |||
| height: auto !important; | |||
| text-align: center; | |||
| font-style: normal; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| .ui.indeterminate.loader:after { | |||
| -webkit-animation-direction: reverse; | |||
| animation-direction: reverse; | |||
| -webkit-animation-duration: 1.2s; | |||
| animation-duration: 1.2s; | |||
| } | |||
| .ui.loader.active, | |||
| .ui.loader.visible { | |||
| display: block; | |||
| } | |||
| .ui.loader.disabled, | |||
| .ui.loader.hidden { | |||
| display: none; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*------------------- | |||
| Sizes | |||
| --------------------*/ | |||
| /* Loader */ | |||
| .ui.inverted.dimmer .ui.mini.loader, | |||
| .ui.mini.loader { | |||
| width: 1.2857em; | |||
| height: 1.2857em; | |||
| font-size: 0.69230769em; | |||
| } | |||
| .ui.inverted.dimmer .ui.small.loader, | |||
| .ui.small.loader { | |||
| width: 1.7142em; | |||
| height: 1.7142em; | |||
| font-size: 0.92307692em; | |||
| } | |||
| .ui.inverted.dimmer .ui.loader, | |||
| .ui.loader { | |||
| width: 2.2585em; | |||
| height: 2.2585em; | |||
| font-size: 1em; | |||
| } | |||
| .ui.inverted.dimmer .ui.loader.large, | |||
| .ui.loader.large { | |||
| width: 4.5714em; | |||
| height: 4.5714em; | |||
| font-size: 1.15384615em; | |||
| } | |||
| /* Text Loader */ | |||
| .ui.mini.text.loader { | |||
| min-width: 1.2857em; | |||
| padding-top: 1.97800769em; | |||
| } | |||
| .ui.small.text.loader { | |||
| min-width: 1.7142em; | |||
| padding-top: 2.40650769em; | |||
| } | |||
| .ui.text.loader { | |||
| min-width: 2.2585em; | |||
| padding-top: 2.95080769em; | |||
| } | |||
| .ui.large.text.loader { | |||
| min-width: 4.5714em; | |||
| padding-top: 5.26370769em; | |||
| } | |||
| /*------------------- | |||
| Inverted | |||
| --------------------*/ | |||
| .ui.inverted.loader { | |||
| color: rgba(255, 255, 255, 0.9); | |||
| } | |||
| .ui.inverted.loader:before { | |||
| border-color: rgba(255, 255, 255, 0.15); | |||
| } | |||
| .ui.inverted.loader:after { | |||
| border-top-color: #FFFFFF; | |||
| } | |||
| /*------------------- | |||
| Inline | |||
| --------------------*/ | |||
| .ui.inline.loader { | |||
| position: relative; | |||
| vertical-align: middle; | |||
| margin: 0em; | |||
| left: 0em; | |||
| top: 0em; | |||
| -webkit-transform: none; | |||
| transform: none; | |||
| } | |||
| .ui.inline.loader.active, | |||
| .ui.inline.loader.visible { | |||
| display: inline-block; | |||
| } | |||
| /* Centered Inline */ | |||
| .ui.centered.inline.loader.active, | |||
| .ui.centered.inline.loader.visible { | |||
| display: block; | |||
| margin-left: auto; | |||
| margin-right: auto; | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Loader | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */.ui.loader{display:none;position:absolute;top:50%;left:50%;margin:0;text-align:center;z-index:1000;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}.ui.loader:before{position:absolute;content:'';top:0;left:50%;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loader:after{position:absolute;content:'';top:0;left:50%;-webkit-animation:loader .6s linear;animation:loader .6s linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}@-webkit-keyframes loader{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loader{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ui.loader:after,.ui.loader:before{width:2.2585em;height:2.2585em;margin:0 0 0 -1.12925em}.ui.mini.loader:after,.ui.mini.loader:before{width:1.2857em;height:1.2857em;margin:0 0 0 -.64285em}.ui.small.loader:after,.ui.small.loader:before{width:1.7142em;height:1.7142em;margin:0 0 0 -.8571em}.ui.large.loader:after,.ui.large.loader:before{width:4.5714em;height:4.5714em;margin:0 0 0 -2.2857em}.ui.dimmer .loader{display:block}.ui.dimmer .ui.loader{color:rgba(255,255,255,.9)}.ui.dimmer .ui.loader:before{border-color:rgba(255,255,255,.15)}.ui.dimmer .ui.loader:after{border-color:#FFF transparent transparent}.ui.inverted.dimmer .ui.loader{color:rgba(0,0,0,.87)}.ui.inverted.dimmer .ui.loader:before{border-color:rgba(0,0,0,.1)}.ui.inverted.dimmer .ui.loader:after{border-color:#767676 transparent transparent}.ui.text.loader{width:auto!important;height:auto!important;text-align:center;font-style:normal}.ui.indeterminate.loader:after{-webkit-animation-direction:reverse;animation-direction:reverse;-webkit-animation-duration:1.2s;animation-duration:1.2s}.ui.loader.active,.ui.loader.visible{display:block}.ui.loader.disabled,.ui.loader.hidden{display:none}.ui.inverted.dimmer .ui.mini.loader,.ui.mini.loader{width:1.2857em;height:1.2857em;font-size:.69230769em}.ui.inverted.dimmer .ui.small.loader,.ui.small.loader{width:1.7142em;height:1.7142em;font-size:.92307692em}.ui.inverted.dimmer .ui.loader,.ui.loader{width:2.2585em;height:2.2585em;font-size:1em}.ui.inverted.dimmer .ui.loader.large,.ui.loader.large{width:4.5714em;height:4.5714em;font-size:1.15384615em}.ui.mini.text.loader{min-width:1.2857em;padding-top:1.97800769em}.ui.small.text.loader{min-width:1.7142em;padding-top:2.40650769em}.ui.text.loader{min-width:2.2585em;padding-top:2.95080769em}.ui.large.text.loader{min-width:4.5714em;padding-top:5.26370769em}.ui.inverted.loader{color:rgba(255,255,255,.9)}.ui.inverted.loader:before{border-color:rgba(255,255,255,.15)}.ui.inverted.loader:after{border-top-color:#FFF}.ui.inline.loader{position:relative;vertical-align:middle;margin:0;left:0;top:0;-webkit-transform:none;transform:none}.ui.inline.loader.active,.ui.inline.loader.visible{display:inline-block}.ui.centered.inline.loader.active,.ui.centered.inline.loader.visible{display:block;margin-left:auto;margin-right:auto} | |||
| @ -0,0 +1,470 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Message | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Message | |||
| *******************************/ | |||
| .ui.message { | |||
| position: relative; | |||
| min-height: 1em; | |||
| margin: 1em 0em; | |||
| background: -webkit-linear-gradient(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.05)) #FEFEFE; | |||
| background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.05)) #FEFEFE; | |||
| padding: 15px 15px; | |||
| line-height: 1.4285em; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| -webkit-transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease; | |||
| transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease; | |||
| border-radius: 0.2307em; | |||
| box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.3) inset, 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset; | |||
| } | |||
| .ui.message:first-child { | |||
| margin-top: 0em; | |||
| } | |||
| .ui.message:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| /*-------------- | |||
| Content | |||
| ---------------*/ | |||
| /* Header */ | |||
| .ui.message .header { | |||
| display: block; | |||
| font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif; | |||
| font-weight: bold; | |||
| margin: -0.14285em 0em 0rem 0em; | |||
| } | |||
| /* Default font size */ | |||
| .ui.message .header:not(.ui) { | |||
| font-size: 1.15em; | |||
| } | |||
| /* Paragraph */ | |||
| .ui.message p { | |||
| opacity: 0.85; | |||
| margin: 0.75em 0em; | |||
| } | |||
| .ui.message p:first-child { | |||
| margin-top: 0em; | |||
| } | |||
| .ui.message p:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| .ui.message .header + p { | |||
| margin-top: 0.25em; | |||
| } | |||
| /* List */ | |||
| .ui.message .list:not(.ui) { | |||
| text-align: left; | |||
| padding: 0em; | |||
| opacity: 0.85; | |||
| list-style-position: inside; | |||
| margin: 0.5em 0em 0em; | |||
| } | |||
| .ui.message .list:not(.ui):first-child { | |||
| margin-top: 0em; | |||
| } | |||
| .ui.message .list:not(.ui):last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| .ui.message .list:not(.ui) li { | |||
| position: relative; | |||
| list-style-type: none; | |||
| margin: 0em 0em 0.3em 1em; | |||
| padding: 0em; | |||
| } | |||
| .ui.message .list:not(.ui) li:before { | |||
| position: absolute; | |||
| content: '•'; | |||
| left: -1em; | |||
| height: 100%; | |||
| vertical-align: baseline; | |||
| } | |||
| .ui.message .list:not(.ui) li:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| /* Icon */ | |||
| .ui.message > .icon { | |||
| margin-right: 0.6em; | |||
| } | |||
| /* Close Icon */ | |||
| .ui.message > .close.icon { | |||
| cursor: pointer; | |||
| position: absolute; | |||
| margin: 0em; | |||
| top: 14.78575px; | |||
| right: 0.5em; | |||
| opacity: 0.7; | |||
| -webkit-transition: opacity 0.1s ease; | |||
| transition: opacity 0.1s ease; | |||
| } | |||
| .ui.message > .close.icon:hover { | |||
| opacity: 1; | |||
| } | |||
| /* First / Last Element */ | |||
| .ui.message > :first-child { | |||
| margin-top: 0em; | |||
| } | |||
| .ui.message > :last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| /******************************* | |||
| Coupling | |||
| *******************************/ | |||
| .ui.dropdown .menu > .message { | |||
| margin: 0px -1px; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| /*-------------- | |||
| Visible | |||
| ---------------*/ | |||
| .ui.visible.visible.visible.visible.message { | |||
| display: block; | |||
| } | |||
| .ui.icon.visible.visible.visible.visible.message { | |||
| display: -webkit-box; | |||
| display: -webkit-flex; | |||
| display: -ms-flexbox; | |||
| display: flex; | |||
| } | |||
| /*-------------- | |||
| Hidden | |||
| ---------------*/ | |||
| .ui.hidden.hidden.hidden.hidden.message { | |||
| display: none; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*-------------- | |||
| Compact | |||
| ---------------*/ | |||
| .ui.compact.message { | |||
| display: inline-block; | |||
| } | |||
| /*-------------- | |||
| Attached | |||
| ---------------*/ | |||
| .ui.attached.message { | |||
| margin-bottom: -1px; | |||
| border-radius: 0.2307em 0.2307em 0em 0em; | |||
| box-shadow: 0em 0em 0em 1px rgba(0, 0, 0, 0.13) inset; | |||
| margin-left: -1px; | |||
| margin-right: -1px; | |||
| } | |||
| .ui.attached + .ui.attached.message:not(.top):not(.bottom) { | |||
| margin-top: -1px; | |||
| border-radius: 0em; | |||
| } | |||
| .ui.bottom.attached.message { | |||
| margin-top: -1px; | |||
| border-radius: 0em 0em 0.2307em 0.2307em; | |||
| box-shadow: 0em 0em 0em 1px rgba(0, 0, 0, 0.13) inset, 0px 1px 2px 0 rgba(0, 0, 0, 0.13); | |||
| } | |||
| .ui.bottom.attached.message:not(:last-child) { | |||
| margin-bottom: 1em; | |||
| } | |||
| .ui.attached.icon.message { | |||
| width: auto; | |||
| } | |||
| /*-------------- | |||
| Icon | |||
| ---------------*/ | |||
| .ui.icon.message { | |||
| display: -webkit-box; | |||
| display: -webkit-flex; | |||
| display: -ms-flexbox; | |||
| display: flex; | |||
| width: 100%; | |||
| -webkit-box-align: center; | |||
| -webkit-align-items: center; | |||
| -ms-flex-align: center; | |||
| align-items: center; | |||
| } | |||
| .ui.icon.message > .icon:not(.close) { | |||
| display: block; | |||
| -webkit-box-flex: 0; | |||
| -webkit-flex: 0 0 auto; | |||
| -ms-flex: 0 0 auto; | |||
| flex: 0 0 auto; | |||
| width: auto; | |||
| line-height: 1; | |||
| vertical-align: middle; | |||
| font-size: 3em; | |||
| opacity: 0.8; | |||
| } | |||
| .ui.icon.message > .content { | |||
| display: block; | |||
| -webkit-box-flex: 1; | |||
| -webkit-flex: 1 1 auto; | |||
| -ms-flex: 1 1 auto; | |||
| flex: 1 1 auto; | |||
| vertical-align: middle; | |||
| } | |||
| .ui.icon.message .icon:not(.close) + .content { | |||
| padding-left: 0rem; | |||
| } | |||
| .ui.icon.message .circular.icon { | |||
| width: 1em; | |||
| } | |||
| /*-------------- | |||
| Floating | |||
| ---------------*/ | |||
| .ui.floating.message { | |||
| box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset, 0px 2px 3px 0px rgba(0, 0, 0, 0.1), 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset; | |||
| } | |||
| /*-------------- | |||
| Colors | |||
| ---------------*/ | |||
| .ui.black.message { | |||
| background-color: #333333; | |||
| color: rgba(255, 255, 255, 0.9); | |||
| } | |||
| /*-------------- | |||
| Types | |||
| ---------------*/ | |||
| /* Positive */ | |||
| .ui.positive.message { | |||
| background-color: #FCFFF5; | |||
| color: #2C662D; | |||
| } | |||
| .ui.positive.message, | |||
| .ui.attached.positive.message { | |||
| box-shadow: 0px 0px 0px 1px #A3C293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); | |||
| } | |||
| .ui.positive.message .header { | |||
| color: #1A531B; | |||
| } | |||
| /* Negative */ | |||
| .ui.negative.message { | |||
| background-color: #FFF6F6; | |||
| color: #9F3A38; | |||
| } | |||
| .ui.negative.message, | |||
| .ui.attached.negative.message { | |||
| box-shadow: 0px 0px 0px 1px #E0B4B4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); | |||
| } | |||
| .ui.negative.message .header { | |||
| color: #912D2B; | |||
| } | |||
| /* Info */ | |||
| .ui.info.message { | |||
| background-color: #E6F1F6; | |||
| color: #264C72; | |||
| } | |||
| .ui.info.message, | |||
| .ui.attached.info.message { | |||
| box-shadow: 0px 0px 0px 1px #97C1DA inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); | |||
| } | |||
| .ui.info.message .header { | |||
| color: #0E566C; | |||
| } | |||
| /* Warning */ | |||
| .ui.warning.message { | |||
| background-color: #FFFAF3; | |||
| color: #613A00; | |||
| } | |||
| .ui.warning.message, | |||
| .ui.attached.warning.message { | |||
| box-shadow: 0px 0px 0px 1px #DCA874 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); | |||
| } | |||
| .ui.warning.message .header { | |||
| color: #794B02; | |||
| } | |||
| /* Error */ | |||
| .ui.error.message { | |||
| background-color: #FFF6F6; | |||
| color: #991111; | |||
| } | |||
| .ui.error.message, | |||
| .ui.attached.error.message { | |||
| box-shadow: 0px 0px 0px 1px #DA9797 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); | |||
| } | |||
| .ui.error.message .header { | |||
| color: #912D2B; | |||
| } | |||
| /* Success */ | |||
| .ui.success.message { | |||
| background-color: #FCFFF5; | |||
| color: #2C662D; | |||
| } | |||
| .ui.success.message, | |||
| .ui.attached.success.message { | |||
| box-shadow: 0px 0px 0px 1px #A3C293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); | |||
| } | |||
| .ui.success.message .header { | |||
| color: #1A531B; | |||
| } | |||
| /* Colors */ | |||
| .ui.inverted.message, | |||
| .ui.black.message { | |||
| background-color: #333333; | |||
| color: rgba(255, 255, 255, 0.9); | |||
| } | |||
| .ui.red.message { | |||
| background-color: #FFE8E6; | |||
| color: #DB2828; | |||
| } | |||
| .ui.red.message .header { | |||
| color: #c82121; | |||
| } | |||
| .ui.orange.message { | |||
| background-color: #FFEDDE; | |||
| color: #D26911; | |||
| } | |||
| .ui.orange.message .header { | |||
| color: #ba5d0f; | |||
| } | |||
| .ui.yellow.message { | |||
| background-color: #FFF8DB; | |||
| color: #B58105; | |||
| } | |||
| .ui.yellow.message .header { | |||
| color: #9c6f04; | |||
| } | |||
| .ui.olive.message { | |||
| background-color: #FBFDEF; | |||
| color: #8ABC1E; | |||
| } | |||
| .ui.olive.message .header { | |||
| color: #7aa61a; | |||
| } | |||
| .ui.green.message { | |||
| background-color: #E5F9E7; | |||
| color: #1EBC30; | |||
| } | |||
| .ui.green.message .header { | |||
| color: #1aa62a; | |||
| } | |||
| .ui.teal.message { | |||
| background-color: #E1F7F7; | |||
| color: #10A3A3; | |||
| } | |||
| .ui.teal.message .header { | |||
| color: #0e8c8c; | |||
| } | |||
| .ui.blue.message { | |||
| background-color: #DFF0FF; | |||
| color: #80A6CD; | |||
| } | |||
| .ui.blue.message .header { | |||
| color: #6e99c6; | |||
| } | |||
| .ui.violet.message { | |||
| background-color: #EAE7FF; | |||
| color: #6435C9; | |||
| } | |||
| .ui.violet.message .header { | |||
| color: #5a30b5; | |||
| } | |||
| .ui.purple.message { | |||
| background-color: #F6E7FF; | |||
| color: #A333C8; | |||
| } | |||
| .ui.purple.message .header { | |||
| color: #922eb4; | |||
| } | |||
| .ui.pink.message { | |||
| background-color: #FFE3FB; | |||
| color: #E03997; | |||
| } | |||
| .ui.pink.message .header { | |||
| color: #dd238b; | |||
| } | |||
| .ui.brown.message { | |||
| background-color: #F1E2D3; | |||
| color: #A5673F; | |||
| } | |||
| .ui.brown.message .header { | |||
| color: #935b38; | |||
| } | |||
| /*-------------- | |||
| Sizes | |||
| ---------------*/ | |||
| .ui.small.message { | |||
| font-size: 0.92307692em; | |||
| } | |||
| .ui.message { | |||
| font-size: 1em; | |||
| } | |||
| .ui.large.message { | |||
| font-size: 1.15384615em; | |||
| } | |||
| .ui.huge.message { | |||
| font-size: 1.46153846em; | |||
| } | |||
| .ui.massive.message { | |||
| font-size: 1.69230769em; | |||
| } | |||
| .ui.info.message { | |||
| background: -webkit-linear-gradient(#D8EBF8, #D0E3EF); | |||
| background: linear-gradient(#D8EBF8, #D0E3EF); | |||
| } | |||
| .ui.error.message { | |||
| background: -webkit-linear-gradient(#F8D8D8, #EFD0D0); | |||
| background: linear-gradient(#F8D8D8, #EFD0D0); | |||
| } | |||
| .ui.warning.message { | |||
| background: -webkit-linear-gradient(#FFE3C8, #F5DAC0); | |||
| background: linear-gradient(#FFE3C8, #F5DAC0); | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,503 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Modal | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Modal | |||
| *******************************/ | |||
| .ui.modal { | |||
| display: none; | |||
| position: fixed; | |||
| z-index: 1001; | |||
| top: 50%; | |||
| left: 50%; | |||
| text-align: left; | |||
| background: #FFFFFF; | |||
| border: none; | |||
| box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2); | |||
| -webkit-transform-origin: 50% 25%; | |||
| transform-origin: 50% 25%; | |||
| border-radius: 0.2307em; | |||
| -webkit-user-select: text; | |||
| -moz-user-select: text; | |||
| -ms-user-select: text; | |||
| user-select: text; | |||
| will-change: top, left, margin, transform, opacity; | |||
| } | |||
| .ui.modal > :first-child:not(.icon), | |||
| .ui.modal > .icon:first-child + * { | |||
| border-top-left-radius: 0.2307em; | |||
| border-top-right-radius: 0.2307em; | |||
| } | |||
| .ui.modal > :last-child { | |||
| border-bottom-left-radius: 0.2307em; | |||
| border-bottom-right-radius: 0.2307em; | |||
| } | |||
| /******************************* | |||
| Content | |||
| *******************************/ | |||
| /*-------------- | |||
| Close | |||
| ---------------*/ | |||
| .ui.modal > .close { | |||
| cursor: pointer; | |||
| position: absolute; | |||
| top: -2.5rem; | |||
| right: -2.5rem; | |||
| z-index: 1; | |||
| opacity: 0.8; | |||
| font-size: 1.25em; | |||
| color: #FFFFFF; | |||
| width: 2.25rem; | |||
| height: 2.25rem; | |||
| padding: 0.625rem 0rem 0rem 0rem; | |||
| } | |||
| .ui.modal > .close:hover { | |||
| opacity: 1; | |||
| } | |||
| /*-------------- | |||
| Header | |||
| ---------------*/ | |||
| .ui.modal > .header { | |||
| display: block; | |||
| font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif; | |||
| background: #FFFFFF; | |||
| margin: 0em; | |||
| padding: 1.25rem 1.5rem; | |||
| box-shadow: none; | |||
| color: rgba(0, 0, 0, 0.85); | |||
| border-bottom: 1px solid rgba(0, 0, 0, 0.13); | |||
| } | |||
| .ui.modal > .header:not(.ui) { | |||
| font-size: 1.46153846rem; | |||
| line-height: 1.2857em; | |||
| font-weight: bold; | |||
| } | |||
| /*-------------- | |||
| Content | |||
| ---------------*/ | |||
| .ui.modal > .content { | |||
| display: block; | |||
| width: 100%; | |||
| font-size: 1em; | |||
| line-height: 1.4; | |||
| padding: 1.5rem; | |||
| background: #FFFFFF; | |||
| } | |||
| .ui.modal > .image.content { | |||
| display: -webkit-box; | |||
| display: -webkit-flex; | |||
| display: -ms-flexbox; | |||
| display: flex; | |||
| -webkit-box-orient: horizontal; | |||
| -webkit-box-direction: normal; | |||
| -webkit-flex-direction: row; | |||
| -ms-flex-direction: row; | |||
| flex-direction: row; | |||
| } | |||
| /* Image */ | |||
| .ui.modal > .content > .image { | |||
| display: block; | |||
| -webkit-box-flex: 0; | |||
| -webkit-flex: 0 1 auto; | |||
| -ms-flex: 0 1 auto; | |||
| flex: 0 1 auto; | |||
| width: ''; | |||
| -webkit-align-self: top; | |||
| -ms-flex-item-align: top; | |||
| align-self: top; | |||
| } | |||
| .ui.modal > [class*="top aligned"] { | |||
| -webkit-align-self: top; | |||
| -ms-flex-item-align: top; | |||
| align-self: top; | |||
| } | |||
| .ui.modal > [class*="middle aligned"] { | |||
| -webkit-align-self: middle; | |||
| -ms-flex-item-align: middle; | |||
| align-self: middle; | |||
| } | |||
| .ui.modal > [class*="stretched"] { | |||
| -webkit-align-self: stretch; | |||
| -ms-flex-item-align: stretch; | |||
| align-self: stretch; | |||
| } | |||
| /* Description */ | |||
| .ui.modal > .content > .description { | |||
| display: block; | |||
| -webkit-box-flex: 1; | |||
| -webkit-flex: 1 0 auto; | |||
| -ms-flex: 1 0 auto; | |||
| flex: 1 0 auto; | |||
| min-width: 0px; | |||
| -webkit-align-self: top; | |||
| -ms-flex-item-align: top; | |||
| align-self: top; | |||
| } | |||
| .ui.modal > .content > .icon + .description, | |||
| .ui.modal > .content > .image + .description { | |||
| -webkit-box-flex: 0; | |||
| -webkit-flex: 0 1 auto; | |||
| -ms-flex: 0 1 auto; | |||
| flex: 0 1 auto; | |||
| min-width: ''; | |||
| width: auto; | |||
| padding-left: 2em; | |||
| } | |||
| /*rtl:ignore*/ | |||
| .ui.modal > .content > .image > i.icon { | |||
| margin: 0em; | |||
| opacity: 1; | |||
| width: auto; | |||
| line-height: 1; | |||
| font-size: 8rem; | |||
| } | |||
| /*-------------- | |||
| Actions | |||
| ---------------*/ | |||
| .ui.modal > .actions { | |||
| background: #F9FAFB; | |||
| padding: 1rem 1rem; | |||
| border-top: 1px solid rgba(0, 0, 0, 0.13); | |||
| text-align: right; | |||
| } | |||
| .ui.modal .actions > .button { | |||
| margin-left: 0.75em; | |||
| } | |||
| /*------------------- | |||
| Responsive | |||
| --------------------*/ | |||
| /* Modal Width */ | |||
| @media only screen and (max-width: 687px) { | |||
| .ui.modal { | |||
| width: 95%; | |||
| margin: 0em 0em 0em -47.5%; | |||
| } | |||
| } | |||
| @media only screen and (min-width: 688px) { | |||
| .ui.modal { | |||
| width: 88%; | |||
| margin: 0em 0em 0em -44%; | |||
| } | |||
| } | |||
| @media only screen and (min-width: 688px) { | |||
| .ui.modal { | |||
| width: 850px; | |||
| margin: 0em 0em 0em -425px; | |||
| } | |||
| } | |||
| @media only screen and (min-width: 688px) { | |||
| .ui.modal { | |||
| width: 900px; | |||
| margin: 0em 0em 0em -450px; | |||
| } | |||
| } | |||
| @media only screen and (min-width: 1920px) { | |||
| .ui.modal { | |||
| width: 950px; | |||
| margin: 0em 0em 0em -475px; | |||
| } | |||
| } | |||
| /* Tablet and Mobile */ | |||
| @media only screen and (max-width: 687px) { | |||
| .ui.modal > .header { | |||
| padding-right: 2.25rem; | |||
| } | |||
| .ui.modal > .close { | |||
| top: 1.0535rem; | |||
| right: 1rem; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| } | |||
| /* Mobile */ | |||
| @media only screen and (max-width: 687px) { | |||
| .ui.modal > .header { | |||
| padding: 0.75rem 1rem !important; | |||
| padding-right: 2.25rem !important; | |||
| } | |||
| .ui.modal > .content { | |||
| display: block; | |||
| padding: 1rem !important; | |||
| } | |||
| .ui.modal > .close { | |||
| top: 0.5rem !important; | |||
| right: 0.5rem !important; | |||
| } | |||
| /*rtl:ignore*/ | |||
| .ui.modal .image.content { | |||
| -webkit-box-orient: vertical; | |||
| -webkit-box-direction: normal; | |||
| -webkit-flex-direction: column; | |||
| -ms-flex-direction: column; | |||
| flex-direction: column; | |||
| } | |||
| .ui.modal .content > .image { | |||
| display: block; | |||
| max-width: 100%; | |||
| margin: 0em auto !important; | |||
| text-align: center; | |||
| padding: 0rem 0rem 1rem !important; | |||
| } | |||
| .ui.modal > .content > .image > i.icon { | |||
| font-size: 5rem; | |||
| text-align: center; | |||
| } | |||
| /*rtl:ignore*/ | |||
| .ui.modal .content > .description { | |||
| display: block; | |||
| width: 100% !important; | |||
| margin: 0em !important; | |||
| padding: 1rem 0rem !important; | |||
| box-shadow: none; | |||
| } | |||
| /* Let Buttons Stack */ | |||
| .ui.modal > .actions { | |||
| padding: 1rem 1rem 0rem !important; | |||
| } | |||
| .ui.modal .actions > .buttons, | |||
| .ui.modal .actions > .button { | |||
| margin-bottom: 1rem; | |||
| } | |||
| } | |||
| /*-------------- | |||
| Coupling | |||
| ---------------*/ | |||
| .ui.inverted.dimmer > .ui.modal { | |||
| box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2); | |||
| } | |||
| /******************************* | |||
| Types | |||
| *******************************/ | |||
| .ui.basic.modal { | |||
| background-color: transparent; | |||
| border: none; | |||
| border-radius: 0em; | |||
| box-shadow: none !important; | |||
| color: #FFFFFF; | |||
| } | |||
| .ui.basic.modal > .header, | |||
| .ui.basic.modal > .content, | |||
| .ui.basic.modal > .actions { | |||
| background-color: transparent; | |||
| } | |||
| .ui.basic.modal > .header { | |||
| color: #FFFFFF; | |||
| } | |||
| .ui.basic.modal > .close { | |||
| top: 1rem; | |||
| right: 1.5rem; | |||
| } | |||
| .ui.inverted.dimmer > .basic.modal { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.inverted.dimmer > .ui.basic.modal > .header { | |||
| color: rgba(0, 0, 0, 0.85); | |||
| } | |||
| /* Tablet and Mobile */ | |||
| @media only screen and (max-width: 687px) { | |||
| .ui.basic.modal > .close { | |||
| color: #FFFFFF; | |||
| } | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| .ui.active.modal { | |||
| display: block; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*-------------- | |||
| Scrolling | |||
| ---------------*/ | |||
| /* A modal that cannot fit on the page */ | |||
| .scrolling.dimmable.dimmed { | |||
| overflow: hidden; | |||
| } | |||
| .scrolling.dimmable.dimmed > .dimmer { | |||
| overflow: auto; | |||
| -webkit-overflow-scrolling: touch; | |||
| } | |||
| .scrolling.dimmable > .dimmer { | |||
| position: fixed; | |||
| } | |||
| .modals.dimmer .ui.scrolling.modal { | |||
| position: static !important; | |||
| margin: 3.5rem auto !important; | |||
| } | |||
| /* undetached scrolling */ | |||
| .scrolling.undetached.dimmable.dimmed { | |||
| overflow: auto; | |||
| -webkit-overflow-scrolling: touch; | |||
| } | |||
| .scrolling.undetached.dimmable.dimmed > .dimmer { | |||
| overflow: hidden; | |||
| } | |||
| .scrolling.undetached.dimmable .ui.scrolling.modal { | |||
| position: absolute; | |||
| left: 50%; | |||
| margin-top: 3.5rem !important; | |||
| } | |||
| /* Coupling with Sidebar */ | |||
| .undetached.dimmable.dimmed > .pusher { | |||
| z-index: auto; | |||
| } | |||
| @media only screen and (max-width: 687px) { | |||
| .modals.dimmer .ui.scrolling.modal { | |||
| margin-top: 1rem !important; | |||
| margin-bottom: 1rem !important; | |||
| } | |||
| } | |||
| /*-------------- | |||
| Full Screen | |||
| ---------------*/ | |||
| .ui.fullscreen.modal { | |||
| width: 95% !important; | |||
| left: 2.5% !important; | |||
| margin: 1em auto; | |||
| } | |||
| .ui.fullscreen.scrolling.modal { | |||
| left: 0em !important; | |||
| } | |||
| .ui.fullscreen.modal > .header { | |||
| padding-right: 2.25rem; | |||
| } | |||
| .ui.fullscreen.modal > .close { | |||
| top: 1.0535rem; | |||
| right: 1rem; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /*-------------- | |||
| Size | |||
| ---------------*/ | |||
| .ui.modal { | |||
| font-size: 1rem; | |||
| } | |||
| /* Small */ | |||
| .ui.small.modal > .header:not(.ui) { | |||
| font-size: 1.3em; | |||
| } | |||
| /* Small Modal Width */ | |||
| @media only screen and (max-width: 687px) { | |||
| .ui.small.modal { | |||
| width: 95%; | |||
| margin: 0em 0em 0em -47.5%; | |||
| } | |||
| } | |||
| @media only screen and (min-width: 688px) { | |||
| .ui.small.modal { | |||
| width: 70.4%; | |||
| margin: 0em 0em 0em -35.2%; | |||
| } | |||
| } | |||
| @media only screen and (min-width: 688px) { | |||
| .ui.small.modal { | |||
| width: 680px; | |||
| margin: 0em 0em 0em -340px; | |||
| } | |||
| } | |||
| @media only screen and (min-width: 688px) { | |||
| .ui.small.modal { | |||
| width: 720px; | |||
| margin: 0em 0em 0em -360px; | |||
| } | |||
| } | |||
| @media only screen and (min-width: 1920px) { | |||
| .ui.small.modal { | |||
| width: 760px; | |||
| margin: 0em 0em 0em -380px; | |||
| } | |||
| } | |||
| /* Large Modal Width */ | |||
| .ui.large.modal > .header { | |||
| font-size: 1.6em; | |||
| } | |||
| @media only screen and (max-width: 687px) { | |||
| .ui.large.modal { | |||
| width: 95%; | |||
| margin: 0em 0em 0em -47.5%; | |||
| } | |||
| } | |||
| @media only screen and (min-width: 688px) { | |||
| .ui.large.modal { | |||
| width: 88%; | |||
| margin: 0em 0em 0em -44%; | |||
| } | |||
| } | |||
| @media only screen and (min-width: 688px) { | |||
| .ui.large.modal { | |||
| width: 1020px; | |||
| margin: 0em 0em 0em -510px; | |||
| } | |||
| } | |||
| @media only screen and (min-width: 688px) { | |||
| .ui.large.modal { | |||
| width: 1080px; | |||
| margin: 0em 0em 0em -540px; | |||
| } | |||
| } | |||
| @media only screen and (min-width: 1920px) { | |||
| .ui.large.modal { | |||
| width: 1140px; | |||
| margin: 0em 0em 0em -570px; | |||
| } | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,892 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Modal | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| ;(function ( $, window, document, undefined ) { | |||
| "use strict"; | |||
| $.fn.modal = function(parameters) { | |||
| var | |||
| $allModules = $(this), | |||
| $window = $(window), | |||
| $document = $(document), | |||
| $body = $('body'), | |||
| moduleSelector = $allModules.selector || '', | |||
| time = new Date().getTime(), | |||
| performance = [], | |||
| query = arguments[0], | |||
| methodInvoked = (typeof query == 'string'), | |||
| queryArguments = [].slice.call(arguments, 1), | |||
| requestAnimationFrame = window.requestAnimationFrame | |||
| || window.mozRequestAnimationFrame | |||
| || window.webkitRequestAnimationFrame | |||
| || window.msRequestAnimationFrame | |||
| || function(callback) { setTimeout(callback, 0); }, | |||
| returnedValue | |||
| ; | |||
| $allModules | |||
| .each(function() { | |||
| var | |||
| settings = ( $.isPlainObject(parameters) ) | |||
| ? $.extend(true, {}, $.fn.modal.settings, parameters) | |||
| : $.extend({}, $.fn.modal.settings), | |||
| selector = settings.selector, | |||
| className = settings.className, | |||
| namespace = settings.namespace, | |||
| error = settings.error, | |||
| eventNamespace = '.' + namespace, | |||
| moduleNamespace = 'module-' + namespace, | |||
| $module = $(this), | |||
| $context = $(settings.context), | |||
| $close = $module.find(selector.close), | |||
| $allModals, | |||
| $otherModals, | |||
| $focusedElement, | |||
| $dimmable, | |||
| $dimmer, | |||
| element = this, | |||
| instance = $module.data(moduleNamespace), | |||
| elementNamespace, | |||
| id, | |||
| observer, | |||
| module | |||
| ; | |||
| module = { | |||
| initialize: function() { | |||
| module.verbose('Initializing dimmer', $context); | |||
| module.create.id(); | |||
| module.create.dimmer(); | |||
| module.refreshModals(); | |||
| module.bind.events(); | |||
| if(settings.observeChanges) { | |||
| module.observeChanges(); | |||
| } | |||
| module.instantiate(); | |||
| }, | |||
| instantiate: function() { | |||
| module.verbose('Storing instance of modal'); | |||
| instance = module; | |||
| $module | |||
| .data(moduleNamespace, instance) | |||
| ; | |||
| }, | |||
| create: { | |||
| dimmer: function() { | |||
| var | |||
| defaultSettings = { | |||
| debug : settings.debug, | |||
| dimmerName : 'modals', | |||
| duration : { | |||
| show : settings.duration, | |||
| hide : settings.duration | |||
| } | |||
| }, | |||
| dimmerSettings = $.extend(true, defaultSettings, settings.dimmerSettings) | |||
| ; | |||
| if(settings.inverted) { | |||
| dimmerSettings.variation = (dimmerSettings.variation !== undefined) | |||
| ? dimmerSettings.variation + ' inverted' | |||
| : 'inverted' | |||
| ; | |||
| } | |||
| if($.fn.dimmer === undefined) { | |||
| module.error(error.dimmer); | |||
| return; | |||
| } | |||
| module.debug('Creating dimmer with settings', dimmerSettings); | |||
| $dimmable = $context.dimmer(dimmerSettings); | |||
| if(settings.detachable) { | |||
| module.verbose('Modal is detachable, moving content into dimmer'); | |||
| $dimmable.dimmer('add content', $module); | |||
| } | |||
| else { | |||
| module.set.undetached(); | |||
| } | |||
| if(settings.blurring) { | |||
| $dimmable.addClass(className.blurring); | |||
| } | |||
| $dimmer = $dimmable.dimmer('get dimmer'); | |||
| }, | |||
| id: function() { | |||
| id = (Math.random().toString(16) + '000000000').substr(2,8); | |||
| elementNamespace = '.' + id; | |||
| module.verbose('Creating unique id for element', id); | |||
| } | |||
| }, | |||
| destroy: function() { | |||
| module.verbose('Destroying previous modal'); | |||
| $module | |||
| .removeData(moduleNamespace) | |||
| .off(eventNamespace) | |||
| ; | |||
| $window.off(elementNamespace); | |||
| $close.off(eventNamespace); | |||
| $context.dimmer('destroy'); | |||
| }, | |||
| observeChanges: function() { | |||
| if('MutationObserver' in window) { | |||
| observer = new MutationObserver(function(mutations) { | |||
| module.debug('DOM tree modified, refreshing'); | |||
| module.refresh(); | |||
| }); | |||
| observer.observe(element, { | |||
| childList : true, | |||
| subtree : true | |||
| }); | |||
| module.debug('Setting up mutation observer', observer); | |||
| } | |||
| }, | |||
| refresh: function() { | |||
| module.remove.scrolling(); | |||
| module.cacheSizes(); | |||
| module.set.screenHeight(); | |||
| module.set.type(); | |||
| module.set.position(); | |||
| }, | |||
| refreshModals: function() { | |||
| $otherModals = $module.siblings(selector.modal); | |||
| $allModals = $otherModals.add($module); | |||
| }, | |||
| attachEvents: function(selector, event) { | |||
| var | |||
| $toggle = $(selector) | |||
| ; | |||
| event = $.isFunction(module[event]) | |||
| ? module[event] | |||
| : module.toggle | |||
| ; | |||
| if($toggle.length > 0) { | |||
| module.debug('Attaching modal events to element', selector, event); | |||
| $toggle | |||
| .off(eventNamespace) | |||
| .on('click' + eventNamespace, event) | |||
| ; | |||
| } | |||
| else { | |||
| module.error(error.notFound, selector); | |||
| } | |||
| }, | |||
| bind: { | |||
| events: function() { | |||
| module.verbose('Attaching events'); | |||
| $module | |||
| .on('click' + eventNamespace, selector.close, module.event.close) | |||
| .on('click' + eventNamespace, selector.approve, module.event.approve) | |||
| .on('click' + eventNamespace, selector.deny, module.event.deny) | |||
| ; | |||
| $window | |||
| .on('resize' + elementNamespace, module.event.resize) | |||
| ; | |||
| } | |||
| }, | |||
| get: { | |||
| id: function() { | |||
| return (Math.random().toString(16) + '000000000').substr(2,8); | |||
| } | |||
| }, | |||
| event: { | |||
| approve: function() { | |||
| if(settings.onApprove.call(element, $(this)) === false) { | |||
| module.verbose('Approve callback returned false cancelling hide'); | |||
| return; | |||
| } | |||
| module.hide(); | |||
| }, | |||
| deny: function() { | |||
| if(settings.onDeny.call(element, $(this)) === false) { | |||
| module.verbose('Deny callback returned false cancelling hide'); | |||
| return; | |||
| } | |||
| module.hide(); | |||
| }, | |||
| close: function() { | |||
| module.hide(); | |||
| }, | |||
| click: function(event) { | |||
| var | |||
| $target = $(event.target), | |||
| isInModal = ($target.closest(selector.modal).length > 0), | |||
| isInDOM = $.contains(document.documentElement, event.target) | |||
| ; | |||
| if(!isInModal && isInDOM) { | |||
| module.debug('Dimmer clicked, hiding all modals'); | |||
| if( module.is.active() ) { | |||
| module.remove.clickaway(); | |||
| if(settings.allowMultiple) { | |||
| module.hide(); | |||
| } | |||
| else { | |||
| module.hideAll(); | |||
| } | |||
| } | |||
| } | |||
| }, | |||
| debounce: function(method, delay) { | |||
| clearTimeout(module.timer); | |||
| module.timer = setTimeout(method, delay); | |||
| }, | |||
| keyboard: function(event) { | |||
| var | |||
| keyCode = event.which, | |||
| escapeKey = 27 | |||
| ; | |||
| if(keyCode == escapeKey) { | |||
| if(settings.closable) { | |||
| module.debug('Escape key pressed hiding modal'); | |||
| module.hide(); | |||
| } | |||
| else { | |||
| module.debug('Escape key pressed, but closable is set to false'); | |||
| } | |||
| event.preventDefault(); | |||
| } | |||
| }, | |||
| resize: function() { | |||
| if( $dimmable.dimmer('is active') ) { | |||
| requestAnimationFrame(module.refresh); | |||
| } | |||
| } | |||
| }, | |||
| toggle: function() { | |||
| if( module.is.active() || module.is.animating() ) { | |||
| module.hide(); | |||
| } | |||
| else { | |||
| module.show(); | |||
| } | |||
| }, | |||
| show: function(callback) { | |||
| callback = $.isFunction(callback) | |||
| ? callback | |||
| : function(){} | |||
| ; | |||
| module.refreshModals(); | |||
| module.showModal(callback); | |||
| }, | |||
| hide: function(callback) { | |||
| callback = $.isFunction(callback) | |||
| ? callback | |||
| : function(){} | |||
| ; | |||
| module.refreshModals(); | |||
| module.hideModal(callback); | |||
| }, | |||
| showModal: function(callback) { | |||
| callback = $.isFunction(callback) | |||
| ? callback | |||
| : function(){} | |||
| ; | |||
| if( module.is.animating() || !module.is.active() ) { | |||
| module.showDimmer(); | |||
| module.cacheSizes(); | |||
| module.set.position(); | |||
| module.set.screenHeight(); | |||
| module.set.type(); | |||
| module.set.clickaway(); | |||
| if( !settings.allowMultiple && module.others.active() ) { | |||
| module.hideOthers(module.showModal); | |||
| } | |||
| else { | |||
| settings.onShow.call(element); | |||
| if(settings.transition && $.fn.transition !== undefined && $module.transition('is supported')) { | |||
| module.debug('Showing modal with css animations'); | |||
| $module | |||
| .transition({ | |||
| debug : settings.debug, | |||
| animation : settings.transition + ' in', | |||
| queue : settings.queue, | |||
| duration : settings.duration, | |||
| useFailSafe : true, | |||
| onComplete : function() { | |||
| settings.onVisible.apply(element); | |||
| module.add.keyboardShortcuts(); | |||
| module.save.focus(); | |||
| module.set.active(); | |||
| if(settings.autofocus) { | |||
| module.set.autofocus(); | |||
| } | |||
| callback(); | |||
| } | |||
| }) | |||
| ; | |||
| } | |||
| else { | |||
| module.error(error.noTransition); | |||
| } | |||
| } | |||
| } | |||
| else { | |||
| module.debug('Modal is already visible'); | |||
| } | |||
| }, | |||
| hideModal: function(callback, keepDimmed) { | |||
| callback = $.isFunction(callback) | |||
| ? callback | |||
| : function(){} | |||
| ; | |||
| module.debug('Hiding modal'); | |||
| if(settings.onHide.call(element, $(this)) === false) { | |||
| module.verbose('Hide callback returned false cancelling hide'); | |||
| return; | |||
| } | |||
| if( module.is.animating() || module.is.active() ) { | |||
| if(settings.transition && $.fn.transition !== undefined && $module.transition('is supported')) { | |||
| module.remove.active(); | |||
| $module | |||
| .transition({ | |||
| debug : settings.debug, | |||
| animation : settings.transition + ' out', | |||
| queue : settings.queue, | |||
| duration : settings.duration, | |||
| useFailSafe : true, | |||
| onStart : function() { | |||
| if(!module.others.active() && !keepDimmed) { | |||
| module.hideDimmer(); | |||
| } | |||
| module.remove.keyboardShortcuts(); | |||
| }, | |||
| onComplete : function() { | |||
| settings.onHidden.call(element); | |||
| module.restore.focus(); | |||
| callback(); | |||
| } | |||
| }) | |||
| ; | |||
| } | |||
| else { | |||
| module.error(error.noTransition); | |||
| } | |||
| } | |||
| }, | |||
| showDimmer: function() { | |||
| if($dimmable.dimmer('is animating') || !$dimmable.dimmer('is active') ) { | |||
| module.debug('Showing dimmer'); | |||
| $dimmable.dimmer('show'); | |||
| } | |||
| else { | |||
| module.debug('Dimmer already visible'); | |||
| } | |||
| }, | |||
| hideDimmer: function() { | |||
| if( $dimmable.dimmer('is animating') || ($dimmable.dimmer('is active')) ) { | |||
| $dimmable.dimmer('hide', function() { | |||
| module.remove.clickaway(); | |||
| module.remove.screenHeight(); | |||
| }); | |||
| } | |||
| else { | |||
| module.debug('Dimmer is not visible cannot hide'); | |||
| return; | |||
| } | |||
| }, | |||
| hideAll: function(callback) { | |||
| var | |||
| $visibleModals = $allModals.filter('.' + className.active + ', .' + className.animating) | |||
| ; | |||
| callback = $.isFunction(callback) | |||
| ? callback | |||
| : function(){} | |||
| ; | |||
| if( $visibleModals.length > 0 ) { | |||
| module.debug('Hiding all visible modals'); | |||
| module.hideDimmer(); | |||
| $visibleModals | |||
| .modal('hide modal', callback) | |||
| ; | |||
| } | |||
| }, | |||
| hideOthers: function(callback) { | |||
| var | |||
| $visibleModals = $otherModals.filter('.' + className.active + ', .' + className.animating) | |||
| ; | |||
| callback = $.isFunction(callback) | |||
| ? callback | |||
| : function(){} | |||
| ; | |||
| if( $visibleModals.length > 0 ) { | |||
| module.debug('Hiding other modals', $otherModals); | |||
| $visibleModals | |||
| .modal('hide modal', callback, true) | |||
| ; | |||
| } | |||
| }, | |||
| others: { | |||
| active: function() { | |||
| return ($otherModals.filter('.' + className.active).length > 0); | |||
| }, | |||
| animating: function() { | |||
| return ($otherModals.filter('.' + className.animating).length > 0); | |||
| } | |||
| }, | |||
| add: { | |||
| keyboardShortcuts: function() { | |||
| module.verbose('Adding keyboard shortcuts'); | |||
| $document | |||
| .on('keyup' + eventNamespace, module.event.keyboard) | |||
| ; | |||
| } | |||
| }, | |||
| save: { | |||
| focus: function() { | |||
| $focusedElement = $(document.activeElement).blur(); | |||
| } | |||
| }, | |||
| restore: { | |||
| focus: function() { | |||
| if($focusedElement && $focusedElement.length > 0) { | |||
| $focusedElement.focus(); | |||
| } | |||
| } | |||
| }, | |||
| remove: { | |||
| active: function() { | |||
| $module.removeClass(className.active); | |||
| }, | |||
| clickaway: function() { | |||
| if(settings.closable) { | |||
| $dimmer | |||
| .off('click' + elementNamespace) | |||
| ; | |||
| } | |||
| }, | |||
| bodyStyle: function() { | |||
| if($body.attr('style') === '') { | |||
| module.verbose('Removing style attribute'); | |||
| $body.removeAttr('style'); | |||
| } | |||
| }, | |||
| screenHeight: function() { | |||
| module.debug('Removing page height'); | |||
| $body | |||
| .css('height', '') | |||
| ; | |||
| }, | |||
| keyboardShortcuts: function() { | |||
| module.verbose('Removing keyboard shortcuts'); | |||
| $document | |||
| .off('keyup' + eventNamespace) | |||
| ; | |||
| }, | |||
| scrolling: function() { | |||
| $dimmable.removeClass(className.scrolling); | |||
| $module.removeClass(className.scrolling); | |||
| } | |||
| }, | |||
| cacheSizes: function() { | |||
| var | |||
| modalHeight = $module.outerHeight() | |||
| ; | |||
| if(module.cache === undefined || modalHeight !== 0) { | |||
| module.cache = { | |||
| pageHeight : $(document).outerHeight(), | |||
| height : modalHeight + settings.offset, | |||
| contextHeight : (settings.context == 'body') | |||
| ? $(window).height() | |||
| : $dimmable.height() | |||
| }; | |||
| } | |||
| module.debug('Caching modal and container sizes', module.cache); | |||
| }, | |||
| can: { | |||
| fit: function() { | |||
| return ( ( module.cache.height + (settings.padding * 2) ) < module.cache.contextHeight); | |||
| } | |||
| }, | |||
| is: { | |||
| active: function() { | |||
| return $module.hasClass(className.active); | |||
| }, | |||
| animating: function() { | |||
| return $module.transition('is supported') | |||
| ? $module.transition('is animating') | |||
| : $module.is(':visible') | |||
| ; | |||
| }, | |||
| scrolling: function() { | |||
| return $dimmable.hasClass(className.scrolling); | |||
| }, | |||
| modernBrowser: function() { | |||
| // appName for IE11 reports 'Netscape' can no longer use | |||
| return !(window.ActiveXObject || "ActiveXObject" in window); | |||
| } | |||
| }, | |||
| set: { | |||
| autofocus: function() { | |||
| var | |||
| $inputs = $module.find(':input').filter(':visible'), | |||
| $autofocus = $inputs.filter('[autofocus]'), | |||
| $input = ($autofocus.length > 0) | |||
| ? $autofocus.first() | |||
| : $inputs.first() | |||
| ; | |||
| if($input.length > 0) { | |||
| $input.focus(); | |||
| } | |||
| }, | |||
| clickaway: function() { | |||
| if(settings.closable) { | |||
| $dimmer | |||
| .on('click' + elementNamespace, module.event.click) | |||
| ; | |||
| } | |||
| }, | |||
| screenHeight: function() { | |||
| if( module.can.fit() ) { | |||
| $body.css('height', ''); | |||
| } | |||
| else { | |||
| module.debug('Modal is taller than page content, resizing page height'); | |||
| $body | |||
| .css('height', module.cache.height + (settings.padding * 2) ) | |||
| ; | |||
| } | |||
| }, | |||
| active: function() { | |||
| $module.addClass(className.active); | |||
| }, | |||
| scrolling: function() { | |||
| $dimmable.addClass(className.scrolling); | |||
| $module.addClass(className.scrolling); | |||
| }, | |||
| type: function() { | |||
| if(module.can.fit()) { | |||
| module.verbose('Modal fits on screen'); | |||
| if(!module.others.active() && !module.others.animating()) { | |||
| module.remove.scrolling(); | |||
| } | |||
| } | |||
| else { | |||
| module.verbose('Modal cannot fit on screen setting to scrolling'); | |||
| module.set.scrolling(); | |||
| } | |||
| }, | |||
| position: function() { | |||
| module.verbose('Centering modal on page', module.cache); | |||
| if(module.can.fit()) { | |||
| $module | |||
| .css({ | |||
| top: '', | |||
| marginTop: -(module.cache.height / 2) | |||
| }) | |||
| ; | |||
| } | |||
| else { | |||
| $module | |||
| .css({ | |||
| marginTop : '', | |||
| top : $document.scrollTop() | |||
| }) | |||
| ; | |||
| } | |||
| }, | |||
| undetached: function() { | |||
| $dimmable.addClass(className.undetached); | |||
| } | |||
| }, | |||
| setting: function(name, value) { | |||
| module.debug('Changing setting', name, value); | |||
| if( $.isPlainObject(name) ) { | |||
| $.extend(true, settings, name); | |||
| } | |||
| else if(value !== undefined) { | |||
| settings[name] = value; | |||
| } | |||
| else { | |||
| return settings[name]; | |||
| } | |||
| }, | |||
| internal: function(name, value) { | |||
| if( $.isPlainObject(name) ) { | |||
| $.extend(true, module, name); | |||
| } | |||
| else if(value !== undefined) { | |||
| module[name] = value; | |||
| } | |||
| else { | |||
| return module[name]; | |||
| } | |||
| }, | |||
| debug: function() { | |||
| if(settings.debug) { | |||
| if(settings.performance) { | |||
| module.performance.log(arguments); | |||
| } | |||
| else { | |||
| module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':'); | |||
| module.debug.apply(console, arguments); | |||
| } | |||
| } | |||
| }, | |||
| verbose: function() { | |||
| if(settings.verbose && settings.debug) { | |||
| if(settings.performance) { | |||
| module.performance.log(arguments); | |||
| } | |||
| else { | |||
| module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':'); | |||
| module.verbose.apply(console, arguments); | |||
| } | |||
| } | |||
| }, | |||
| error: function() { | |||
| module.error = Function.prototype.bind.call(console.error, console, settings.name + ':'); | |||
| module.error.apply(console, arguments); | |||
| }, | |||
| performance: { | |||
| log: function(message) { | |||
| var | |||
| currentTime, | |||
| executionTime, | |||
| previousTime | |||
| ; | |||
| if(settings.performance) { | |||
| currentTime = new Date().getTime(); | |||
| previousTime = time || currentTime; | |||
| executionTime = currentTime - previousTime; | |||
| time = currentTime; | |||
| performance.push({ | |||
| 'Name' : message[0], | |||
| 'Arguments' : [].slice.call(message, 1) || '', | |||
| 'Element' : element, | |||
| 'Execution Time' : executionTime | |||
| }); | |||
| } | |||
| clearTimeout(module.performance.timer); | |||
| module.performance.timer = setTimeout(module.performance.display, 500); | |||
| }, | |||
| display: function() { | |||
| var | |||
| title = settings.name + ':', | |||
| totalTime = 0 | |||
| ; | |||
| time = false; | |||
| clearTimeout(module.performance.timer); | |||
| $.each(performance, function(index, data) { | |||
| totalTime += data['Execution Time']; | |||
| }); | |||
| title += ' ' + totalTime + 'ms'; | |||
| if(moduleSelector) { | |||
| title += ' \'' + moduleSelector + '\''; | |||
| } | |||
| if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) { | |||
| console.groupCollapsed(title); | |||
| if(console.table) { | |||
| console.table(performance); | |||
| } | |||
| else { | |||
| $.each(performance, function(index, data) { | |||
| console.log(data['Name'] + ': ' + data['Execution Time']+'ms'); | |||
| }); | |||
| } | |||
| console.groupEnd(); | |||
| } | |||
| performance = []; | |||
| } | |||
| }, | |||
| invoke: function(query, passedArguments, context) { | |||
| var | |||
| object = instance, | |||
| maxDepth, | |||
| found, | |||
| response | |||
| ; | |||
| passedArguments = passedArguments || queryArguments; | |||
| context = element || context; | |||
| if(typeof query == 'string' && object !== undefined) { | |||
| query = query.split(/[\. ]/); | |||
| maxDepth = query.length - 1; | |||
| $.each(query, function(depth, value) { | |||
| var camelCaseValue = (depth != maxDepth) | |||
| ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1) | |||
| : query | |||
| ; | |||
| if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) { | |||
| object = object[camelCaseValue]; | |||
| } | |||
| else if( object[camelCaseValue] !== undefined ) { | |||
| found = object[camelCaseValue]; | |||
| return false; | |||
| } | |||
| else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) { | |||
| object = object[value]; | |||
| } | |||
| else if( object[value] !== undefined ) { | |||
| found = object[value]; | |||
| return false; | |||
| } | |||
| else { | |||
| return false; | |||
| } | |||
| }); | |||
| } | |||
| if ( $.isFunction( found ) ) { | |||
| response = found.apply(context, passedArguments); | |||
| } | |||
| else if(found !== undefined) { | |||
| response = found; | |||
| } | |||
| if($.isArray(returnedValue)) { | |||
| returnedValue.push(response); | |||
| } | |||
| else if(returnedValue !== undefined) { | |||
| returnedValue = [returnedValue, response]; | |||
| } | |||
| else if(response !== undefined) { | |||
| returnedValue = response; | |||
| } | |||
| return found; | |||
| } | |||
| }; | |||
| if(methodInvoked) { | |||
| if(instance === undefined) { | |||
| module.initialize(); | |||
| } | |||
| module.invoke(query); | |||
| } | |||
| else { | |||
| if(instance !== undefined) { | |||
| instance.invoke('destroy'); | |||
| } | |||
| module.initialize(); | |||
| } | |||
| }) | |||
| ; | |||
| return (returnedValue !== undefined) | |||
| ? returnedValue | |||
| : this | |||
| ; | |||
| }; | |||
| $.fn.modal.settings = { | |||
| name : 'Modal', | |||
| namespace : 'modal', | |||
| debug : false, | |||
| verbose : false, | |||
| performance : true, | |||
| observeChanges : false, | |||
| allowMultiple : false, | |||
| detachable : true, | |||
| closable : true, | |||
| autofocus : true, | |||
| inverted : false, | |||
| blurring : false, | |||
| dimmerSettings : { | |||
| closable : false, | |||
| useCSS : true | |||
| }, | |||
| context : 'body', | |||
| queue : false, | |||
| duration : 500, | |||
| offset : 0, | |||
| transition : 'scale', | |||
| // padding with edge of page | |||
| padding : 50, | |||
| // called before show animation | |||
| onShow : function(){}, | |||
| // called after show animation | |||
| onVisible : function(){}, | |||
| // called before hide animation | |||
| onHide : function(){ return true; }, | |||
| // called after hide animation | |||
| onHidden : function(){}, | |||
| // called after approve selector match | |||
| onApprove : function(){ return true; }, | |||
| // called after deny selector match | |||
| onDeny : function(){ return true; }, | |||
| selector : { | |||
| close : '> .close', | |||
| approve : '.actions .positive, .actions .approve, .actions .ok', | |||
| deny : '.actions .negative, .actions .deny, .actions .cancel', | |||
| modal : '.ui.modal' | |||
| }, | |||
| error : { | |||
| dimmer : 'UI Dimmer, a required component is not included in this page', | |||
| method : 'The method you called is not defined.', | |||
| notFound : 'The element you specified could not be found' | |||
| }, | |||
| className : { | |||
| active : 'active', | |||
| animating : 'animating', | |||
| blurring : 'blurring', | |||
| scrolling : 'scrolling', | |||
| undetached : 'undetached' | |||
| } | |||
| }; | |||
| })( jQuery, window, document ); | |||
| @ -0,0 +1,142 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Nag | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Nag | |||
| *******************************/ | |||
| .ui.nag { | |||
| display: none; | |||
| opacity: 0.95; | |||
| position: relative; | |||
| top: 0em; | |||
| left: 0px; | |||
| z-index: 999; | |||
| min-height: 0em; | |||
| width: 100%; | |||
| margin: 0em; | |||
| padding: 0.75em 1em; | |||
| background: #555555; | |||
| box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2); | |||
| font-size: 1rem; | |||
| text-align: center; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| border-radius: 0em 0em 0.2307em 0.2307em; | |||
| -webkit-transition: 0.2s background ease; | |||
| transition: 0.2s background ease; | |||
| } | |||
| a.ui.nag { | |||
| cursor: pointer; | |||
| } | |||
| .ui.nag > .title { | |||
| display: inline-block; | |||
| margin: 0em 0.5em; | |||
| color: #FFFFFF; | |||
| } | |||
| .ui.nag > .close.icon { | |||
| cursor: pointer; | |||
| opacity: 0.4; | |||
| position: absolute; | |||
| top: 50%; | |||
| right: 1em; | |||
| font-size: 1em; | |||
| margin: -0.5em 0em 0em; | |||
| color: #FFFFFF; | |||
| -webkit-transition: opacity 0.2s ease; | |||
| transition: opacity 0.2s ease; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| /* Hover */ | |||
| .ui.nag:hover { | |||
| background: #555555; | |||
| opacity: 1; | |||
| } | |||
| .ui.nag .close:hover { | |||
| opacity: 1; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*-------------- | |||
| Static | |||
| ---------------*/ | |||
| .ui.overlay.nag { | |||
| position: absolute; | |||
| display: block; | |||
| } | |||
| /*-------------- | |||
| Fixed | |||
| ---------------*/ | |||
| .ui.fixed.nag { | |||
| position: fixed; | |||
| } | |||
| /*-------------- | |||
| Bottom | |||
| ---------------*/ | |||
| .ui.bottom.nags, | |||
| .ui.bottom.nag { | |||
| border-radius: 0.2307em 0.2307em 0em 0em; | |||
| top: auto; | |||
| bottom: 0em; | |||
| } | |||
| /*-------------- | |||
| White | |||
| ---------------*/ | |||
| .ui.inverted.nags .nag, | |||
| .ui.inverted.nag { | |||
| background-color: #F3F4F5; | |||
| color: rgba(0, 0, 0, 0.85); | |||
| } | |||
| .ui.inverted.nags .nag .close, | |||
| .ui.inverted.nags .nag .title, | |||
| .ui.inverted.nag .close, | |||
| .ui.inverted.nag .title { | |||
| color: rgba(0, 0, 0, 0.4); | |||
| } | |||
| /******************************* | |||
| Groups | |||
| *******************************/ | |||
| .ui.nags .nag { | |||
| border-radius: 0em !important; | |||
| } | |||
| .ui.nags .nag:last-child { | |||
| border-radius: 0em 0em 0.2307em 0.2307em; | |||
| } | |||
| .ui.bottom.nags .nag:last-child { | |||
| border-radius: 0.2307em 0.2307em 0em 0em; | |||
| } | |||
| /******************************* | |||
| User Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,486 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Nag | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| ;(function ($, window, document, undefined) { | |||
| "use strict"; | |||
| $.fn.nag = function(parameters) { | |||
| var | |||
| $allModules = $(this), | |||
| moduleSelector = $allModules.selector || '', | |||
| time = new Date().getTime(), | |||
| performance = [], | |||
| query = arguments[0], | |||
| methodInvoked = (typeof query == 'string'), | |||
| queryArguments = [].slice.call(arguments, 1), | |||
| returnedValue | |||
| ; | |||
| $allModules | |||
| .each(function() { | |||
| var | |||
| settings = ( $.isPlainObject(parameters) ) | |||
| ? $.extend(true, {}, $.fn.nag.settings, parameters) | |||
| : $.extend({}, $.fn.nag.settings), | |||
| className = settings.className, | |||
| selector = settings.selector, | |||
| error = settings.error, | |||
| namespace = settings.namespace, | |||
| eventNamespace = '.' + namespace, | |||
| moduleNamespace = namespace + '-module', | |||
| $module = $(this), | |||
| $close = $module.find(selector.close), | |||
| $context = (settings.context) | |||
| ? $(settings.context) | |||
| : $('body'), | |||
| element = this, | |||
| instance = $module.data(moduleNamespace), | |||
| moduleOffset, | |||
| moduleHeight, | |||
| contextWidth, | |||
| contextHeight, | |||
| contextOffset, | |||
| yOffset, | |||
| yPosition, | |||
| timer, | |||
| module, | |||
| requestAnimationFrame = window.requestAnimationFrame | |||
| || window.mozRequestAnimationFrame | |||
| || window.webkitRequestAnimationFrame | |||
| || window.msRequestAnimationFrame | |||
| || function(callback) { setTimeout(callback, 0); } | |||
| ; | |||
| module = { | |||
| initialize: function() { | |||
| module.verbose('Initializing element'); | |||
| $module | |||
| .on('click' + eventNamespace, selector.close, module.dismiss) | |||
| .data(moduleNamespace, module) | |||
| ; | |||
| if(settings.detachable && $module.parent()[0] !== $context[0]) { | |||
| $module | |||
| .detach() | |||
| .prependTo($context) | |||
| ; | |||
| } | |||
| if(settings.displayTime > 0) { | |||
| setTimeout(module.hide, settings.displayTime); | |||
| } | |||
| module.show(); | |||
| }, | |||
| destroy: function() { | |||
| module.verbose('Destroying instance'); | |||
| $module | |||
| .removeData(moduleNamespace) | |||
| .off(eventNamespace) | |||
| ; | |||
| }, | |||
| show: function() { | |||
| if( module.should.show() && !$module.is(':visible') ) { | |||
| module.debug('Showing nag', settings.animation.show); | |||
| if(settings.animation.show == 'fade') { | |||
| $module | |||
| .fadeIn(settings.duration, settings.easing) | |||
| ; | |||
| } | |||
| else { | |||
| $module | |||
| .slideDown(settings.duration, settings.easing) | |||
| ; | |||
| } | |||
| } | |||
| }, | |||
| hide: function() { | |||
| module.debug('Showing nag', settings.animation.hide); | |||
| if(settings.animation.show == 'fade') { | |||
| $module | |||
| .fadeIn(settings.duration, settings.easing) | |||
| ; | |||
| } | |||
| else { | |||
| $module | |||
| .slideUp(settings.duration, settings.easing) | |||
| ; | |||
| } | |||
| }, | |||
| onHide: function() { | |||
| module.debug('Removing nag', settings.animation.hide); | |||
| $module.remove(); | |||
| if (settings.onHide) { | |||
| settings.onHide(); | |||
| } | |||
| }, | |||
| dismiss: function(event) { | |||
| if(settings.storageMethod) { | |||
| module.storage.set(settings.key, settings.value); | |||
| } | |||
| module.hide(); | |||
| event.stopImmediatePropagation(); | |||
| event.preventDefault(); | |||
| }, | |||
| should: { | |||
| show: function() { | |||
| if(settings.persist) { | |||
| module.debug('Persistent nag is set, can show nag'); | |||
| return true; | |||
| } | |||
| if( module.storage.get(settings.key) != settings.value.toString() ) { | |||
| module.debug('Stored value is not set, can show nag', module.storage.get(settings.key)); | |||
| return true; | |||
| } | |||
| module.debug('Stored value is set, cannot show nag', module.storage.get(settings.key)); | |||
| return false; | |||
| } | |||
| }, | |||
| get: { | |||
| storageOptions: function() { | |||
| var | |||
| options = {} | |||
| ; | |||
| if(settings.expires) { | |||
| options.expires = settings.expires; | |||
| } | |||
| if(settings.domain) { | |||
| options.domain = settings.domain; | |||
| } | |||
| if(settings.path) { | |||
| options.path = settings.path; | |||
| } | |||
| return options; | |||
| } | |||
| }, | |||
| clear: function() { | |||
| module.storage.remove(settings.key); | |||
| }, | |||
| storage: { | |||
| set: function(key, value) { | |||
| var | |||
| options = module.get.storageOptions() | |||
| ; | |||
| if(settings.storageMethod == 'localstorage' && window.localStorage !== undefined) { | |||
| window.localStorage.setItem(key, value); | |||
| module.debug('Value stored using local storage', key, value); | |||
| } | |||
| else if(settings.storageMethod == 'sessionstorage' && window.sessionStorage !== undefined) { | |||
| window.sessionStorage.setItem(key, value); | |||
| module.debug('Value stored using session storage', key, value); | |||
| } | |||
| else if($.cookie !== undefined) { | |||
| $.cookie(key, value, options); | |||
| module.debug('Value stored using cookie', key, value, options); | |||
| } | |||
| else { | |||
| module.error(error.noCookieStorage); | |||
| return; | |||
| } | |||
| }, | |||
| get: function(key, value) { | |||
| var | |||
| storedValue | |||
| ; | |||
| if(settings.storageMethod == 'localstorage' && window.localStorage !== undefined) { | |||
| storedValue = window.localStorage.getItem(key); | |||
| } | |||
| else if(settings.storageMethod == 'sessionstorage' && window.sessionStorage !== undefined) { | |||
| storedValue = window.sessionStorage.getItem(key); | |||
| } | |||
| // get by cookie | |||
| else if($.cookie !== undefined) { | |||
| storedValue = $.cookie(key); | |||
| } | |||
| else { | |||
| module.error(error.noCookieStorage); | |||
| } | |||
| if(storedValue == 'undefined' || storedValue == 'null' || storedValue === undefined || storedValue === null) { | |||
| storedValue = undefined; | |||
| } | |||
| return storedValue; | |||
| }, | |||
| remove: function(key) { | |||
| var | |||
| options = module.get.storageOptions() | |||
| ; | |||
| if(settings.storageMethod == 'localstorage' && window.localStorage !== undefined) { | |||
| window.localStorage.removeItem(key); | |||
| } | |||
| else if(settings.storageMethod == 'sessionstorage' && window.sessionStorage !== undefined) { | |||
| window.sessionStorage.removeItem(key); | |||
| } | |||
| // store by cookie | |||
| else if($.cookie !== undefined) { | |||
| $.removeCookie(key, options); | |||
| } | |||
| else { | |||
| module.error(error.noStorage); | |||
| } | |||
| } | |||
| }, | |||
| setting: function(name, value) { | |||
| module.debug('Changing setting', name, value); | |||
| if( $.isPlainObject(name) ) { | |||
| $.extend(true, settings, name); | |||
| } | |||
| else if(value !== undefined) { | |||
| settings[name] = value; | |||
| } | |||
| else { | |||
| return settings[name]; | |||
| } | |||
| }, | |||
| internal: function(name, value) { | |||
| if( $.isPlainObject(name) ) { | |||
| $.extend(true, module, name); | |||
| } | |||
| else if(value !== undefined) { | |||
| module[name] = value; | |||
| } | |||
| else { | |||
| return module[name]; | |||
| } | |||
| }, | |||
| debug: function() { | |||
| if(settings.debug) { | |||
| if(settings.performance) { | |||
| module.performance.log(arguments); | |||
| } | |||
| else { | |||
| module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':'); | |||
| module.debug.apply(console, arguments); | |||
| } | |||
| } | |||
| }, | |||
| verbose: function() { | |||
| if(settings.verbose && settings.debug) { | |||
| if(settings.performance) { | |||
| module.performance.log(arguments); | |||
| } | |||
| else { | |||
| module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':'); | |||
| module.verbose.apply(console, arguments); | |||
| } | |||
| } | |||
| }, | |||
| error: function() { | |||
| module.error = Function.prototype.bind.call(console.error, console, settings.name + ':'); | |||
| module.error.apply(console, arguments); | |||
| }, | |||
| performance: { | |||
| log: function(message) { | |||
| var | |||
| currentTime, | |||
| executionTime, | |||
| previousTime | |||
| ; | |||
| if(settings.performance) { | |||
| currentTime = new Date().getTime(); | |||
| previousTime = time || currentTime; | |||
| executionTime = currentTime - previousTime; | |||
| time = currentTime; | |||
| performance.push({ | |||
| 'Name' : message[0], | |||
| 'Arguments' : [].slice.call(message, 1) || '', | |||
| 'Element' : element, | |||
| 'Execution Time' : executionTime | |||
| }); | |||
| } | |||
| clearTimeout(module.performance.timer); | |||
| module.performance.timer = setTimeout(module.performance.display, 500); | |||
| }, | |||
| display: function() { | |||
| var | |||
| title = settings.name + ':', | |||
| totalTime = 0 | |||
| ; | |||
| time = false; | |||
| clearTimeout(module.performance.timer); | |||
| $.each(performance, function(index, data) { | |||
| totalTime += data['Execution Time']; | |||
| }); | |||
| title += ' ' + totalTime + 'ms'; | |||
| if(moduleSelector) { | |||
| title += ' \'' + moduleSelector + '\''; | |||
| } | |||
| if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) { | |||
| console.groupCollapsed(title); | |||
| if(console.table) { | |||
| console.table(performance); | |||
| } | |||
| else { | |||
| $.each(performance, function(index, data) { | |||
| console.log(data['Name'] + ': ' + data['Execution Time']+'ms'); | |||
| }); | |||
| } | |||
| console.groupEnd(); | |||
| } | |||
| performance = []; | |||
| } | |||
| }, | |||
| invoke: function(query, passedArguments, context) { | |||
| var | |||
| object = instance, | |||
| maxDepth, | |||
| found, | |||
| response | |||
| ; | |||
| passedArguments = passedArguments || queryArguments; | |||
| context = element || context; | |||
| if(typeof query == 'string' && object !== undefined) { | |||
| query = query.split(/[\. ]/); | |||
| maxDepth = query.length - 1; | |||
| $.each(query, function(depth, value) { | |||
| var camelCaseValue = (depth != maxDepth) | |||
| ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1) | |||
| : query | |||
| ; | |||
| if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) { | |||
| object = object[camelCaseValue]; | |||
| } | |||
| else if( object[camelCaseValue] !== undefined ) { | |||
| found = object[camelCaseValue]; | |||
| return false; | |||
| } | |||
| else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) { | |||
| object = object[value]; | |||
| } | |||
| else if( object[value] !== undefined ) { | |||
| found = object[value]; | |||
| return false; | |||
| } | |||
| else { | |||
| module.error(error.method, query); | |||
| return false; | |||
| } | |||
| }); | |||
| } | |||
| if ( $.isFunction( found ) ) { | |||
| response = found.apply(context, passedArguments); | |||
| } | |||
| else if(found !== undefined) { | |||
| response = found; | |||
| } | |||
| if($.isArray(returnedValue)) { | |||
| returnedValue.push(response); | |||
| } | |||
| else if(returnedValue !== undefined) { | |||
| returnedValue = [returnedValue, response]; | |||
| } | |||
| else if(response !== undefined) { | |||
| returnedValue = response; | |||
| } | |||
| return found; | |||
| } | |||
| }; | |||
| if(methodInvoked) { | |||
| if(instance === undefined) { | |||
| module.initialize(); | |||
| } | |||
| module.invoke(query); | |||
| } | |||
| else { | |||
| if(instance !== undefined) { | |||
| instance.invoke('destroy'); | |||
| } | |||
| module.initialize(); | |||
| } | |||
| }) | |||
| ; | |||
| return (returnedValue !== undefined) | |||
| ? returnedValue | |||
| : this | |||
| ; | |||
| }; | |||
| $.fn.nag.settings = { | |||
| name : 'Nag', | |||
| debug : false, | |||
| verbose : false, | |||
| performance : true, | |||
| namespace : 'Nag', | |||
| // allows cookie to be overriden | |||
| persist : false, | |||
| // set to zero to require manually dismissal, otherwise hides on its own | |||
| displayTime : 0, | |||
| animation : { | |||
| show : 'slide', | |||
| hide : 'slide' | |||
| }, | |||
| context : false, | |||
| detachable : false, | |||
| expires : 30, | |||
| domain : false, | |||
| path : '/', | |||
| // type of storage to use | |||
| storageMethod : 'cookie', | |||
| // value to store in dismissed localstorage/cookie | |||
| key : 'nag', | |||
| value : 'dismiss', | |||
| error: { | |||
| noCookieStorage : '$.cookie is not included. A storage solution is required.', | |||
| noStorage : 'Neither $.cookie or store is defined. A storage solution is required for storing state', | |||
| method : 'The method you called is not defined.' | |||
| }, | |||
| className : { | |||
| bottom : 'bottom', | |||
| fixed : 'fixed' | |||
| }, | |||
| selector : { | |||
| close : '.close.icon' | |||
| }, | |||
| speed : 500, | |||
| easing : 'easeOutQuad', | |||
| onHide: function() {} | |||
| }; | |||
| })( jQuery, window, document ); | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Nag | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */.ui.nag{display:none;opacity:.95;position:relative;top:0;left:0;z-index:999;min-height:0;width:100%;margin:0;padding:.75em 1em;background:#555;box-shadow:0 1px 2px 0 rgba(0,0,0,.2);font-size:1rem;text-align:center;color:rgba(0,0,0,.87);border-radius:0 0 .2307em .2307em;-webkit-transition:.2s background ease;transition:.2s background ease}a.ui.nag{cursor:pointer}.ui.nag>.title{display:inline-block;margin:0 .5em;color:#FFF}.ui.nag>.close.icon{cursor:pointer;opacity:.4;position:absolute;top:50%;right:1em;font-size:1em;margin:-.5em 0 0;color:#FFF;-webkit-transition:opacity .2s ease;transition:opacity .2s ease}.ui.nag:hover{background:#555;opacity:1}.ui.nag .close:hover{opacity:1}.ui.overlay.nag{position:absolute;display:block}.ui.fixed.nag{position:fixed}.ui.bottom.nag,.ui.bottom.nags{border-radius:.2307em .2307em 0 0;top:auto;bottom:0}.ui.inverted.nag,.ui.inverted.nags .nag{background-color:#F3F4F5;color:rgba(0,0,0,.85)}.ui.inverted.nag .close,.ui.inverted.nag .title,.ui.inverted.nags .nag .close,.ui.inverted.nags .nag .title{color:rgba(0,0,0,.4)}.ui.nags .nag{border-radius:0!important}.ui.nags .nag:last-child{border-radius:0 0 .2307em .2307em}.ui.bottom.nags .nag:last-child{border-radius:.2307em .2307em 0 0} | |||
| @ -0,0 +1,370 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Popup | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Popup | |||
| *******************************/ | |||
| .ui.popup { | |||
| display: none; | |||
| position: absolute; | |||
| top: 0px; | |||
| right: 0px; | |||
| /* Fixes content being squished when inline (moz only) */ | |||
| min-width: -webkit-min-content; | |||
| min-width: -moz-min-content; | |||
| min-width: min-content; | |||
| z-index: 1900; | |||
| border: 1px solid #DDDDDD; | |||
| line-height: 1.4285em; | |||
| max-width: 250px; | |||
| background: #FFFFFF; | |||
| padding: 0.53846154em 0.84615385em; | |||
| font-weight: normal; | |||
| font-style: normal; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| border-radius: 0.2307em; | |||
| box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.08); | |||
| } | |||
| .ui.popup > .header { | |||
| padding: 0em; | |||
| font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif; | |||
| font-size: 1.125em; | |||
| line-height: 1.2; | |||
| font-weight: bold; | |||
| } | |||
| .ui.popup > .header + .content { | |||
| padding-top: 0.5em; | |||
| } | |||
| .ui.popup:before { | |||
| position: absolute; | |||
| content: ''; | |||
| width: 0.75em; | |||
| height: 0.75em; | |||
| background: #FFFFFF; | |||
| -webkit-transform: rotate(45deg); | |||
| transform: rotate(45deg); | |||
| z-index: 2; | |||
| box-shadow: 1px 1px 0px 0px #c4c4c4; | |||
| } | |||
| /******************************* | |||
| Types | |||
| *******************************/ | |||
| /*-------------- | |||
| Spacing | |||
| ---------------*/ | |||
| .ui.popup { | |||
| margin: 0em; | |||
| } | |||
| /* Extending from Top */ | |||
| .ui.top.popup { | |||
| margin: 0em 0em 0.75em; | |||
| } | |||
| .ui.top.left.popup { | |||
| -webkit-transform-origin: left bottom; | |||
| transform-origin: left bottom; | |||
| } | |||
| .ui.top.center.popup { | |||
| -webkit-transform-origin: center bottom; | |||
| transform-origin: center bottom; | |||
| } | |||
| .ui.top.right.popup { | |||
| -webkit-transform-origin: right bottom; | |||
| transform-origin: right bottom; | |||
| } | |||
| /* Extending from Vertical Center */ | |||
| .ui.left.center.popup { | |||
| margin: 0em 0.75em 0em 0em; | |||
| -webkit-transform-origin: right 50%; | |||
| transform-origin: right 50%; | |||
| } | |||
| .ui.right.center.popup { | |||
| margin: 0em 0em 0em 0.75em; | |||
| -webkit-transform-origin: left 50%; | |||
| transform-origin: left 50%; | |||
| } | |||
| /* Extending from Bottom */ | |||
| .ui.bottom.popup { | |||
| margin: 0.75em 0em 0em; | |||
| } | |||
| .ui.bottom.left.popup { | |||
| -webkit-transform-origin: left top; | |||
| transform-origin: left top; | |||
| } | |||
| .ui.bottom.center.popup { | |||
| -webkit-transform-origin: center top; | |||
| transform-origin: center top; | |||
| } | |||
| .ui.bottom.right.popup { | |||
| -webkit-transform-origin: right top; | |||
| transform-origin: right top; | |||
| } | |||
| /*-------------- | |||
| Pointer | |||
| ---------------*/ | |||
| /*--- Below ---*/ | |||
| .ui.bottom.center.popup:before { | |||
| margin-left: -0.325em; | |||
| top: -0.325em; | |||
| left: 50%; | |||
| right: auto; | |||
| bottom: auto; | |||
| box-shadow: -1px -1px 0px 0px #c4c4c4; | |||
| } | |||
| .ui.bottom.left.popup { | |||
| margin-left: 0em; | |||
| } | |||
| /*rtl:rename*/ | |||
| .ui.bottom.left.popup:before { | |||
| top: -0.325em; | |||
| left: 1em; | |||
| right: auto; | |||
| bottom: auto; | |||
| margin-left: 0em; | |||
| box-shadow: -1px -1px 0px 0px #c4c4c4; | |||
| } | |||
| .ui.bottom.right.popup { | |||
| margin-right: 0em; | |||
| } | |||
| /*rtl:rename*/ | |||
| .ui.bottom.right.popup:before { | |||
| top: -0.325em; | |||
| right: 1em; | |||
| bottom: auto; | |||
| left: auto; | |||
| margin-left: 0em; | |||
| box-shadow: -1px -1px 0px 0px #c4c4c4; | |||
| } | |||
| /*--- Above ---*/ | |||
| .ui.top.center.popup:before { | |||
| top: auto; | |||
| right: auto; | |||
| bottom: -0.325em; | |||
| left: 50%; | |||
| margin-left: -0.325em; | |||
| } | |||
| .ui.top.left.popup { | |||
| margin-left: 0em; | |||
| } | |||
| /*rtl:rename*/ | |||
| .ui.top.left.popup:before { | |||
| bottom: -0.325em; | |||
| left: 1em; | |||
| top: auto; | |||
| right: auto; | |||
| margin-left: 0em; | |||
| } | |||
| .ui.top.right.popup { | |||
| margin-right: 0em; | |||
| } | |||
| /*rtl:rename*/ | |||
| .ui.top.right.popup:before { | |||
| bottom: -0.325em; | |||
| right: 1em; | |||
| top: auto; | |||
| left: auto; | |||
| margin-left: 0em; | |||
| } | |||
| /*--- Left Center ---*/ | |||
| /*rtl:rename*/ | |||
| .ui.left.center.popup:before { | |||
| top: 50%; | |||
| right: -0.325em; | |||
| bottom: auto; | |||
| left: auto; | |||
| margin-top: -0.325em; | |||
| box-shadow: 1px -1px 0px 0px #c4c4c4; | |||
| } | |||
| /*--- Right Center ---*/ | |||
| /*rtl:rename*/ | |||
| .ui.right.center.popup:before { | |||
| top: 50%; | |||
| left: -0.325em; | |||
| bottom: auto; | |||
| right: auto; | |||
| margin-top: -0.325em; | |||
| box-shadow: -1px 1px 0px 0px #c4c4c4; | |||
| } | |||
| /* Arrow Color By Location */ | |||
| .ui.bottom.popup:before { | |||
| background: #FFFFFF; | |||
| } | |||
| .ui.right.center.popup:before, | |||
| .ui.left.center.popup:before { | |||
| background: #FFFFFF; | |||
| } | |||
| .ui.top.popup:before { | |||
| background: #FFFFFF; | |||
| } | |||
| /* Inverted Arrow Color */ | |||
| .ui.inverted.bottom.popup:before { | |||
| background: #333333; | |||
| } | |||
| .ui.inverted.right.center.popup:before, | |||
| .ui.inverted.left.center.popup:before { | |||
| background: #333333; | |||
| } | |||
| .ui.inverted.top.popup:before { | |||
| background: #333333; | |||
| } | |||
| /******************************* | |||
| Coupling | |||
| *******************************/ | |||
| /* Immediate Nested Grid */ | |||
| .ui.popup > .ui.grid:not(.padded) { | |||
| width: calc(100% + 1.75rem); | |||
| margin: -0.7rem -0.875rem; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| .ui.loading.popup { | |||
| display: block; | |||
| visibility: hidden; | |||
| z-index: -1; | |||
| } | |||
| .ui.animating.popup, | |||
| .ui.visible.popup { | |||
| display: block; | |||
| } | |||
| .ui.visible.popup { | |||
| -webkit-transform: translateZ(0px); | |||
| transform: translateZ(0px); | |||
| -webkit-backface-visibility: hidden; | |||
| backface-visibility: hidden; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*-------------- | |||
| Basic | |||
| ---------------*/ | |||
| .ui.basic.popup:before { | |||
| display: none; | |||
| } | |||
| /*-------------- | |||
| Wide | |||
| ---------------*/ | |||
| .ui.wide.popup { | |||
| max-width: 350px; | |||
| } | |||
| .ui[class*="very wide"].popup { | |||
| max-width: 550px; | |||
| } | |||
| @media only screen and (max-width: 687px) { | |||
| .ui.wide.popup, | |||
| .ui[class*="very wide"].popup { | |||
| max-width: 250px; | |||
| } | |||
| } | |||
| /*-------------- | |||
| Fluid | |||
| ---------------*/ | |||
| .ui.fluid.popup { | |||
| width: 100%; | |||
| max-width: none; | |||
| } | |||
| /*-------------- | |||
| Colors | |||
| ---------------*/ | |||
| /* Inverted colors */ | |||
| .ui.inverted.popup { | |||
| background: #333333; | |||
| color: #FFFFFF; | |||
| border: none; | |||
| box-shadow: none; | |||
| } | |||
| .ui.inverted.popup .header { | |||
| background-color: none; | |||
| color: #FFFFFF; | |||
| } | |||
| .ui.inverted.popup:before { | |||
| background-color: #333333; | |||
| box-shadow: none !important; | |||
| } | |||
| /*-------------- | |||
| Flowing | |||
| ---------------*/ | |||
| .ui.flowing.popup { | |||
| max-width: none; | |||
| } | |||
| /*-------------- | |||
| Sizes | |||
| ---------------*/ | |||
| .ui.mini.popup { | |||
| font-size: 0.69230769rem; | |||
| } | |||
| .ui.tiny.popup { | |||
| font-size: 0.84615385rem; | |||
| } | |||
| .ui.small.popup { | |||
| font-size: 0.76923077em; | |||
| } | |||
| .ui.popup { | |||
| font-size: 0.84615385em; | |||
| } | |||
| .ui.large.popup { | |||
| font-size: 1em; | |||
| } | |||
| .ui.huge.popup { | |||
| font-size: 1.46153846rem; | |||
| } | |||
| /******************************* | |||
| User Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Popup | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */.ui.popup{display:none;position:absolute;top:0;right:0;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;z-index:1900;border:1px solid #DDD;line-height:1.4285em;max-width:250px;background:#FFF;padding:.53846154em .84615385em;font-weight:400;font-style:normal;color:rgba(0,0,0,.87);border-radius:.2307em;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.08);margin:0}.ui.popup>.header{padding:0;font-family:Arial,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1.125em;line-height:1.2;font-weight:700}.ui.popup>.header+.content{padding-top:.5em}.ui.popup:before{position:absolute;content:'';width:.75em;height:.75em;background:#FFF;-webkit-transform:rotate(45deg);transform:rotate(45deg);z-index:2;box-shadow:1px 1px 0 0 #c4c4c4}.ui.top.popup{margin:0 0 .75em}.ui.top.left.popup{-webkit-transform-origin:left bottom;transform-origin:left bottom}.ui.top.center.popup{-webkit-transform-origin:center bottom;transform-origin:center bottom}.ui.top.right.popup{-webkit-transform-origin:right bottom;transform-origin:right bottom}.ui.left.center.popup{margin:0 .75em 0 0;-webkit-transform-origin:right 50%;transform-origin:right 50%}.ui.right.center.popup{margin:0 0 0 .75em;-webkit-transform-origin:left 50%;transform-origin:left 50%}.ui.bottom.popup{margin:.75em 0 0}.ui.bottom.left.popup{-webkit-transform-origin:left top;transform-origin:left top}.ui.bottom.center.popup{-webkit-transform-origin:center top;transform-origin:center top}.ui.bottom.right.popup{-webkit-transform-origin:right top;transform-origin:right top;margin-right:0}.ui.bottom.center.popup:before{margin-left:-.325em;top:-.325em;left:50%;right:auto;bottom:auto;box-shadow:-1px -1px 0 0 #c4c4c4}.ui.bottom.left.popup{margin-left:0}.ui.bottom.left.popup:before{top:-.325em;left:1em;right:auto;bottom:auto;margin-left:0;box-shadow:-1px -1px 0 0 #c4c4c4}.ui.bottom.right.popup:before{top:-.325em;right:1em;bottom:auto;left:auto;margin-left:0;box-shadow:-1px -1px 0 0 #c4c4c4}.ui.top.center.popup:before{top:auto;right:auto;bottom:-.325em;left:50%;margin-left:-.325em}.ui.top.left.popup{margin-left:0}.ui.top.left.popup:before{bottom:-.325em;left:1em;top:auto;right:auto;margin-left:0}.ui.top.right.popup{margin-right:0}.ui.top.right.popup:before{bottom:-.325em;right:1em;top:auto;left:auto;margin-left:0}.ui.left.center.popup:before{top:50%;right:-.325em;bottom:auto;left:auto;margin-top:-.325em;box-shadow:1px -1px 0 0 #c4c4c4}.ui.right.center.popup:before{top:50%;left:-.325em;bottom:auto;right:auto;margin-top:-.325em;box-shadow:-1px 1px 0 0 #c4c4c4}.ui.bottom.popup:before,.ui.left.center.popup:before,.ui.right.center.popup:before,.ui.top.popup:before{background:#FFF}.ui.inverted.bottom.popup:before,.ui.inverted.left.center.popup:before,.ui.inverted.right.center.popup:before,.ui.inverted.top.popup:before{background:#333}.ui.popup>.ui.grid:not(.padded){width:calc(100% + 1.75rem);margin:-.7rem -.875rem}.ui.loading.popup{display:block;visibility:hidden;z-index:-1}.ui.animating.popup,.ui.visible.popup{display:block}.ui.visible.popup{-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.ui.basic.popup:before{display:none}.ui.wide.popup{max-width:350px}.ui[class*="very wide"].popup{max-width:550px}@media only screen and (max-width:687px){.ui.wide.popup,.ui[class*="very wide"].popup{max-width:250px}}.ui.fluid.popup{width:100%;max-width:none}.ui.inverted.popup{background:#333;color:#FFF;border:none;box-shadow:none}.ui.inverted.popup .header{background-color:none;color:#FFF}.ui.inverted.popup:before{background-color:#333;box-shadow:none!important}.ui.flowing.popup{max-width:none}.ui.mini.popup{font-size:.69230769rem}.ui.tiny.popup{font-size:.84615385rem}.ui.small.popup{font-size:.76923077em}.ui.popup{font-size:.84615385em}.ui.large.popup{font-size:1em}.ui.huge.popup{font-size:1.46153846rem} | |||
| @ -0,0 +1,511 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Progress Bar | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Progress | |||
| *******************************/ | |||
| .ui.progress { | |||
| position: relative; | |||
| display: block; | |||
| max-width: 100%; | |||
| border: none; | |||
| margin: 1em 0em 2.5em; | |||
| box-shadow: none; | |||
| background: rgba(0, 0, 0, 0.1); | |||
| padding: 0em; | |||
| border-radius: 0.2307em; | |||
| } | |||
| .ui.progress:first-child { | |||
| margin: 0em 0em 2.5em; | |||
| } | |||
| .ui.progress:last-child { | |||
| margin: 0em 0em 1.5em; | |||
| } | |||
| /******************************* | |||
| Content | |||
| *******************************/ | |||
| /* Activity Bar */ | |||
| .ui.progress .bar { | |||
| display: block; | |||
| line-height: 1; | |||
| position: relative; | |||
| width: 0%; | |||
| min-width: 2em; | |||
| background: #888888; | |||
| border-radius: 0.2307em; | |||
| -webkit-transition: width 0.1s ease, background-color 0.1s ease; | |||
| transition: width 0.1s ease, background-color 0.1s ease; | |||
| } | |||
| /* Percent Complete */ | |||
| .ui.progress .bar > .progress { | |||
| white-space: nowrap; | |||
| position: absolute; | |||
| width: auto; | |||
| font-size: 0.92307692em; | |||
| top: 50%; | |||
| right: 0.5em; | |||
| left: auto; | |||
| bottom: auto; | |||
| color: rgba(255, 255, 255, 0.7); | |||
| text-shadow: none; | |||
| margin-top: -0.5em; | |||
| font-weight: bold; | |||
| text-align: left; | |||
| } | |||
| /* Label */ | |||
| .ui.progress > .label { | |||
| position: absolute; | |||
| width: 100%; | |||
| font-size: 1em; | |||
| top: 100%; | |||
| right: auto; | |||
| left: 0%; | |||
| bottom: auto; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| font-weight: bold; | |||
| text-shadow: none; | |||
| margin-top: 0.2em; | |||
| text-align: center; | |||
| -webkit-transition: color 0.4s ease; | |||
| transition: color 0.4s ease; | |||
| } | |||
| /******************************* | |||
| Types | |||
| *******************************/ | |||
| /* Indicating */ | |||
| .ui.indicating.progress[data-percent^="1"] .bar, | |||
| .ui.indicating.progress[data-percent^="2"] .bar { | |||
| background-color: #D95C5C; | |||
| } | |||
| .ui.indicating.progress[data-percent^="3"] .bar { | |||
| background-color: #EFBC72; | |||
| } | |||
| .ui.indicating.progress[data-percent^="4"] .bar, | |||
| .ui.indicating.progress[data-percent^="5"] .bar { | |||
| background-color: #E6BB48; | |||
| } | |||
| .ui.indicating.progress[data-percent^="6"] .bar { | |||
| background-color: #DDC928; | |||
| } | |||
| .ui.indicating.progress[data-percent^="7"] .bar, | |||
| .ui.indicating.progress[data-percent^="8"] .bar { | |||
| background-color: #B4D95C; | |||
| } | |||
| .ui.indicating.progress[data-percent^="9"] .bar, | |||
| .ui.indicating.progress[data-percent^="100"] .bar { | |||
| background-color: #66DA81; | |||
| } | |||
| /* Indicating Label */ | |||
| .ui.indicating.progress[data-percent^="1"] .label, | |||
| .ui.indicating.progress[data-percent^="2"] .label { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.indicating.progress[data-percent^="3"] .label { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.indicating.progress[data-percent^="4"] .label, | |||
| .ui.indicating.progress[data-percent^="5"] .label { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.indicating.progress[data-percent^="6"] .label { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.indicating.progress[data-percent^="7"] .label, | |||
| .ui.indicating.progress[data-percent^="8"] .label { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.indicating.progress[data-percent^="9"] .label, | |||
| .ui.indicating.progress[data-percent^="100"] .label { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /* Single Digits */ | |||
| .ui.indicating.progress[data-percent="1"] .bar, | |||
| .ui.indicating.progress[data-percent="2"] .bar, | |||
| .ui.indicating.progress[data-percent="3"] .bar, | |||
| .ui.indicating.progress[data-percent="4"] .bar, | |||
| .ui.indicating.progress[data-percent="5"] .bar, | |||
| .ui.indicating.progress[data-percent="6"] .bar, | |||
| .ui.indicating.progress[data-percent="7"] .bar, | |||
| .ui.indicating.progress[data-percent="8"] .bar, | |||
| .ui.indicating.progress[data-percent="9"] .bar { | |||
| background-color: #D95C5C; | |||
| } | |||
| .ui.indicating.progress[data-percent="1"] .label, | |||
| .ui.indicating.progress[data-percent="2"] .label, | |||
| .ui.indicating.progress[data-percent="3"] .label, | |||
| .ui.indicating.progress[data-percent="4"] .label, | |||
| .ui.indicating.progress[data-percent="5"] .label, | |||
| .ui.indicating.progress[data-percent="6"] .label, | |||
| .ui.indicating.progress[data-percent="7"] .label, | |||
| .ui.indicating.progress[data-percent="8"] .label, | |||
| .ui.indicating.progress[data-percent="9"] .label { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /* Indicating Success */ | |||
| .ui.indicating.progress.success .label { | |||
| color: #1A531B; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| /*-------------- | |||
| Success | |||
| ---------------*/ | |||
| .ui.progress.success .bar { | |||
| background-color: #78CB5B !important; | |||
| } | |||
| .ui.progress.success .bar, | |||
| .ui.progress.success .bar::after { | |||
| -webkit-animation: none !important; | |||
| animation: none !important; | |||
| } | |||
| .ui.progress.success > .label { | |||
| color: #1A531B; | |||
| } | |||
| /*-------------- | |||
| Warning | |||
| ---------------*/ | |||
| .ui.progress.warning .bar { | |||
| background-color: #F2C037 !important; | |||
| } | |||
| .ui.progress.warning .bar, | |||
| .ui.progress.warning .bar::after { | |||
| -webkit-animation: none !important; | |||
| animation: none !important; | |||
| } | |||
| .ui.progress.warning > .label { | |||
| color: #794B02; | |||
| } | |||
| /*-------------- | |||
| Error | |||
| ---------------*/ | |||
| .ui.progress.error .bar { | |||
| background-color: #DB2828 !important; | |||
| } | |||
| .ui.progress.error .bar, | |||
| .ui.progress.error .bar::after { | |||
| -webkit-animation: none !important; | |||
| animation: none !important; | |||
| } | |||
| .ui.progress.error > .label { | |||
| color: #912D2B; | |||
| } | |||
| /*-------------- | |||
| Active | |||
| ---------------*/ | |||
| .ui.active.progress .bar { | |||
| position: relative; | |||
| min-width: 2em; | |||
| } | |||
| .ui.active.progress .bar::after { | |||
| content: ''; | |||
| opacity: 0; | |||
| position: absolute; | |||
| top: 0px; | |||
| left: 0px; | |||
| right: 0px; | |||
| bottom: 0px; | |||
| background: #FFFFFF; | |||
| border-radius: 0.2307em; | |||
| -webkit-animation: progress-active 2s ease infinite; | |||
| animation: progress-active 2s ease infinite; | |||
| } | |||
| @-webkit-keyframes progress-active { | |||
| 0% { | |||
| opacity: 0.3; | |||
| width: 0; | |||
| } | |||
| 100% { | |||
| opacity: 0; | |||
| width: 100%; | |||
| } | |||
| } | |||
| @keyframes progress-active { | |||
| 0% { | |||
| opacity: 0.3; | |||
| width: 0; | |||
| } | |||
| 100% { | |||
| opacity: 0; | |||
| width: 100%; | |||
| } | |||
| } | |||
| /*-------------- | |||
| Disabled | |||
| ---------------*/ | |||
| .ui.disabled.progress { | |||
| opacity: 0.35; | |||
| } | |||
| .ui.disabled.progress .bar, | |||
| .ui.disabled.progress .bar::after { | |||
| -webkit-animation: none !important; | |||
| animation: none !important; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*-------------- | |||
| Inverted | |||
| ---------------*/ | |||
| .ui.inverted.progress { | |||
| background: rgba(255, 255, 255, 0.08); | |||
| border: none; | |||
| } | |||
| .ui.inverted.progress .bar { | |||
| background: #888888; | |||
| } | |||
| .ui.inverted.progress .bar > .progress { | |||
| color: #F9FAFB; | |||
| } | |||
| .ui.inverted.progress > .label { | |||
| color: #FFFFFF; | |||
| } | |||
| .ui.inverted.progress.success > .label { | |||
| color: #78CB5B; | |||
| } | |||
| .ui.inverted.progress.warning > .label { | |||
| color: #F2C037; | |||
| } | |||
| .ui.inverted.progress.error > .label { | |||
| color: #DB2828; | |||
| } | |||
| /*-------------- | |||
| Attached | |||
| ---------------*/ | |||
| /* bottom attached */ | |||
| .ui.progress.attached { | |||
| background: transparent; | |||
| position: relative; | |||
| border: none; | |||
| margin: 0em; | |||
| } | |||
| .ui.progress.attached, | |||
| .ui.progress.attached .bar { | |||
| display: block; | |||
| height: 0.2rem; | |||
| padding: 0px; | |||
| overflow: hidden; | |||
| border-radius: 0em 0em 0.2307em 0.2307em; | |||
| } | |||
| .ui.progress.attached .bar { | |||
| border-radius: 0em; | |||
| } | |||
| /* top attached */ | |||
| .ui.progress.top.attached, | |||
| .ui.progress.top.attached .bar { | |||
| top: 0px; | |||
| border-radius: 0.2307em 0.2307em 0em 0em; | |||
| } | |||
| .ui.progress.top.attached .bar { | |||
| border-radius: 0em; | |||
| } | |||
| /* Coupling */ | |||
| .ui.segment > .ui.attached.progress, | |||
| .ui.card > .ui.attached.progress { | |||
| position: absolute; | |||
| top: auto; | |||
| left: 0; | |||
| bottom: 100%; | |||
| width: 100%; | |||
| } | |||
| .ui.segment > .ui.bottom.attached.progress, | |||
| .ui.card > .ui.bottom.attached.progress { | |||
| top: 100%; | |||
| bottom: auto; | |||
| } | |||
| /*-------------- | |||
| Colors | |||
| ---------------*/ | |||
| /* Red */ | |||
| .ui.red.progress .bar { | |||
| background-color: #DB2828; | |||
| } | |||
| .ui.red.inverted.progress .bar { | |||
| background-color: #FF695E; | |||
| } | |||
| /* Orange */ | |||
| .ui.orange.progress .bar { | |||
| background-color: #D26911; | |||
| } | |||
| .ui.orange.inverted.progress .bar { | |||
| background-color: #FF851B; | |||
| } | |||
| /* Yellow */ | |||
| .ui.yellow.progress .bar { | |||
| background-color: #FBBD08; | |||
| } | |||
| .ui.yellow.inverted.progress .bar { | |||
| background-color: #FFE21F; | |||
| } | |||
| /* Olive */ | |||
| .ui.olive.progress .bar { | |||
| background-color: #B5CC18; | |||
| } | |||
| .ui.olive.inverted.progress .bar { | |||
| background-color: #D9E778; | |||
| } | |||
| /* Green */ | |||
| .ui.green.progress .bar { | |||
| background-color: #78CB5B; | |||
| } | |||
| .ui.green.inverted.progress .bar { | |||
| background-color: #2ECC40; | |||
| } | |||
| /* Teal */ | |||
| .ui.teal.progress .bar { | |||
| background-color: #00B5AD; | |||
| } | |||
| .ui.teal.inverted.progress .bar { | |||
| background-color: #6DFFFF; | |||
| } | |||
| /* Blue */ | |||
| .ui.blue.progress .bar { | |||
| background-color: #80A6CD; | |||
| } | |||
| .ui.blue.inverted.progress .bar { | |||
| background-color: #54C8FF; | |||
| } | |||
| /* Violet */ | |||
| .ui.violet.progress .bar { | |||
| background-color: #6435C9; | |||
| } | |||
| .ui.violet.inverted.progress .bar { | |||
| background-color: #A291FB; | |||
| } | |||
| /* Purple */ | |||
| .ui.purple.progress .bar { | |||
| background-color: #A333C8; | |||
| } | |||
| .ui.purple.inverted.progress .bar { | |||
| background-color: #DC73FF; | |||
| } | |||
| /* Pink */ | |||
| .ui.pink.progress .bar { | |||
| background-color: #E03997; | |||
| } | |||
| .ui.pink.inverted.progress .bar { | |||
| background-color: #FF8EDF; | |||
| } | |||
| /* Brown */ | |||
| .ui.brown.progress .bar { | |||
| background-color: #A5673F; | |||
| } | |||
| .ui.brown.inverted.progress .bar { | |||
| background-color: #D67C1C; | |||
| } | |||
| /* Grey */ | |||
| .ui.grey.progress .bar { | |||
| background-color: #767676; | |||
| } | |||
| .ui.grey.inverted.progress .bar { | |||
| background-color: #DCDDDE; | |||
| } | |||
| /* Black */ | |||
| .ui.black.progress .bar { | |||
| background-color: #333333; | |||
| } | |||
| .ui.black.inverted.progress .bar { | |||
| background-color: #545454; | |||
| } | |||
| /*-------------- | |||
| Sizes | |||
| ---------------*/ | |||
| .ui.tiny.progress { | |||
| font-size: 0.84615385rem; | |||
| } | |||
| .ui.tiny.progress .bar { | |||
| height: 0.5em; | |||
| } | |||
| .ui.small.progress { | |||
| font-size: 0.92307692rem; | |||
| } | |||
| .ui.small.progress .bar { | |||
| height: 1em; | |||
| } | |||
| .ui.progress { | |||
| font-size: 1rem; | |||
| } | |||
| .ui.progress .bar { | |||
| height: 1.75em; | |||
| } | |||
| .ui.large.progress { | |||
| font-size: 1.15384615rem; | |||
| } | |||
| .ui.large.progress .bar { | |||
| height: 2.5em; | |||
| } | |||
| .ui.big.progress { | |||
| font-size: 1.30769231rem; | |||
| } | |||
| .ui.big.progress .bar { | |||
| height: 3.5em; | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,795 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Progress | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| ;(function ( $, window, document, undefined ) { | |||
| "use strict"; | |||
| $.fn.progress = function(parameters) { | |||
| var | |||
| $allModules = $(this), | |||
| moduleSelector = $allModules.selector || '', | |||
| time = new Date().getTime(), | |||
| performance = [], | |||
| query = arguments[0], | |||
| methodInvoked = (typeof query == 'string'), | |||
| queryArguments = [].slice.call(arguments, 1), | |||
| returnedValue | |||
| ; | |||
| $allModules | |||
| .each(function() { | |||
| var | |||
| settings = ( $.isPlainObject(parameters) ) | |||
| ? $.extend(true, {}, $.fn.progress.settings, parameters) | |||
| : $.extend({}, $.fn.progress.settings), | |||
| className = settings.className, | |||
| metadata = settings.metadata, | |||
| namespace = settings.namespace, | |||
| selector = settings.selector, | |||
| error = settings.error, | |||
| eventNamespace = '.' + namespace, | |||
| moduleNamespace = 'module-' + namespace, | |||
| $module = $(this), | |||
| $bar = $(this).find(selector.bar), | |||
| $progress = $(this).find(selector.progress), | |||
| $label = $(this).find(selector.label), | |||
| element = this, | |||
| instance = $module.data(moduleNamespace), | |||
| animating = false, | |||
| transitionEnd, | |||
| module | |||
| ; | |||
| module = { | |||
| initialize: function() { | |||
| module.debug('Initializing progress bar', settings); | |||
| module.set.duration(); | |||
| module.set.transitionEvent(); | |||
| module.read.metadata(); | |||
| module.read.settings(); | |||
| module.instantiate(); | |||
| }, | |||
| instantiate: function() { | |||
| module.verbose('Storing instance of progress', module); | |||
| instance = module; | |||
| $module | |||
| .data(moduleNamespace, module) | |||
| ; | |||
| }, | |||
| destroy: function() { | |||
| module.verbose('Destroying previous progress for', $module); | |||
| clearInterval(instance.interval); | |||
| module.remove.state(); | |||
| $module.removeData(moduleNamespace); | |||
| instance = undefined; | |||
| }, | |||
| reset: function() { | |||
| module.set.percent(0); | |||
| module.set.value(0); | |||
| }, | |||
| complete: function() { | |||
| if(module.percent === undefined || module.percent < 100) { | |||
| module.set.percent(100); | |||
| } | |||
| }, | |||
| read: { | |||
| metadata: function() { | |||
| var | |||
| data = { | |||
| percent : $module.data(metadata.percent), | |||
| total : $module.data(metadata.total), | |||
| value : $module.data(metadata.value) | |||
| } | |||
| ; | |||
| if(data.percent) { | |||
| module.debug('Current percent value set from metadata', data.percent); | |||
| module.set.percent(data.percent); | |||
| } | |||
| if(data.total) { | |||
| module.debug('Total value set from metadata', data.total); | |||
| module.set.total(data.total); | |||
| } | |||
| if(data.value) { | |||
| module.debug('Current value set from metadata', data.value); | |||
| module.set.value(data.value); | |||
| module.set.progress(data.value); | |||
| } | |||
| }, | |||
| settings: function() { | |||
| if(settings.total !== false) { | |||
| module.debug('Current total set in settings', settings.total); | |||
| module.set.total(settings.total); | |||
| } | |||
| if(settings.value !== false) { | |||
| module.debug('Current value set in settings', settings.value); | |||
| module.set.value(settings.value); | |||
| module.set.progress(module.value); | |||
| } | |||
| if(settings.percent !== false) { | |||
| module.debug('Current percent set in settings', settings.percent); | |||
| module.set.percent(settings.percent); | |||
| } | |||
| } | |||
| }, | |||
| increment: function(incrementValue) { | |||
| var | |||
| maxValue, | |||
| startValue, | |||
| newValue | |||
| ; | |||
| if( module.has.total() ) { | |||
| startValue = module.get.value(); | |||
| incrementValue = incrementValue || 1; | |||
| newValue = startValue + incrementValue; | |||
| maxValue = module.get.total(); | |||
| module.debug('Incrementing value', startValue, newValue, maxValue); | |||
| if(newValue > maxValue ) { | |||
| module.debug('Value cannot increment above total', maxValue); | |||
| newValue = maxValue; | |||
| } | |||
| } | |||
| else { | |||
| startValue = module.get.percent(); | |||
| incrementValue = incrementValue || module.get.randomValue(); | |||
| newValue = startValue + incrementValue; | |||
| maxValue = 100; | |||
| module.debug('Incrementing percentage by', startValue, newValue); | |||
| if(newValue > maxValue ) { | |||
| module.debug('Value cannot increment above 100 percent'); | |||
| newValue = maxValue; | |||
| } | |||
| } | |||
| module.set.progress(newValue); | |||
| }, | |||
| decrement: function(decrementValue) { | |||
| var | |||
| total = module.get.total(), | |||
| startValue, | |||
| newValue | |||
| ; | |||
| if(total) { | |||
| startValue = module.get.value(); | |||
| decrementValue = decrementValue || 1; | |||
| newValue = startValue - decrementValue; | |||
| module.debug('Decrementing value by', decrementValue, startValue); | |||
| } | |||
| else { | |||
| startValue = module.get.percent(); | |||
| decrementValue = decrementValue || module.get.randomValue(); | |||
| newValue = startValue - decrementValue; | |||
| module.debug('Decrementing percentage by', decrementValue, startValue); | |||
| } | |||
| if(newValue < 0) { | |||
| module.debug('Value cannot decrement below 0'); | |||
| newValue = 0; | |||
| } | |||
| module.set.progress(newValue); | |||
| }, | |||
| has: { | |||
| total: function() { | |||
| return (module.get.total() !== false); | |||
| } | |||
| }, | |||
| get: { | |||
| text: function(templateText) { | |||
| var | |||
| value = module.value || 0, | |||
| total = module.total || 0, | |||
| percent = (animating) | |||
| ? module.get.displayPercent() | |||
| : module.percent || 0, | |||
| left = (module.total > 0) | |||
| ? (total - value) | |||
| : (100 - percent) | |||
| ; | |||
| templateText = templateText || ''; | |||
| templateText = templateText | |||
| .replace('{value}', value) | |||
| .replace('{total}', total) | |||
| .replace('{left}', left) | |||
| .replace('{percent}', percent) | |||
| ; | |||
| module.debug('Adding variables to progress bar text', templateText); | |||
| return templateText; | |||
| }, | |||
| randomValue: function() { | |||
| module.debug('Generating random increment percentage'); | |||
| return Math.floor((Math.random() * settings.random.max) + settings.random.min); | |||
| }, | |||
| numericValue: function(value) { | |||
| return (typeof value === 'string') | |||
| ? (value.replace(/[^\d.]/g, '') !== '') | |||
| ? +(value.replace(/[^\d.]/g, '')) | |||
| : false | |||
| : value | |||
| ; | |||
| }, | |||
| transitionEnd: function() { | |||
| var | |||
| element = document.createElement('element'), | |||
| transitions = { | |||
| 'transition' :'transitionend', | |||
| 'OTransition' :'oTransitionEnd', | |||
| 'MozTransition' :'transitionend', | |||
| 'WebkitTransition' :'webkitTransitionEnd' | |||
| }, | |||
| transition | |||
| ; | |||
| for(transition in transitions){ | |||
| if( element.style[transition] !== undefined ){ | |||
| return transitions[transition]; | |||
| } | |||
| } | |||
| }, | |||
| // gets current displayed percentage (if animating values this is the intermediary value) | |||
| displayPercent: function() { | |||
| var | |||
| barWidth = $bar.width(), | |||
| totalWidth = $module.width(), | |||
| minDisplay = parseInt($bar.css('min-width'), 10), | |||
| displayPercent = (barWidth > minDisplay) | |||
| ? (barWidth / totalWidth * 100) | |||
| : module.percent | |||
| ; | |||
| return (settings.precision > 0) | |||
| ? Math.round(displayPercent * (10 * settings.precision)) / (10 * settings.precision) | |||
| : Math.round(displayPercent) | |||
| ; | |||
| }, | |||
| percent: function() { | |||
| return module.percent || 0; | |||
| }, | |||
| value: function() { | |||
| return module.value || 0; | |||
| }, | |||
| total: function() { | |||
| return module.total || false; | |||
| } | |||
| }, | |||
| is: { | |||
| success: function() { | |||
| return $module.hasClass(className.success); | |||
| }, | |||
| warning: function() { | |||
| return $module.hasClass(className.warning); | |||
| }, | |||
| error: function() { | |||
| return $module.hasClass(className.error); | |||
| }, | |||
| active: function() { | |||
| return $module.hasClass(className.active); | |||
| }, | |||
| visible: function() { | |||
| return $module.is(':visible'); | |||
| } | |||
| }, | |||
| remove: { | |||
| state: function() { | |||
| module.verbose('Removing stored state'); | |||
| delete module.total; | |||
| delete module.percent; | |||
| delete module.value; | |||
| }, | |||
| active: function() { | |||
| module.verbose('Removing active state'); | |||
| $module.removeClass(className.active); | |||
| }, | |||
| success: function() { | |||
| module.verbose('Removing success state'); | |||
| $module.removeClass(className.success); | |||
| }, | |||
| warning: function() { | |||
| module.verbose('Removing warning state'); | |||
| $module.removeClass(className.warning); | |||
| }, | |||
| error: function() { | |||
| module.verbose('Removing error state'); | |||
| $module.removeClass(className.error); | |||
| } | |||
| }, | |||
| set: { | |||
| barWidth: function(value) { | |||
| if(value > 100) { | |||
| module.error(error.tooHigh, value); | |||
| } | |||
| else if (value < 0) { | |||
| module.error(error.tooLow, value); | |||
| } | |||
| else { | |||
| $bar | |||
| .css('width', value + '%') | |||
| ; | |||
| $module | |||
| .attr('data-percent', parseInt(value, 10)) | |||
| ; | |||
| } | |||
| }, | |||
| duration: function(duration) { | |||
| duration = duration || settings.duration; | |||
| duration = (typeof duration == 'number') | |||
| ? duration + 'ms' | |||
| : duration | |||
| ; | |||
| module.verbose('Setting progress bar transition duration', duration); | |||
| $bar | |||
| .css({ | |||
| 'transition-duration': duration | |||
| }) | |||
| ; | |||
| }, | |||
| percent: function(percent) { | |||
| percent = (typeof percent == 'string') | |||
| ? +(percent.replace('%', '')) | |||
| : percent | |||
| ; | |||
| // round display percentage | |||
| percent = (settings.precision > 0) | |||
| ? Math.round(percent * (10 * settings.precision)) / (10 * settings.precision) | |||
| : Math.round(percent) | |||
| ; | |||
| module.percent = percent; | |||
| if( !module.has.total() ) { | |||
| module.value = (settings.precision > 0) | |||
| ? Math.round( (percent / 100) * module.total * (10 * settings.precision)) / (10 * settings.precision) | |||
| : Math.round( (percent / 100) * module.total * 10) / 10 | |||
| ; | |||
| if(settings.limitValues) { | |||
| module.value = (module.value > 100) | |||
| ? 100 | |||
| : (module.value < 0) | |||
| ? 0 | |||
| : module.value | |||
| ; | |||
| } | |||
| } | |||
| module.set.barWidth(percent); | |||
| module.set.labelInterval(); | |||
| module.set.labels(); | |||
| settings.onChange.call(element, percent, module.value, module.total); | |||
| }, | |||
| labelInterval: function() { | |||
| var | |||
| animationCallback = function() { | |||
| module.verbose('Bar finished animating, removing continuous label updates'); | |||
| clearInterval(module.interval); | |||
| animating = false; | |||
| module.set.labels(); | |||
| } | |||
| ; | |||
| clearInterval(module.interval); | |||
| $bar.one(transitionEnd + eventNamespace, animationCallback); | |||
| module.timer = setTimeout(animationCallback, settings.duration + 100); | |||
| animating = true; | |||
| module.interval = setInterval(module.set.labels, settings.framerate); | |||
| }, | |||
| labels: function() { | |||
| module.verbose('Setting both bar progress and outer label text'); | |||
| module.set.barLabel(); | |||
| module.set.state(); | |||
| }, | |||
| label: function(text) { | |||
| text = text || ''; | |||
| if(text) { | |||
| text = module.get.text(text); | |||
| module.debug('Setting label to text', text); | |||
| $label.text(text); | |||
| } | |||
| }, | |||
| state: function(percent) { | |||
| percent = (percent !== undefined) | |||
| ? percent | |||
| : module.percent | |||
| ; | |||
| if(percent === 100) { | |||
| if(settings.autoSuccess && !(module.is.warning() || module.is.error())) { | |||
| module.set.success(); | |||
| module.debug('Automatically triggering success at 100%'); | |||
| } | |||
| else { | |||
| module.verbose('Reached 100% removing active state'); | |||
| module.remove.active(); | |||
| } | |||
| } | |||
| else if(percent > 0) { | |||
| module.verbose('Adjusting active progress bar label', percent); | |||
| module.set.active(); | |||
| } | |||
| else { | |||
| module.remove.active(); | |||
| module.set.label(settings.text.active); | |||
| } | |||
| }, | |||
| barLabel: function(text) { | |||
| if(text !== undefined) { | |||
| $progress.text( module.get.text(text) ); | |||
| } | |||
| else if(settings.label == 'ratio' && module.total) { | |||
| module.debug('Adding ratio to bar label'); | |||
| $progress.text( module.get.text(settings.text.ratio) ); | |||
| } | |||
| else if(settings.label == 'percent') { | |||
| module.debug('Adding percentage to bar label'); | |||
| $progress.text( module.get.text(settings.text.percent) ); | |||
| } | |||
| }, | |||
| active: function(text) { | |||
| text = text || settings.text.active; | |||
| module.debug('Setting active state'); | |||
| if(settings.showActivity && !module.is.active() ) { | |||
| $module.addClass(className.active); | |||
| } | |||
| module.remove.warning(); | |||
| module.remove.error(); | |||
| module.remove.success(); | |||
| if(text) { | |||
| module.set.label(text); | |||
| } | |||
| settings.onActive.call(element, module.value, module.total); | |||
| }, | |||
| success : function(text) { | |||
| text = text || settings.text.success; | |||
| module.debug('Setting success state'); | |||
| $module.addClass(className.success); | |||
| module.remove.active(); | |||
| module.remove.warning(); | |||
| module.remove.error(); | |||
| module.complete(); | |||
| if(text) { | |||
| module.set.label(text); | |||
| } | |||
| settings.onSuccess.call(element, module.total); | |||
| }, | |||
| warning : function(text) { | |||
| text = text || settings.text.warning; | |||
| module.debug('Setting warning state'); | |||
| $module.addClass(className.warning); | |||
| module.remove.active(); | |||
| module.remove.success(); | |||
| module.remove.error(); | |||
| module.complete(); | |||
| if(text) { | |||
| module.set.label(text); | |||
| } | |||
| settings.onWarning.call(element, module.value, module.total); | |||
| }, | |||
| error : function(text) { | |||
| text = text || settings.text.error; | |||
| module.debug('Setting error state'); | |||
| $module.addClass(className.error); | |||
| module.remove.active(); | |||
| module.remove.success(); | |||
| module.remove.warning(); | |||
| module.complete(); | |||
| if(text) { | |||
| module.set.label(text); | |||
| } | |||
| settings.onError.call(element, module.value, module.total); | |||
| }, | |||
| transitionEvent: function() { | |||
| transitionEnd = module.get.transitionEnd(); | |||
| }, | |||
| total: function(totalValue) { | |||
| module.total = totalValue; | |||
| }, | |||
| value: function(value) { | |||
| module.value = value; | |||
| }, | |||
| progress: function(value) { | |||
| var | |||
| numericValue = module.get.numericValue(value), | |||
| percentComplete | |||
| ; | |||
| if(numericValue === false) { | |||
| module.error(error.nonNumeric, value); | |||
| } | |||
| if( module.has.total() ) { | |||
| module.set.value(numericValue); | |||
| percentComplete = (numericValue / module.total) * 100; | |||
| module.debug('Calculating percent complete from total', percentComplete); | |||
| module.set.percent( percentComplete ); | |||
| } | |||
| else { | |||
| percentComplete = numericValue; | |||
| module.debug('Setting value to exact percentage value', percentComplete); | |||
| module.set.percent( percentComplete ); | |||
| } | |||
| } | |||
| }, | |||
| setting: function(name, value) { | |||
| module.debug('Changing setting', name, value); | |||
| if( $.isPlainObject(name) ) { | |||
| $.extend(true, settings, name); | |||
| } | |||
| else if(value !== undefined) { | |||
| settings[name] = value; | |||
| } | |||
| else { | |||
| return settings[name]; | |||
| } | |||
| }, | |||
| internal: function(name, value) { | |||
| if( $.isPlainObject(name) ) { | |||
| $.extend(true, module, name); | |||
| } | |||
| else if(value !== undefined) { | |||
| module[name] = value; | |||
| } | |||
| else { | |||
| return module[name]; | |||
| } | |||
| }, | |||
| debug: function() { | |||
| if(settings.debug) { | |||
| if(settings.performance) { | |||
| module.performance.log(arguments); | |||
| } | |||
| else { | |||
| module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':'); | |||
| module.debug.apply(console, arguments); | |||
| } | |||
| } | |||
| }, | |||
| verbose: function() { | |||
| if(settings.verbose && settings.debug) { | |||
| if(settings.performance) { | |||
| module.performance.log(arguments); | |||
| } | |||
| else { | |||
| module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':'); | |||
| module.verbose.apply(console, arguments); | |||
| } | |||
| } | |||
| }, | |||
| error: function() { | |||
| module.error = Function.prototype.bind.call(console.error, console, settings.name + ':'); | |||
| module.error.apply(console, arguments); | |||
| }, | |||
| performance: { | |||
| log: function(message) { | |||
| var | |||
| currentTime, | |||
| executionTime, | |||
| previousTime | |||
| ; | |||
| if(settings.performance) { | |||
| currentTime = new Date().getTime(); | |||
| previousTime = time || currentTime; | |||
| executionTime = currentTime - previousTime; | |||
| time = currentTime; | |||
| performance.push({ | |||
| 'Name' : message[0], | |||
| 'Arguments' : [].slice.call(message, 1) || '', | |||
| 'Element' : element, | |||
| 'Execution Time' : executionTime | |||
| }); | |||
| } | |||
| clearTimeout(module.performance.timer); | |||
| module.performance.timer = setTimeout(module.performance.display, 500); | |||
| }, | |||
| display: function() { | |||
| var | |||
| title = settings.name + ':', | |||
| totalTime = 0 | |||
| ; | |||
| time = false; | |||
| clearTimeout(module.performance.timer); | |||
| $.each(performance, function(index, data) { | |||
| totalTime += data['Execution Time']; | |||
| }); | |||
| title += ' ' + totalTime + 'ms'; | |||
| if(moduleSelector) { | |||
| title += ' \'' + moduleSelector + '\''; | |||
| } | |||
| if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) { | |||
| console.groupCollapsed(title); | |||
| if(console.table) { | |||
| console.table(performance); | |||
| } | |||
| else { | |||
| $.each(performance, function(index, data) { | |||
| console.log(data['Name'] + ': ' + data['Execution Time']+'ms'); | |||
| }); | |||
| } | |||
| console.groupEnd(); | |||
| } | |||
| performance = []; | |||
| } | |||
| }, | |||
| invoke: function(query, passedArguments, context) { | |||
| var | |||
| object = instance, | |||
| maxDepth, | |||
| found, | |||
| response | |||
| ; | |||
| passedArguments = passedArguments || queryArguments; | |||
| context = element || context; | |||
| if(typeof query == 'string' && object !== undefined) { | |||
| query = query.split(/[\. ]/); | |||
| maxDepth = query.length - 1; | |||
| $.each(query, function(depth, value) { | |||
| var camelCaseValue = (depth != maxDepth) | |||
| ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1) | |||
| : query | |||
| ; | |||
| if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) { | |||
| object = object[camelCaseValue]; | |||
| } | |||
| else if( object[camelCaseValue] !== undefined ) { | |||
| found = object[camelCaseValue]; | |||
| return false; | |||
| } | |||
| else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) { | |||
| object = object[value]; | |||
| } | |||
| else if( object[value] !== undefined ) { | |||
| found = object[value]; | |||
| return false; | |||
| } | |||
| else { | |||
| module.error(error.method, query); | |||
| return false; | |||
| } | |||
| }); | |||
| } | |||
| if ( $.isFunction( found ) ) { | |||
| response = found.apply(context, passedArguments); | |||
| } | |||
| else if(found !== undefined) { | |||
| response = found; | |||
| } | |||
| if($.isArray(returnedValue)) { | |||
| returnedValue.push(response); | |||
| } | |||
| else if(returnedValue !== undefined) { | |||
| returnedValue = [returnedValue, response]; | |||
| } | |||
| else if(response !== undefined) { | |||
| returnedValue = response; | |||
| } | |||
| return found; | |||
| } | |||
| }; | |||
| if(methodInvoked) { | |||
| if(instance === undefined) { | |||
| module.initialize(); | |||
| } | |||
| module.invoke(query); | |||
| } | |||
| else { | |||
| if(instance !== undefined) { | |||
| instance.invoke('destroy'); | |||
| } | |||
| module.initialize(); | |||
| } | |||
| }) | |||
| ; | |||
| return (returnedValue !== undefined) | |||
| ? returnedValue | |||
| : this | |||
| ; | |||
| }; | |||
| $.fn.progress.settings = { | |||
| name : 'Progress', | |||
| namespace : 'progress', | |||
| debug : false, | |||
| verbose : false, | |||
| performance : true, | |||
| random : { | |||
| min : 2, | |||
| max : 5 | |||
| }, | |||
| duration : 300, | |||
| autoSuccess : true, | |||
| showActivity : true, | |||
| limitValues : true, | |||
| label : 'percent', | |||
| precision : 0, | |||
| framerate : (1000 / 30), /// 30 fps | |||
| percent : false, | |||
| total : false, | |||
| value : false, | |||
| onChange : function(percent, value, total){}, | |||
| onSuccess : function(total){}, | |||
| onActive : function(value, total){}, | |||
| onError : function(value, total){}, | |||
| onWarning : function(value, total){}, | |||
| error : { | |||
| method : 'The method you called is not defined.', | |||
| nonNumeric : 'Progress value is non numeric', | |||
| tooHigh : 'Value specified is above 100%', | |||
| tooLow : 'Value specified is below 0%' | |||
| }, | |||
| regExp: { | |||
| variable: /\{\$*[A-z0-9]+\}/g | |||
| }, | |||
| metadata: { | |||
| percent : 'percent', | |||
| total : 'total', | |||
| value : 'value' | |||
| }, | |||
| selector : { | |||
| bar : '> .bar', | |||
| label : '> .label', | |||
| progress : '.bar > .progress' | |||
| }, | |||
| text : { | |||
| active : false, | |||
| error : false, | |||
| success : false, | |||
| warning : false, | |||
| percent : '{percent}%', | |||
| ratio : '{value} of {total}' | |||
| }, | |||
| className : { | |||
| active : 'active', | |||
| error : 'error', | |||
| success : 'success', | |||
| warning : 'warning' | |||
| } | |||
| }; | |||
| })( jQuery, window, document ); | |||
| @ -0,0 +1,126 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Rail | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Rails | |||
| *******************************/ | |||
| .ui.rail { | |||
| position: absolute; | |||
| top: 0%; | |||
| width: 300px; | |||
| height: 100%; | |||
| } | |||
| .ui.left.rail { | |||
| left: auto; | |||
| right: 100%; | |||
| padding: 0em 2rem 0em 0em; | |||
| margin: 0em 2rem 0em 0em; | |||
| } | |||
| .ui.right.rail { | |||
| left: 100%; | |||
| right: auto; | |||
| padding: 0em 0em 0em 2rem; | |||
| margin: 0em 0em 0em 2rem; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*-------------- | |||
| Internal | |||
| ---------------*/ | |||
| .ui.left.internal.rail { | |||
| left: 0%; | |||
| right: auto; | |||
| padding: 0em 0em 0em 2rem; | |||
| margin: 0em 0em 0em 2rem; | |||
| } | |||
| .ui.right.internal.rail { | |||
| left: auto; | |||
| right: 0%; | |||
| padding: 0em 2rem 0em 0em; | |||
| margin: 0em 2rem 0em 0em; | |||
| } | |||
| /*-------------- | |||
| Dividing | |||
| ---------------*/ | |||
| .ui.dividing.rail { | |||
| width: 302.5px; | |||
| } | |||
| .ui.left.dividing.rail { | |||
| padding: 0em 2.5rem 0em 0em; | |||
| margin: 0em 2.5rem 0em 0em; | |||
| border-right: 1px solid rgba(0, 0, 0, 0.13); | |||
| } | |||
| .ui.right.dividing.rail { | |||
| border-left: 1px solid rgba(0, 0, 0, 0.13); | |||
| padding: 0em 0em 0em 2.5rem; | |||
| margin: 0em 0em 0em 2.5rem; | |||
| } | |||
| /*-------------- | |||
| Distance | |||
| ---------------*/ | |||
| .ui.close.rail { | |||
| width: 301px; | |||
| } | |||
| .ui.close.left.rail { | |||
| padding: 0em 1em 0em 0em; | |||
| margin: 0em 1em 0em 0em; | |||
| } | |||
| .ui.close.right.rail { | |||
| padding: 0em 0em 0em 1em; | |||
| margin: 0em 0em 0em 1em; | |||
| } | |||
| .ui.very.close.rail { | |||
| width: 300.5px; | |||
| } | |||
| .ui.very.close.left.rail { | |||
| padding: 0em 0.5em 0em 0em; | |||
| margin: 0em 0.5em 0em 0em; | |||
| } | |||
| .ui.very.close.right.rail { | |||
| padding: 0em 0em 0em 0.5em; | |||
| margin: 0em 0em 0em 0.5em; | |||
| } | |||
| /*-------------- | |||
| Attached | |||
| ---------------*/ | |||
| .ui.attached.left.rail, | |||
| .ui.attached.right.rail { | |||
| padding: 0em; | |||
| margin: 0em; | |||
| } | |||
| /*-------------- | |||
| Sizing | |||
| ---------------*/ | |||
| .ui.rail { | |||
| font-size: 1rem; | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Rail | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */.ui.rail{position:absolute;top:0;width:300px;height:100%;font-size:1rem}.ui.left.rail{left:auto;right:100%;padding:0 2rem 0 0;margin:0 2rem 0 0}.ui.right.rail{left:100%;right:auto;padding:0 0 0 2rem;margin:0 0 0 2rem}.ui.left.internal.rail{left:0;right:auto;padding:0 0 0 2rem;margin:0 0 0 2rem}.ui.right.internal.rail{left:auto;right:0;padding:0 2rem 0 0;margin:0 2rem 0 0}.ui.dividing.rail{width:302.5px}.ui.left.dividing.rail{padding:0 2.5rem 0 0;margin:0 2.5rem 0 0;border-right:1px solid rgba(0,0,0,.13)}.ui.right.dividing.rail{border-left:1px solid rgba(0,0,0,.13);padding:0 0 0 2.5rem;margin:0 0 0 2.5rem}.ui.close.rail{width:301px}.ui.close.left.rail{padding:0 1em 0 0;margin:0 1em 0 0}.ui.close.right.rail{padding:0 0 0 1em;margin:0 0 0 1em}.ui.very.close.rail{width:300.5px}.ui.very.close.left.rail{padding:0 .5em 0 0;margin:0 .5em 0 0}.ui.very.close.right.rail{padding:0 0 0 .5em;margin:0 0 0 .5em}.ui.attached.left.rail,.ui.attached.right.rail{padding:0;margin:0} | |||
| @ -0,0 +1,194 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Rating | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Rating | |||
| *******************************/ | |||
| .ui.rating { | |||
| display: -webkit-inline-box; | |||
| display: -webkit-inline-flex; | |||
| display: -ms-inline-flexbox; | |||
| display: inline-flex; | |||
| white-space: nowrap; | |||
| vertical-align: baseline; | |||
| } | |||
| .ui.rating:last-child { | |||
| margin-right: 0em; | |||
| } | |||
| /* Icon */ | |||
| .ui.rating .icon { | |||
| padding: 0em; | |||
| margin: 0em; | |||
| text-align: center; | |||
| font-weight: normal; | |||
| font-style: normal; | |||
| -webkit-box-flex: 1; | |||
| -webkit-flex: 1 0 auto; | |||
| -ms-flex: 1 0 auto; | |||
| flex: 1 0 auto; | |||
| cursor: pointer; | |||
| width: 1.25em; | |||
| height: auto; | |||
| -webkit-transition: opacity 0.1s ease, background 0.1s ease, text-shadow 0.1s ease, color 0.1s ease; | |||
| transition: opacity 0.1s ease, background 0.1s ease, text-shadow 0.1s ease, color 0.1s ease; | |||
| } | |||
| /******************************* | |||
| Types | |||
| *******************************/ | |||
| /*------------------- | |||
| Standard | |||
| --------------------*/ | |||
| /* Inactive Icon */ | |||
| .ui.rating .icon { | |||
| background: transparent; | |||
| color: rgba(0, 0, 0, 0.15); | |||
| } | |||
| /* Active Icon */ | |||
| .ui.rating .active.icon { | |||
| background: transparent; | |||
| color: rgba(0, 0, 0, 0.85); | |||
| } | |||
| /* Selected Icon */ | |||
| .ui.rating .icon.selected, | |||
| .ui.rating .icon.selected.active { | |||
| background: transparent; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /*------------------- | |||
| Star | |||
| --------------------*/ | |||
| /* Inactive */ | |||
| .ui.star.rating .icon { | |||
| width: 1.25em; | |||
| height: auto; | |||
| background: transparent; | |||
| color: rgba(0, 0, 0, 0.15); | |||
| text-shadow: none; | |||
| } | |||
| /* Active Star */ | |||
| .ui.star.rating .active.icon { | |||
| background: transparent !important; | |||
| color: #FFE623 !important; | |||
| text-shadow: 0px -1px 0px #DDC507, -1px 0px 0px #DDC507, 0px 1px 0px #DDC507, 1px 0px 0px #DDC507 !important; | |||
| } | |||
| /* Selected Star */ | |||
| .ui.star.rating .icon.selected, | |||
| .ui.star.rating .icon.selected.active { | |||
| background: transparent !important; | |||
| color: #FFCC00 !important; | |||
| text-shadow: 0px -1px 0px #E6A200, -1px 0px 0px #E6A200, 0px 1px 0px #E6A200, 1px 0px 0px #E6A200 !important; | |||
| } | |||
| /*------------------- | |||
| Heart | |||
| --------------------*/ | |||
| .ui.heart.rating .icon { | |||
| width: 1.4em; | |||
| height: auto; | |||
| background: transparent; | |||
| color: rgba(0, 0, 0, 0.15); | |||
| text-shadow: none !important; | |||
| } | |||
| /* Active Heart */ | |||
| .ui.heart.rating .active.icon { | |||
| background: transparent !important; | |||
| color: #FF6D75 !important; | |||
| text-shadow: 0px -1px 0px #CD0707, -1px 0px 0px #CD0707, 0px 1px 0px #CD0707, 1px 0px 0px #CD0707 !important; | |||
| } | |||
| /* Selected Heart */ | |||
| .ui.heart.rating .icon.selected, | |||
| .ui.heart.rating .icon.selected.active { | |||
| background: transparent !important; | |||
| color: #FF3000 !important; | |||
| text-shadow: 0px -1px 0px #AA0101, -1px 0px 0px #AA0101, 0px 1px 0px #AA0101, 1px 0px 0px #AA0101 !important; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| /*------------------- | |||
| Disabled | |||
| --------------------*/ | |||
| /* disabled rating */ | |||
| .ui.disabled.rating .icon { | |||
| cursor: default; | |||
| } | |||
| /*------------------- | |||
| User Interactive | |||
| --------------------*/ | |||
| /* Selected Rating */ | |||
| .ui.rating.selected .active.icon { | |||
| opacity: 1; | |||
| } | |||
| .ui.rating.selected .icon.selected, | |||
| .ui.rating .icon.selected { | |||
| opacity: 1; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| .ui.mini.rating { | |||
| font-size: 0.69230769rem; | |||
| } | |||
| .ui.tiny.rating { | |||
| font-size: 0.84615385rem; | |||
| } | |||
| .ui.small.rating { | |||
| font-size: 0.92307692rem; | |||
| } | |||
| .ui.rating { | |||
| font-size: 1rem; | |||
| } | |||
| .ui.large.rating { | |||
| font-size: 1.15384615rem; | |||
| } | |||
| .ui.huge.rating { | |||
| font-size: 1.46153846rem; | |||
| } | |||
| .ui.massive.rating { | |||
| font-size: 2rem; | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,475 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Rating | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| ;(function ($, window, document, undefined) { | |||
| "use strict"; | |||
| $.fn.rating = function(parameters) { | |||
| var | |||
| $allModules = $(this), | |||
| moduleSelector = $allModules.selector || '', | |||
| time = new Date().getTime(), | |||
| performance = [], | |||
| query = arguments[0], | |||
| methodInvoked = (typeof query == 'string'), | |||
| queryArguments = [].slice.call(arguments, 1), | |||
| returnedValue | |||
| ; | |||
| $allModules | |||
| .each(function() { | |||
| var | |||
| settings = ( $.isPlainObject(parameters) ) | |||
| ? $.extend(true, {}, $.fn.rating.settings, parameters) | |||
| : $.extend({}, $.fn.rating.settings), | |||
| namespace = settings.namespace, | |||
| className = settings.className, | |||
| metadata = settings.metadata, | |||
| selector = settings.selector, | |||
| error = settings.error, | |||
| eventNamespace = '.' + namespace, | |||
| moduleNamespace = 'module-' + namespace, | |||
| element = this, | |||
| instance = $(this).data(moduleNamespace), | |||
| $module = $(this), | |||
| $icon = $module.find(selector.icon), | |||
| module | |||
| ; | |||
| module = { | |||
| initialize: function() { | |||
| module.verbose('Initializing rating module', settings); | |||
| if($icon.length === 0) { | |||
| module.setup.layout(); | |||
| } | |||
| if(settings.interactive) { | |||
| module.enable(); | |||
| } | |||
| else { | |||
| module.disable(); | |||
| } | |||
| module.set.rating( module.get.initialRating() ); | |||
| module.instantiate(); | |||
| }, | |||
| instantiate: function() { | |||
| module.verbose('Instantiating module', settings); | |||
| instance = module; | |||
| $module | |||
| .data(moduleNamespace, module) | |||
| ; | |||
| }, | |||
| destroy: function() { | |||
| module.verbose('Destroying previous instance', instance); | |||
| module.remove.events(); | |||
| $module | |||
| .removeData(moduleNamespace) | |||
| ; | |||
| }, | |||
| refresh: function() { | |||
| $icon = $module.find(selector.icon); | |||
| }, | |||
| setup: { | |||
| layout: function() { | |||
| var | |||
| maxRating = module.get.maxRating(), | |||
| html = $.fn.rating.settings.templates.icon(maxRating) | |||
| ; | |||
| module.debug('Generating icon html dynamically'); | |||
| $module | |||
| .html(html) | |||
| ; | |||
| module.refresh(); | |||
| } | |||
| }, | |||
| event: { | |||
| mouseenter: function() { | |||
| var | |||
| $activeIcon = $(this) | |||
| ; | |||
| $activeIcon | |||
| .nextAll() | |||
| .removeClass(className.selected) | |||
| ; | |||
| $module | |||
| .addClass(className.selected) | |||
| ; | |||
| $activeIcon | |||
| .addClass(className.selected) | |||
| .prevAll() | |||
| .addClass(className.selected) | |||
| ; | |||
| }, | |||
| mouseleave: function() { | |||
| $module | |||
| .removeClass(className.selected) | |||
| ; | |||
| $icon | |||
| .removeClass(className.selected) | |||
| ; | |||
| }, | |||
| click: function() { | |||
| var | |||
| $activeIcon = $(this), | |||
| currentRating = module.get.rating(), | |||
| rating = $icon.index($activeIcon) + 1, | |||
| canClear = (settings.clearable == 'auto') | |||
| ? ($icon.length === 1) | |||
| : settings.clearable | |||
| ; | |||
| if(canClear && currentRating == rating) { | |||
| module.clearRating(); | |||
| } | |||
| else { | |||
| module.set.rating( rating ); | |||
| } | |||
| } | |||
| }, | |||
| clearRating: function() { | |||
| module.debug('Clearing current rating'); | |||
| module.set.rating(0); | |||
| }, | |||
| bind: { | |||
| events: function() { | |||
| module.verbose('Binding events'); | |||
| $module | |||
| .on('mouseenter' + eventNamespace, selector.icon, module.event.mouseenter) | |||
| .on('mouseleave' + eventNamespace, selector.icon, module.event.mouseleave) | |||
| .on('click' + eventNamespace, selector.icon, module.event.click) | |||
| ; | |||
| } | |||
| }, | |||
| remove: { | |||
| events: function() { | |||
| module.verbose('Removing events'); | |||
| $module | |||
| .off(eventNamespace) | |||
| ; | |||
| } | |||
| }, | |||
| enable: function() { | |||
| module.debug('Setting rating to interactive mode'); | |||
| module.bind.events(); | |||
| $module | |||
| .removeClass(className.disabled) | |||
| ; | |||
| }, | |||
| disable: function() { | |||
| module.debug('Setting rating to read-only mode'); | |||
| module.remove.events(); | |||
| $module | |||
| .addClass(className.disabled) | |||
| ; | |||
| }, | |||
| get: { | |||
| initialRating: function() { | |||
| if($module.data(metadata.rating) !== undefined) { | |||
| $module.removeData(metadata.rating); | |||
| return $module.data(metadata.rating); | |||
| } | |||
| return settings.initialRating; | |||
| }, | |||
| maxRating: function() { | |||
| if($module.data(metadata.maxRating) !== undefined) { | |||
| $module.removeData(metadata.maxRating); | |||
| return $module.data(metadata.maxRating); | |||
| } | |||
| return settings.maxRating; | |||
| }, | |||
| rating: function() { | |||
| var | |||
| currentRating = $icon.filter('.' + className.active).length | |||
| ; | |||
| module.verbose('Current rating retrieved', currentRating); | |||
| return currentRating; | |||
| } | |||
| }, | |||
| set: { | |||
| rating: function(rating) { | |||
| var | |||
| ratingIndex = (rating - 1 >= 0) | |||
| ? (rating - 1) | |||
| : 0, | |||
| $activeIcon = $icon.eq(ratingIndex) | |||
| ; | |||
| $module | |||
| .removeClass(className.selected) | |||
| ; | |||
| $icon | |||
| .removeClass(className.selected) | |||
| .removeClass(className.active) | |||
| ; | |||
| if(rating > 0) { | |||
| module.verbose('Setting current rating to', rating); | |||
| $activeIcon | |||
| .prevAll() | |||
| .andSelf() | |||
| .addClass(className.active) | |||
| ; | |||
| } | |||
| settings.onRate.call(element, rating); | |||
| } | |||
| }, | |||
| setting: function(name, value) { | |||
| module.debug('Changing setting', name, value); | |||
| if( $.isPlainObject(name) ) { | |||
| $.extend(true, settings, name); | |||
| } | |||
| else if(value !== undefined) { | |||
| settings[name] = value; | |||
| } | |||
| else { | |||
| return settings[name]; | |||
| } | |||
| }, | |||
| internal: function(name, value) { | |||
| if( $.isPlainObject(name) ) { | |||
| $.extend(true, module, name); | |||
| } | |||
| else if(value !== undefined) { | |||
| module[name] = value; | |||
| } | |||
| else { | |||
| return module[name]; | |||
| } | |||
| }, | |||
| debug: function() { | |||
| if(settings.debug) { | |||
| if(settings.performance) { | |||
| module.performance.log(arguments); | |||
| } | |||
| else { | |||
| module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':'); | |||
| module.debug.apply(console, arguments); | |||
| } | |||
| } | |||
| }, | |||
| verbose: function() { | |||
| if(settings.verbose && settings.debug) { | |||
| if(settings.performance) { | |||
| module.performance.log(arguments); | |||
| } | |||
| else { | |||
| module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':'); | |||
| module.verbose.apply(console, arguments); | |||
| } | |||
| } | |||
| }, | |||
| error: function() { | |||
| module.error = Function.prototype.bind.call(console.error, console, settings.name + ':'); | |||
| module.error.apply(console, arguments); | |||
| }, | |||
| performance: { | |||
| log: function(message) { | |||
| var | |||
| currentTime, | |||
| executionTime, | |||
| previousTime | |||
| ; | |||
| if(settings.performance) { | |||
| currentTime = new Date().getTime(); | |||
| previousTime = time || currentTime; | |||
| executionTime = currentTime - previousTime; | |||
| time = currentTime; | |||
| performance.push({ | |||
| 'Name' : message[0], | |||
| 'Arguments' : [].slice.call(message, 1) || '', | |||
| 'Element' : element, | |||
| 'Execution Time' : executionTime | |||
| }); | |||
| } | |||
| clearTimeout(module.performance.timer); | |||
| module.performance.timer = setTimeout(module.performance.display, 500); | |||
| }, | |||
| display: function() { | |||
| var | |||
| title = settings.name + ':', | |||
| totalTime = 0 | |||
| ; | |||
| time = false; | |||
| clearTimeout(module.performance.timer); | |||
| $.each(performance, function(index, data) { | |||
| totalTime += data['Execution Time']; | |||
| }); | |||
| title += ' ' + totalTime + 'ms'; | |||
| if(moduleSelector) { | |||
| title += ' \'' + moduleSelector + '\''; | |||
| } | |||
| if($allModules.length > 1) { | |||
| title += ' ' + '(' + $allModules.length + ')'; | |||
| } | |||
| if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) { | |||
| console.groupCollapsed(title); | |||
| if(console.table) { | |||
| console.table(performance); | |||
| } | |||
| else { | |||
| $.each(performance, function(index, data) { | |||
| console.log(data['Name'] + ': ' + data['Execution Time']+'ms'); | |||
| }); | |||
| } | |||
| console.groupEnd(); | |||
| } | |||
| performance = []; | |||
| } | |||
| }, | |||
| invoke: function(query, passedArguments, context) { | |||
| var | |||
| object = instance, | |||
| maxDepth, | |||
| found, | |||
| response | |||
| ; | |||
| passedArguments = passedArguments || queryArguments; | |||
| context = element || context; | |||
| if(typeof query == 'string' && object !== undefined) { | |||
| query = query.split(/[\. ]/); | |||
| maxDepth = query.length - 1; | |||
| $.each(query, function(depth, value) { | |||
| var camelCaseValue = (depth != maxDepth) | |||
| ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1) | |||
| : query | |||
| ; | |||
| if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) { | |||
| object = object[camelCaseValue]; | |||
| } | |||
| else if( object[camelCaseValue] !== undefined ) { | |||
| found = object[camelCaseValue]; | |||
| return false; | |||
| } | |||
| else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) { | |||
| object = object[value]; | |||
| } | |||
| else if( object[value] !== undefined ) { | |||
| found = object[value]; | |||
| return false; | |||
| } | |||
| else { | |||
| return false; | |||
| } | |||
| }); | |||
| } | |||
| if ( $.isFunction( found ) ) { | |||
| response = found.apply(context, passedArguments); | |||
| } | |||
| else if(found !== undefined) { | |||
| response = found; | |||
| } | |||
| if($.isArray(returnedValue)) { | |||
| returnedValue.push(response); | |||
| } | |||
| else if(returnedValue !== undefined) { | |||
| returnedValue = [returnedValue, response]; | |||
| } | |||
| else if(response !== undefined) { | |||
| returnedValue = response; | |||
| } | |||
| return found; | |||
| } | |||
| }; | |||
| if(methodInvoked) { | |||
| if(instance === undefined) { | |||
| module.initialize(); | |||
| } | |||
| module.invoke(query); | |||
| } | |||
| else { | |||
| if(instance !== undefined) { | |||
| instance.invoke('destroy'); | |||
| } | |||
| module.initialize(); | |||
| } | |||
| }) | |||
| ; | |||
| return (returnedValue !== undefined) | |||
| ? returnedValue | |||
| : this | |||
| ; | |||
| }; | |||
| $.fn.rating.settings = { | |||
| name : 'Rating', | |||
| namespace : 'rating', | |||
| debug : false, | |||
| verbose : false, | |||
| performance : true, | |||
| initialRating : 0, | |||
| interactive : true, | |||
| maxRating : 4, | |||
| clearable : 'auto', | |||
| onRate : function(rating){}, | |||
| error : { | |||
| method : 'The method you called is not defined', | |||
| noMaximum : 'No maximum rating specified. Cannot generate HTML automatically' | |||
| }, | |||
| metadata: { | |||
| rating : 'rating', | |||
| maxRating : 'maxRating' | |||
| }, | |||
| className : { | |||
| active : 'active', | |||
| disabled : 'disabled', | |||
| selected : 'selected', | |||
| loading : 'loading' | |||
| }, | |||
| selector : { | |||
| icon : '.icon' | |||
| }, | |||
| templates: { | |||
| icon: function(maxRating) { | |||
| var | |||
| icon = 1, | |||
| html = '' | |||
| ; | |||
| while(icon <= maxRating) { | |||
| html += '<i class="icon"></i>'; | |||
| icon++; | |||
| } | |||
| return html; | |||
| } | |||
| } | |||
| }; | |||
| })( jQuery, window, document ); | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Rating | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */.ui.rating:last-child{margin-right:0}.ui.rating .icon{padding:0;margin:0;text-align:center;font-weight:400;font-style:normal;-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;cursor:pointer;width:1.25em;height:auto;-webkit-transition:opacity .1s ease,background .1s ease,text-shadow .1s ease,color .1s ease;transition:opacity .1s ease,background .1s ease,text-shadow .1s ease,color .1s ease;background:0 0;color:rgba(0,0,0,.15)}.ui.rating .active.icon{background:0 0;color:rgba(0,0,0,.85)}.ui.rating .icon.selected,.ui.rating .icon.selected.active{background:0 0;color:rgba(0,0,0,.87)}.ui.star.rating .icon{width:1.25em;height:auto;background:0 0;color:rgba(0,0,0,.15);text-shadow:none}.ui.star.rating .active.icon{background:0 0!important;color:#FFE623!important;text-shadow:0 -1px 0 #DDC507,-1px 0 0 #DDC507,0 1px 0 #DDC507,1px 0 0 #DDC507!important}.ui.star.rating .icon.selected,.ui.star.rating .icon.selected.active{background:0 0!important;color:#FC0!important;text-shadow:0 -1px 0 #E6A200,-1px 0 0 #E6A200,0 1px 0 #E6A200,1px 0 0 #E6A200!important}.ui.heart.rating .icon{width:1.4em;height:auto;background:0 0;color:rgba(0,0,0,.15);text-shadow:none!important}.ui.heart.rating .active.icon{background:0 0!important;color:#FF6D75!important;text-shadow:0 -1px 0 #CD0707,-1px 0 0 #CD0707,0 1px 0 #CD0707,1px 0 0 #CD0707!important}.ui.heart.rating .icon.selected,.ui.heart.rating .icon.selected.active{background:0 0!important;color:#FF3000!important;text-shadow:0 -1px 0 #AA0101,-1px 0 0 #AA0101,0 1px 0 #AA0101,1px 0 0 #AA0101!important}.ui.disabled.rating .icon{cursor:default}.ui.rating .icon.selected,.ui.rating.selected .active.icon,.ui.rating.selected .icon.selected{opacity:1}.ui.mini.rating{font-size:.69230769rem}.ui.tiny.rating{font-size:.84615385rem}.ui.small.rating{font-size:.92307692rem}.ui.rating{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;white-space:nowrap;vertical-align:baseline;font-size:1rem}.ui.large.rating{font-size:1.15384615rem}.ui.huge.rating{font-size:1.46153846rem}.ui.massive.rating{font-size:2rem} | |||
| @ -0,0 +1,43 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Reset | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Reset | |||
| *******************************/ | |||
| /* Border-Box */ | |||
| *, | |||
| *:before, | |||
| *:after { | |||
| box-sizing: inherit; | |||
| } | |||
| html { | |||
| box-sizing: border-box; | |||
| } | |||
| /* iPad Input Shadows */ | |||
| input[type="text"], | |||
| input[type="email"], | |||
| input[type="search"], | |||
| input[type="password"] { | |||
| -webkit-appearance: none; | |||
| -moz-appearance: none; | |||
| /* mobile firefox too! */ | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,10 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Reset | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */*,:after,:before{box-sizing:inherit}html{box-sizing:border-box}input[type=text],input[type=email],input[type=search],input[type=password]{-webkit-appearance:none;-moz-appearance:none} | |||
| @ -0,0 +1,275 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Reveal | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Reveal | |||
| *******************************/ | |||
| .ui.reveal { | |||
| display: inherit; | |||
| position: relative !important; | |||
| font-size: 0em !important; | |||
| } | |||
| .ui.reveal > .visible.content { | |||
| position: absolute !important; | |||
| top: 0em !important; | |||
| left: 0em !important; | |||
| z-index: 3 !important; | |||
| -webkit-transition: all 0.5s ease 0.1s; | |||
| transition: all 0.5s ease 0.1s; | |||
| } | |||
| .ui.reveal > .hidden.content { | |||
| position: relative !important; | |||
| z-index: 2 !important; | |||
| } | |||
| /* Make sure hovered element is on top of other reveal */ | |||
| .ui.active.reveal .visible.content, | |||
| .ui.reveal:hover .visible.content { | |||
| z-index: 4 !important; | |||
| } | |||
| /******************************* | |||
| Types | |||
| *******************************/ | |||
| /*-------------- | |||
| Slide | |||
| ---------------*/ | |||
| .ui.slide.reveal { | |||
| position: relative !important; | |||
| overflow: hidden !important; | |||
| white-space: nowrap; | |||
| } | |||
| .ui.slide.reveal > .content { | |||
| display: block; | |||
| width: 100%; | |||
| float: left; | |||
| margin: 0em; | |||
| -webkit-transition: -webkit-transform 0.5s ease 0.1s; | |||
| transition: transform 0.5s ease 0.1s; | |||
| } | |||
| .ui.slide.reveal > .visible.content { | |||
| position: relative !important; | |||
| } | |||
| .ui.slide.reveal > .hidden.content { | |||
| position: absolute !important; | |||
| left: 0% !important; | |||
| width: 100% !important; | |||
| -webkit-transform: translateX(100%) !important; | |||
| transform: translateX(100%) !important; | |||
| } | |||
| .ui.slide.active.reveal > .visible.content, | |||
| .ui.slide.reveal:hover > .visible.content { | |||
| -webkit-transform: translateX(-100%) !important; | |||
| transform: translateX(-100%) !important; | |||
| } | |||
| .ui.slide.active.reveal > .hidden.content, | |||
| .ui.slide.reveal:hover > .hidden.content { | |||
| -webkit-transform: translateX(0%) !important; | |||
| transform: translateX(0%) !important; | |||
| } | |||
| .ui.slide.right.reveal > .visible.content { | |||
| -webkit-transform: translateX(0%) !important; | |||
| transform: translateX(0%) !important; | |||
| } | |||
| .ui.slide.right.reveal > .hidden.content { | |||
| -webkit-transform: translateX(-100%) !important; | |||
| transform: translateX(-100%) !important; | |||
| } | |||
| .ui.slide.right.active.reveal > .visible.content, | |||
| .ui.slide.right.reveal:hover > .visible.content { | |||
| -webkit-transform: translateX(100%) !important; | |||
| transform: translateX(100%) !important; | |||
| } | |||
| .ui.slide.right.active.reveal > .hidden.content, | |||
| .ui.slide.right.reveal:hover > .hidden.content { | |||
| -webkit-transform: translateX(0%) !important; | |||
| transform: translateX(0%) !important; | |||
| } | |||
| .ui.slide.up.reveal > .hidden.content { | |||
| -webkit-transform: translateY(100%) !important; | |||
| transform: translateY(100%) !important; | |||
| } | |||
| .ui.slide.up.active.reveal > .visible.content, | |||
| .ui.slide.up.reveal:hover > .visible.content { | |||
| -webkit-transform: translateY(-100%) !important; | |||
| transform: translateY(-100%) !important; | |||
| } | |||
| .ui.slide.up.active.reveal > .hidden.content, | |||
| .ui.slide.up.reveal:hover > .hidden.content { | |||
| -webkit-transform: translateY(0%) !important; | |||
| transform: translateY(0%) !important; | |||
| } | |||
| .ui.slide.down.reveal > .hidden.content { | |||
| -webkit-transform: translateY(-100%) !important; | |||
| transform: translateY(-100%) !important; | |||
| } | |||
| .ui.slide.down.active.reveal > .visible.content, | |||
| .ui.slide.down.reveal:hover > .visible.content { | |||
| -webkit-transform: translateY(100%) !important; | |||
| transform: translateY(100%) !important; | |||
| } | |||
| .ui.slide.down.active.reveal > .hidden.content, | |||
| .ui.slide.down.reveal:hover > .hidden.content { | |||
| -webkit-transform: translateY(0%) !important; | |||
| transform: translateY(0%) !important; | |||
| } | |||
| /*-------------- | |||
| Fade | |||
| ---------------*/ | |||
| .ui.fade.reveal > .visible.content { | |||
| opacity: 1; | |||
| } | |||
| .ui.fade.active.reveal > .visible.content, | |||
| .ui.fade.reveal:hover > .visible.content { | |||
| opacity: 0; | |||
| } | |||
| /*-------------- | |||
| Move | |||
| ---------------*/ | |||
| .ui.move.reveal { | |||
| position: relative !important; | |||
| overflow: hidden !important; | |||
| white-space: nowrap; | |||
| } | |||
| .ui.move.reveal > .content { | |||
| display: block; | |||
| float: left; | |||
| margin: 0em; | |||
| -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s; | |||
| transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s; | |||
| } | |||
| .ui.move.reveal > .visible.content { | |||
| position: relative !important; | |||
| } | |||
| .ui.move.reveal > .hidden.content { | |||
| position: absolute !important; | |||
| left: 0% !important; | |||
| width: 100% !important; | |||
| } | |||
| .ui.move.active.reveal > .visible.content, | |||
| .ui.move.reveal:hover > .visible.content { | |||
| -webkit-transform: translateX(-100%) !important; | |||
| transform: translateX(-100%) !important; | |||
| } | |||
| .ui.move.right.active.reveal > .visible.content, | |||
| .ui.move.right.reveal:hover > .visible.content { | |||
| -webkit-transform: translateX(100%) !important; | |||
| transform: translateX(100%) !important; | |||
| } | |||
| .ui.move.up.active.reveal > .visible.content, | |||
| .ui.move.up.reveal:hover > .visible.content { | |||
| -webkit-transform: translateY(-100%) !important; | |||
| transform: translateY(-100%) !important; | |||
| } | |||
| .ui.move.down.active.reveal > .visible.content, | |||
| .ui.move.down.reveal:hover > .visible.content { | |||
| -webkit-transform: translateY(100%) !important; | |||
| transform: translateY(100%) !important; | |||
| } | |||
| /*-------------- | |||
| Rotate | |||
| ---------------*/ | |||
| .ui.rotate.reveal > .visible.content { | |||
| -webkit-transition-duration: 0.5s; | |||
| transition-duration: 0.5s; | |||
| -webkit-transform: rotate(0deg); | |||
| transform: rotate(0deg); | |||
| } | |||
| .ui.rotate.reveal > .visible.content, | |||
| .ui.rotate.right.reveal > .visible.content { | |||
| -webkit-transform-origin: bottom right; | |||
| transform-origin: bottom right; | |||
| } | |||
| .ui.rotate.active.reveal > .visible.conten, | |||
| .ui.rotate.reveal:hover > .visible.content, | |||
| .ui.rotate.right.active.reveal > .visible.content, | |||
| .ui.rotate.right.reveal:hover > .visible.content { | |||
| -webkit-transform: rotate(110deg); | |||
| transform: rotate(110deg); | |||
| } | |||
| .ui.rotate.left.reveal > .visible.content { | |||
| -webkit-transform-origin: bottom left; | |||
| transform-origin: bottom left; | |||
| } | |||
| .ui.rotate.left.active.reveal > .visible.content, | |||
| .ui.rotate.left.reveal:hover > .visible.content { | |||
| -webkit-transform: rotate(-110deg); | |||
| transform: rotate(-110deg); | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| .ui.disabled.reveal:hover > .visible.visible.content { | |||
| position: static !important; | |||
| display: block !important; | |||
| opacity: 1 !important; | |||
| top: 0 !important; | |||
| left: 0 !important; | |||
| right: auto !important; | |||
| bottom: auto !important; | |||
| -webkit-transform: none !important; | |||
| transform: none !important; | |||
| } | |||
| .ui.disabled.reveal:hover > .hidden.hidden.content { | |||
| display: none !important; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*-------------- | |||
| Visible | |||
| ---------------*/ | |||
| .ui.visible.reveal { | |||
| overflow: visible; | |||
| } | |||
| /*-------------- | |||
| Instant | |||
| ---------------*/ | |||
| .ui.instant.reveal > .content { | |||
| -webkit-transition-delay: 0s !important; | |||
| transition-delay: 0s !important; | |||
| } | |||
| /*-------------- | |||
| Sizing | |||
| ---------------*/ | |||
| .ui.reveal > .content { | |||
| font-size: 1rem !important; | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,369 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Search | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Search | |||
| *******************************/ | |||
| .ui.search { | |||
| position: relative; | |||
| } | |||
| .ui.search > .prompt { | |||
| margin: 0em; | |||
| outline: none; | |||
| -webkit-appearance: none; | |||
| -webkit-tap-highlight-color: rgba(255, 255, 255, 0); | |||
| text-shadow: none; | |||
| font-style: normal; | |||
| font-weight: normal; | |||
| line-height: 1.2142em; | |||
| padding: 0.73905385em 1.07692308em; | |||
| font-size: 1em; | |||
| background: #FFFFFF; | |||
| border: 1px solid rgba(0, 0, 0, 0.13); | |||
| color: rgba(0, 0, 0, 0.87); | |||
| box-shadow: 0em 0em 0em 0em transparent inset; | |||
| -webkit-transition: background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease; | |||
| transition: background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease; | |||
| } | |||
| .ui.search .prompt { | |||
| border-radius: 500rem; | |||
| } | |||
| /*-------------- | |||
| Icon | |||
| ---------------*/ | |||
| .ui.search .prompt ~ .search.icon { | |||
| cursor: pointer; | |||
| } | |||
| /*-------------- | |||
| Results | |||
| ---------------*/ | |||
| .ui.search > .results { | |||
| display: none; | |||
| position: absolute; | |||
| top: 100%; | |||
| left: 0%; | |||
| -webkit-transform-origin: center top; | |||
| transform-origin: center top; | |||
| background: #FFFFFF; | |||
| margin-top: 0.5em; | |||
| width: 18em; | |||
| border-radius: 0.2307em; | |||
| box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.08); | |||
| border: 1px solid #DDDDDD; | |||
| z-index: 998; | |||
| } | |||
| .ui.search > .results > :first-child { | |||
| border-radius: 0.2307em 0.2307em 0em 0em; | |||
| } | |||
| .ui.search > .results > :last-child { | |||
| border-radius: 0em 0em 0.2307em 0.2307em; | |||
| } | |||
| /*-------------- | |||
| Result | |||
| ---------------*/ | |||
| .ui.search > .results .result { | |||
| cursor: pointer; | |||
| display: block; | |||
| overflow: hidden; | |||
| font-size: 1em; | |||
| padding: 0.84615385em 1.15384615em; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| line-height: 1.33; | |||
| border-bottom: 1px solid rgba(0, 0, 0, 0.06); | |||
| } | |||
| .ui.search > .results .result:last-child { | |||
| border-bottom: none !important; | |||
| } | |||
| /* Image */ | |||
| .ui.search > .results .result .image { | |||
| float: right; | |||
| overflow: hidden; | |||
| background: none; | |||
| width: 5em; | |||
| height: 3em; | |||
| border-radius: 0.25em; | |||
| } | |||
| .ui.search > .results .result .image img { | |||
| display: block; | |||
| width: auto; | |||
| height: 100%; | |||
| } | |||
| /*-------------- | |||
| Info | |||
| ---------------*/ | |||
| .ui.search > .results .result .image + .content { | |||
| margin: 0em 6em 0em 0em; | |||
| } | |||
| .ui.search > .results .result .title { | |||
| margin: -0.14285em 0em 0em; | |||
| font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif; | |||
| font-weight: bold; | |||
| font-size: 1em; | |||
| color: rgba(0, 0, 0, 0.85); | |||
| } | |||
| .ui.search > .results .result .description { | |||
| margin-top: 0; | |||
| font-size: 0.92307692em; | |||
| color: rgba(0, 0, 0, 0.4); | |||
| } | |||
| .ui.search > .results .result .price { | |||
| float: right; | |||
| color: #78CB5B; | |||
| } | |||
| /*-------------- | |||
| Message | |||
| ---------------*/ | |||
| .ui.search > .results > .message { | |||
| padding: 1em 1em; | |||
| } | |||
| .ui.search > .results > .message .header { | |||
| font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif; | |||
| font-size: 1rem; | |||
| font-weight: bold; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.search > .results > .message .description { | |||
| margin-top: 0.25rem; | |||
| font-size: 1em; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /* View All Results */ | |||
| .ui.search > .results > .action { | |||
| display: block; | |||
| border-top: none; | |||
| background: #F3F4F5; | |||
| padding: 0.92307692em 1em; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| font-weight: bold; | |||
| text-align: center; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| /*-------------------- | |||
| Focus | |||
| ---------------------*/ | |||
| .ui.search > .prompt:focus { | |||
| border-color: #51A7E8; | |||
| background: #FFFFFF; | |||
| color: rgba(0, 0, 0, 0.95); | |||
| } | |||
| /*-------------------- | |||
| Loading | |||
| ---------------------*/ | |||
| .ui.loading.search .input > i.icon:before { | |||
| position: absolute; | |||
| content: ''; | |||
| top: 50%; | |||
| left: 50%; | |||
| margin: -0.65384615em 0em 0em -0.65384615em; | |||
| width: 1.30769231em; | |||
| height: 1.30769231em; | |||
| border-radius: 500rem; | |||
| border: 0.2em solid rgba(0, 0, 0, 0.1); | |||
| } | |||
| .ui.loading.search .input > i.icon:after { | |||
| position: absolute; | |||
| content: ''; | |||
| top: 50%; | |||
| left: 50%; | |||
| margin: -0.65384615em 0em 0em -0.65384615em; | |||
| width: 1.30769231em; | |||
| height: 1.30769231em; | |||
| -webkit-animation: button-spin 0.6s linear; | |||
| animation: button-spin 0.6s linear; | |||
| -webkit-animation-iteration-count: infinite; | |||
| animation-iteration-count: infinite; | |||
| border-radius: 500rem; | |||
| border-color: #767676 transparent transparent; | |||
| border-style: solid; | |||
| border-width: 0.2em; | |||
| box-shadow: 0px 0px 0px 1px transparent; | |||
| } | |||
| /*-------------- | |||
| Hover | |||
| ---------------*/ | |||
| .ui.search > .results .result:hover, | |||
| .ui.category.search > .results .category .result:hover { | |||
| background: #F9FAFB; | |||
| } | |||
| .ui.search .action:hover { | |||
| background: #E0E0E0; | |||
| } | |||
| /*-------------- | |||
| Active | |||
| ---------------*/ | |||
| .ui.category.search > .results .category.active { | |||
| background: #F3F4F5; | |||
| } | |||
| .ui.category.search > .results .category.active > .name { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.search > .results .result.active, | |||
| .ui.category.search > .results .category .result.active { | |||
| position: relative; | |||
| border-left-color: rgba(0, 0, 0, 0.06); | |||
| background: #F3F4F5; | |||
| box-shadow: none; | |||
| } | |||
| .ui.search > .results .result.active .title { | |||
| color: rgba(0, 0, 0, 0.85); | |||
| } | |||
| .ui.search > .results .result.active .description { | |||
| color: rgba(0, 0, 0, 0.85); | |||
| } | |||
| /******************************* | |||
| Types | |||
| *******************************/ | |||
| /*-------------- | |||
| Categories | |||
| ---------------*/ | |||
| .ui.category.search .results { | |||
| width: 28em; | |||
| } | |||
| /* Category */ | |||
| .ui.category.search > .results .category { | |||
| background: #F3F4F5; | |||
| box-shadow: none; | |||
| border-bottom: 1px solid rgba(0, 0, 0, 0.06); | |||
| -webkit-transition: background 0.1s ease, border-color 0.1s ease; | |||
| transition: background 0.1s ease, border-color 0.1s ease; | |||
| } | |||
| /* Last Category */ | |||
| .ui.category.search > .results .category:last-child { | |||
| border-bottom: none; | |||
| } | |||
| /* First / Last */ | |||
| .ui.category.search > .results .category:first-child .name + .result { | |||
| border-radius: 0em 0.2307em 0em 0em; | |||
| } | |||
| .ui.category.search > .results .category:last-child .result:last-child { | |||
| border-radius: 0em 0em 0.2307em 0em; | |||
| } | |||
| /* Category Result */ | |||
| .ui.category.search > .results .category .result { | |||
| background: #FFFFFF; | |||
| margin-left: 100px; | |||
| border-left: 1px solid rgba(0, 0, 0, 0.13); | |||
| border-bottom: 1px solid rgba(0, 0, 0, 0.06); | |||
| -webkit-transition: background 0.1s ease, border-color 0.1s ease; | |||
| transition: background 0.1s ease, border-color 0.1s ease; | |||
| padding: 0.84615385em 1.15384615em; | |||
| } | |||
| .ui.category.search > .results .category:last-child .result:last-child { | |||
| border-bottom: none; | |||
| } | |||
| /* Category Result Name */ | |||
| .ui.category.search > .results .category > .name { | |||
| width: 100px; | |||
| background: transparent; | |||
| font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif; | |||
| font-size: 1em; | |||
| float: 1em; | |||
| float: left; | |||
| padding: 0.4em 1em; | |||
| font-weight: bold; | |||
| color: rgba(0, 0, 0, 0.4); | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*------------------- | |||
| Left / Right | |||
| --------------------*/ | |||
| .ui[class*="left aligned"].search > .results { | |||
| right: auto; | |||
| left: 0%; | |||
| } | |||
| .ui[class*="right aligned"].search > .results { | |||
| right: 0%; | |||
| left: auto; | |||
| } | |||
| /*-------------- | |||
| Fluid | |||
| ---------------*/ | |||
| .ui.fluid.search .results { | |||
| width: 100%; | |||
| } | |||
| /*-------------- | |||
| Sizes | |||
| ---------------*/ | |||
| .ui.mini.search { | |||
| font-size: 0.69230769em; | |||
| } | |||
| .ui.small.search { | |||
| font-size: 0.92307692em; | |||
| } | |||
| .ui.search { | |||
| font-size: 1em; | |||
| } | |||
| .ui.large.search { | |||
| font-size: 1.15384615em; | |||
| } | |||
| .ui.big.search { | |||
| font-size: 1.30769231em; | |||
| } | |||
| .ui.huge.search { | |||
| font-size: 1.46153846em; | |||
| } | |||
| .ui.massive.search { | |||
| font-size: 1.69230769em; | |||
| } | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,754 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Segment | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Segment | |||
| *******************************/ | |||
| .ui.segment { | |||
| position: relative; | |||
| background: #FFFFFF; | |||
| box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.075); | |||
| margin: 1rem 0em; | |||
| padding: 20px 20px; | |||
| border-radius: 4px; | |||
| border: 1px solid #D8DEE2; | |||
| } | |||
| .ui.segment:first-child { | |||
| margin-top: 0em; | |||
| } | |||
| .ui.segment:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| /* Vertical */ | |||
| .ui.vertical.segment { | |||
| margin: 0em; | |||
| padding-left: 0em; | |||
| padding-right: 0em; | |||
| background: none transparent; | |||
| border-radius: 0px; | |||
| box-shadow: none; | |||
| border: none; | |||
| border-bottom: 1px solid rgba(0, 0, 0, 0.13); | |||
| } | |||
| .ui.vertical.segment:last-child { | |||
| border-bottom: none; | |||
| } | |||
| /*------------------- | |||
| Loose Coupling | |||
| --------------------*/ | |||
| /* Header */ | |||
| .ui.inverted.segment > .ui.header { | |||
| color: #FFFFFF; | |||
| } | |||
| /* Label */ | |||
| .ui[class*="bottom attached"].segment > [class*="top attached"].label { | |||
| border-top-left-radius: 0em; | |||
| border-top-right-radius: 0em; | |||
| } | |||
| .ui[class*="top attached"].segment > [class*="bottom attached"].label { | |||
| border-bottom-left-radius: 0em; | |||
| border-bottom-right-radius: 0em; | |||
| } | |||
| .ui.attached.segment:not(.top):not(.bottom) > [class*="top attached"].label { | |||
| border-top-left-radius: 0em; | |||
| border-top-right-radius: 0em; | |||
| } | |||
| .ui.attached.segment:not(.top):not(.bottom) > [class*="bottom attached"].label { | |||
| border-bottom-left-radius: 0em; | |||
| border-bottom-right-radius: 0em; | |||
| } | |||
| /* Grid */ | |||
| .ui.page.grid.segment, | |||
| .ui.grid > .row > .ui.segment.column, | |||
| .ui.grid > .ui.segment.column { | |||
| padding-top: 40px; | |||
| padding-bottom: 40px; | |||
| } | |||
| .ui.grid.segment { | |||
| margin: 1rem 0em; | |||
| border-radius: 4px; | |||
| } | |||
| /* Table */ | |||
| .ui.basic.table.segment { | |||
| background: #FFFFFF; | |||
| border: 1px solid #D8DEE2; | |||
| box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.075); | |||
| } | |||
| .ui[class*="very basic"].table.segment { | |||
| padding: 20px 20px; | |||
| } | |||
| /******************************* | |||
| Types | |||
| *******************************/ | |||
| /*------------------- | |||
| Piled | |||
| --------------------*/ | |||
| .ui.piled.segments, | |||
| .ui.piled.segment { | |||
| margin: 3em 0em; | |||
| box-shadow: ''; | |||
| z-index: auto; | |||
| } | |||
| .ui.piled.segment:first-child { | |||
| margin-top: 0em; | |||
| } | |||
| .ui.piled.segment:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| .ui.piled.segments:after, | |||
| .ui.piled.segments:before, | |||
| .ui.piled.segment:after, | |||
| .ui.piled.segment:before { | |||
| background-color: #FFFFFF; | |||
| visibility: visible; | |||
| content: ''; | |||
| display: block; | |||
| height: 100%; | |||
| left: 0px; | |||
| position: absolute; | |||
| width: 100%; | |||
| border: 1px solid #D8DEE2; | |||
| box-shadow: ''; | |||
| } | |||
| .ui.piled.segments:before, | |||
| .ui.piled.segment:before { | |||
| -webkit-transform: rotate(-1.2deg); | |||
| transform: rotate(-1.2deg); | |||
| top: 0; | |||
| z-index: -2; | |||
| } | |||
| .ui.piled.segments:after, | |||
| .ui.piled.segment:after { | |||
| -webkit-transform: rotate(1.2deg); | |||
| transform: rotate(1.2deg); | |||
| top: 0; | |||
| z-index: -1; | |||
| } | |||
| /* Piled Attached */ | |||
| .ui[class*="top attached"].piled.segment { | |||
| margin-top: 3em; | |||
| margin-bottom: 0em; | |||
| } | |||
| .ui.piled.segment[class*="top attached"]:first-child { | |||
| margin-top: 0em; | |||
| } | |||
| .ui.piled.segment[class*="bottom attached"] { | |||
| margin-top: 0em; | |||
| margin-bottom: 3em; | |||
| } | |||
| .ui.piled.segment[class*="bottom attached"]:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| /*------------------- | |||
| Stacked | |||
| --------------------*/ | |||
| .ui.stacked.segment { | |||
| padding-bottom: 20.4px; | |||
| } | |||
| .ui.stacked.segments:before, | |||
| .ui.stacked.segments:after, | |||
| .ui.stacked.segment:before, | |||
| .ui.stacked.segment:after { | |||
| content: ''; | |||
| position: absolute; | |||
| bottom: -3px; | |||
| left: 0%; | |||
| border-top: 1px solid rgba(0, 0, 0, 0.13); | |||
| background: rgba(0, 0, 0, 0.03); | |||
| width: 100%; | |||
| height: 6px; | |||
| visibility: visible; | |||
| } | |||
| .ui.stacked.segments:before, | |||
| .ui.stacked.segment:before { | |||
| display: none; | |||
| } | |||
| /* Add additional page */ | |||
| .ui.tall.stacked.segments:before, | |||
| .ui.tall.stacked.segment:before { | |||
| display: block; | |||
| bottom: 0px; | |||
| } | |||
| /* Inverted */ | |||
| .ui.stacked.inverted.segments:before, | |||
| .ui.stacked.inverted.segments:after, | |||
| .ui.stacked.inverted.segment:before, | |||
| .ui.stacked.inverted.segment:after { | |||
| background-color: rgba(0, 0, 0, 0.03); | |||
| border-top: 1px solid #51A7E8; | |||
| } | |||
| /*------------------- | |||
| Padded | |||
| --------------------*/ | |||
| .ui.padded.segment { | |||
| padding: 1.5em; | |||
| } | |||
| .ui[class*="very padded"].segment { | |||
| padding: 3em; | |||
| } | |||
| /*------------------- | |||
| Compact | |||
| --------------------*/ | |||
| .ui.compact.segment { | |||
| display: table; | |||
| } | |||
| /* Compact Group */ | |||
| .ui.compact.segments { | |||
| display: -webkit-inline-box; | |||
| display: -webkit-inline-flex; | |||
| display: -ms-inline-flexbox; | |||
| display: inline-flex; | |||
| } | |||
| .ui.compact.segments .segment, | |||
| .ui.segments .compact.segment { | |||
| display: block; | |||
| -webkit-box-flex: 0; | |||
| -webkit-flex: 0 1 auto; | |||
| -ms-flex: 0 1 auto; | |||
| flex: 0 1 auto; | |||
| } | |||
| /*------------------- | |||
| Circular | |||
| --------------------*/ | |||
| .ui.circular.segment { | |||
| display: table-cell; | |||
| padding: 2em; | |||
| text-align: center; | |||
| vertical-align: middle; | |||
| border-radius: 500em; | |||
| } | |||
| /*------------------- | |||
| Raised | |||
| --------------------*/ | |||
| .ui.raised.segments, | |||
| .ui.raised.segment { | |||
| box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.075); | |||
| } | |||
| /******************************* | |||
| Groups | |||
| *******************************/ | |||
| /* Group */ | |||
| .ui.segments { | |||
| -webkit-box-orient: vertical; | |||
| -webkit-box-direction: normal; | |||
| -webkit-flex-direction: column; | |||
| -ms-flex-direction: column; | |||
| flex-direction: column; | |||
| position: relative; | |||
| margin: 1rem 0em; | |||
| border: 1px solid #D8DEE2; | |||
| box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.075); | |||
| border-radius: 4px; | |||
| } | |||
| .ui.segments:first-child { | |||
| margin-top: 0em; | |||
| } | |||
| .ui.segments:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| /* Nested Segment */ | |||
| .ui.segments > .segment { | |||
| top: 0px; | |||
| bottom: 0px; | |||
| border-radius: 0px; | |||
| margin: 0em; | |||
| width: auto; | |||
| box-shadow: none; | |||
| border: none; | |||
| border-top: 1px solid #D8DEE2; | |||
| } | |||
| .ui.segments:not(.horizontal) > .segment:first-child { | |||
| border-top: none; | |||
| margin-top: 0em; | |||
| bottom: 0px; | |||
| margin-bottom: 0em; | |||
| top: 0px; | |||
| border-radius: 4px 4px 0em 0em; | |||
| } | |||
| /* Bottom */ | |||
| .ui.segments:not(.horizontal) > .segment:last-child { | |||
| top: 0px; | |||
| bottom: 0px; | |||
| margin-top: 0em; | |||
| margin-bottom: 0em; | |||
| box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.075), none; | |||
| border-radius: 0em 0em 4px 4px; | |||
| } | |||
| /* Nested Group */ | |||
| .ui.segments > .ui.segments { | |||
| border-top: 1px solid #D8DEE2; | |||
| margin: 1rem 1rem; | |||
| } | |||
| .ui.segments > .segments:first-child { | |||
| border-top: none; | |||
| } | |||
| .ui.segments > .segment + .segments:not(.horizontal) { | |||
| margin-top: 0em; | |||
| } | |||
| /* Horizontal Group */ | |||
| .ui.horizontal.segments { | |||
| display: -webkit-box; | |||
| display: -webkit-flex; | |||
| display: -ms-flexbox; | |||
| display: flex; | |||
| -webkit-box-orient: horizontal; | |||
| -webkit-box-direction: normal; | |||
| -webkit-flex-direction: row; | |||
| -ms-flex-direction: row; | |||
| flex-direction: row; | |||
| background-color: transparent; | |||
| border-radius: 0px; | |||
| padding: 0em; | |||
| background-color: #FFFFFF; | |||
| box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.075); | |||
| margin: 1rem 0em; | |||
| border-radius: 4px; | |||
| border: 1px solid #D8DEE2; | |||
| } | |||
| /* Nested Horizontal Group */ | |||
| .ui.segments > .horizontal.segments { | |||
| margin: 0em; | |||
| background-color: transparent; | |||
| border-radius: 0px; | |||
| border: none; | |||
| box-shadow: none; | |||
| border-top: 1px solid #D8DEE2; | |||
| } | |||
| /* Horizontal Segment */ | |||
| .ui.horizontal.segments > .segment { | |||
| -webkit-box-flex: 1; | |||
| -webkit-flex: 1 1 auto; | |||
| flex: 1 1 auto; | |||
| -ms-flex: 1 1 0px; | |||
| /* Solves #2550 MS Flex */ | |||
| margin: 0em; | |||
| min-width: 0px; | |||
| background-color: transparent; | |||
| border-radius: 0px; | |||
| border: none; | |||
| box-shadow: none; | |||
| border-left: 1px solid rgba(0, 0, 0, 0.13); | |||
| } | |||
| /* Border Fixes */ | |||
| .ui.segments > .horizontal.segments:first-child { | |||
| border-top: none; | |||
| } | |||
| .ui.horizontal.segments > .segment:first-child { | |||
| border-left: none; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| /*-------------- | |||
| Disabled | |||
| ---------------*/ | |||
| .ui.disabled.segment { | |||
| opacity: 0.3; | |||
| color: rgba(40, 40, 40, 0.3); | |||
| } | |||
| /*-------------- | |||
| Loading | |||
| ---------------*/ | |||
| .ui.loading.segment { | |||
| position: relative; | |||
| cursor: default; | |||
| point-events: none; | |||
| text-shadow: none !important; | |||
| color: transparent !important; | |||
| -webkit-transition: all 0s linear; | |||
| transition: all 0s linear; | |||
| } | |||
| .ui.loading.segment:before { | |||
| position: absolute; | |||
| content: ''; | |||
| top: 0%; | |||
| left: 0%; | |||
| background: rgba(255, 255, 255, 0.8); | |||
| width: 100%; | |||
| height: 100%; | |||
| border-radius: 4px; | |||
| z-index: 100; | |||
| } | |||
| .ui.loading.segment:after { | |||
| position: absolute; | |||
| content: ''; | |||
| top: 50%; | |||
| left: 50%; | |||
| margin: -1.5em 0em 0em -1.5em; | |||
| width: 3em; | |||
| height: 3em; | |||
| -webkit-animation: segment-spin 0.6s linear; | |||
| animation: segment-spin 0.6s linear; | |||
| -webkit-animation-iteration-count: infinite; | |||
| animation-iteration-count: infinite; | |||
| border-radius: 500rem; | |||
| border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1); | |||
| border-style: solid; | |||
| border-width: 0.2em; | |||
| box-shadow: 0px 0px 0px 1px transparent; | |||
| visibility: visible; | |||
| z-index: 101; | |||
| } | |||
| @-webkit-keyframes segment-spin { | |||
| from { | |||
| -webkit-transform: rotate(0deg); | |||
| transform: rotate(0deg); | |||
| } | |||
| to { | |||
| -webkit-transform: rotate(360deg); | |||
| transform: rotate(360deg); | |||
| } | |||
| } | |||
| @keyframes segment-spin { | |||
| from { | |||
| -webkit-transform: rotate(0deg); | |||
| transform: rotate(0deg); | |||
| } | |||
| to { | |||
| -webkit-transform: rotate(360deg); | |||
| transform: rotate(360deg); | |||
| } | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| /*------------------- | |||
| Basic | |||
| --------------------*/ | |||
| .ui.basic.segment { | |||
| background: none transparent; | |||
| box-shadow: none; | |||
| border: none; | |||
| border-radius: 0px; | |||
| } | |||
| /*------------------- | |||
| Clearing | |||
| --------------------*/ | |||
| .ui.clearing.segment:after { | |||
| content: "."; | |||
| display: block; | |||
| height: 0; | |||
| clear: both; | |||
| visibility: hidden; | |||
| } | |||
| /*------------------- | |||
| Colors | |||
| --------------------*/ | |||
| /* Red */ | |||
| .ui.red.segment:not(.inverted) { | |||
| border-top: 0.5em solid #DB2828; | |||
| } | |||
| .ui.inverted.red.segment { | |||
| background-color: #DB2828 !important; | |||
| color: #FFFFFF !important; | |||
| } | |||
| /* Orange */ | |||
| .ui.orange.segment:not(.inverted) { | |||
| border-top: 0.5em solid #D26911; | |||
| } | |||
| .ui.inverted.orange.segment { | |||
| background-color: #D26911 !important; | |||
| color: #FFFFFF !important; | |||
| } | |||
| /* Yellow */ | |||
| .ui.yellow.segment:not(.inverted) { | |||
| border-top: 0.5em solid #FBBD08; | |||
| } | |||
| .ui.inverted.yellow.segment { | |||
| background-color: #FBBD08 !important; | |||
| color: #FFFFFF !important; | |||
| } | |||
| /* Olive */ | |||
| .ui.olive.segment:not(.inverted) { | |||
| border-top: 0.5em solid #B5CC18; | |||
| } | |||
| .ui.inverted.olive.segment { | |||
| background-color: #B5CC18 !important; | |||
| color: #FFFFFF !important; | |||
| } | |||
| /* Green */ | |||
| .ui.green.segment:not(.inverted) { | |||
| border-top: 0.5em solid #78CB5B; | |||
| } | |||
| .ui.inverted.green.segment { | |||
| background-color: #78CB5B !important; | |||
| color: #FFFFFF !important; | |||
| } | |||
| /* Teal */ | |||
| .ui.teal.segment:not(.inverted) { | |||
| border-top: 0.5em solid #00B5AD; | |||
| } | |||
| .ui.inverted.teal.segment { | |||
| background-color: #00B5AD !important; | |||
| color: #FFFFFF !important; | |||
| } | |||
| /* Blue */ | |||
| .ui.blue.segment:not(.inverted) { | |||
| border-top: 0.5em solid #80A6CD; | |||
| } | |||
| .ui.inverted.blue.segment { | |||
| background-color: #80A6CD !important; | |||
| color: #FFFFFF !important; | |||
| } | |||
| /* Violet */ | |||
| .ui.violet.segment:not(.inverted) { | |||
| border-top: 0.5em solid #6435C9; | |||
| } | |||
| .ui.inverted.violet.segment { | |||
| background-color: #6435C9 !important; | |||
| color: #FFFFFF !important; | |||
| } | |||
| /* Purple */ | |||
| .ui.purple.segment:not(.inverted) { | |||
| border-top: 0.5em solid #A333C8; | |||
| } | |||
| .ui.inverted.purple.segment { | |||
| background-color: #A333C8 !important; | |||
| color: #FFFFFF !important; | |||
| } | |||
| /* Pink */ | |||
| .ui.pink.segment:not(.inverted) { | |||
| border-top: 0.5em solid #E03997; | |||
| } | |||
| .ui.inverted.pink.segment { | |||
| background-color: #E03997 !important; | |||
| color: #FFFFFF !important; | |||
| } | |||
| /* Brown */ | |||
| .ui.brown.segment:not(.inverted) { | |||
| border-top: 0.5em solid #A5673F; | |||
| } | |||
| .ui.inverted.brown.segment { | |||
| background-color: #A5673F !important; | |||
| color: #FFFFFF !important; | |||
| } | |||
| /* Grey */ | |||
| .ui.grey.segment:not(.inverted) { | |||
| border-top: 0.5em solid #767676; | |||
| } | |||
| .ui.inverted.grey.segment { | |||
| background-color: #767676 !important; | |||
| color: #FFFFFF !important; | |||
| } | |||
| /* Black */ | |||
| .ui.black.segment:not(.inverted) { | |||
| border-top: 0.5em solid #333333; | |||
| } | |||
| .ui.inverted.black.segment { | |||
| background-color: #333333 !important; | |||
| color: #FFFFFF !important; | |||
| } | |||
| /*------------------- | |||
| Aligned | |||
| --------------------*/ | |||
| .ui[class*="left aligned"].segment { | |||
| text-align: left; | |||
| } | |||
| .ui[class*="right aligned"].segment { | |||
| text-align: right; | |||
| } | |||
| .ui[class*="center aligned"].segment { | |||
| text-align: center; | |||
| } | |||
| /*------------------- | |||
| Floated | |||
| --------------------*/ | |||
| .ui.floated.segment, | |||
| .ui[class*="left floated"].segment { | |||
| float: left; | |||
| margin-right: 1em; | |||
| } | |||
| .ui[class*="right floated"].segment { | |||
| float: right; | |||
| margin-left: 1em; | |||
| } | |||
| /*------------------- | |||
| Inverted | |||
| --------------------*/ | |||
| .ui.inverted.segment { | |||
| border: none; | |||
| box-shadow: none; | |||
| } | |||
| .ui.inverted.segment, | |||
| .ui.primary.inverted.segment { | |||
| background: #333333; | |||
| color: rgba(255, 255, 255, 0.9); | |||
| } | |||
| /* Nested */ | |||
| .ui.inverted.segment .segment { | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.inverted.segment .inverted.segment { | |||
| color: rgba(255, 255, 255, 0.9); | |||
| } | |||
| /* Attached */ | |||
| .ui.inverted.attached.segment { | |||
| border-color: #555555; | |||
| } | |||
| /*------------------- | |||
| Emphasis | |||
| --------------------*/ | |||
| /* Secondary */ | |||
| .ui.secondary.segment { | |||
| background: #F9F9F9; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.secondary.inverted.segment { | |||
| background: #555555; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /* Tertiary */ | |||
| .ui.tertiary.segment { | |||
| background: #F0F0F0; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| .ui.tertiary.inverted.segment { | |||
| background: #333333; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| } | |||
| /*------------------- | |||
| Attached | |||
| --------------------*/ | |||
| /* Middle */ | |||
| .ui.attached.segment { | |||
| top: 0px; | |||
| bottom: 0px; | |||
| border-radius: 0px; | |||
| margin: 0em -1px; | |||
| width: calc(100% + 2px ); | |||
| max-width: calc(100% + 2px ); | |||
| box-shadow: none; | |||
| border: 1px solid #DDDDDD; | |||
| } | |||
| .ui.attached + .ui.attached.segment:not(.top) { | |||
| border-top: none; | |||
| } | |||
| /* Top */ | |||
| .ui[class*="top attached"].segment { | |||
| bottom: 0px; | |||
| margin-bottom: 0em; | |||
| top: 0px; | |||
| margin-top: 1rem; | |||
| border-radius: 4px 4px 0em 0em; | |||
| } | |||
| .ui.segment[class*="top attached"]:first-child { | |||
| margin-top: 0em; | |||
| } | |||
| /* Bottom */ | |||
| .ui.segment[class*="bottom attached"] { | |||
| bottom: 0px; | |||
| margin-top: 0em; | |||
| top: 0px; | |||
| margin-bottom: 1rem; | |||
| box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.075), none; | |||
| border-radius: 0em 0em 4px 4px; | |||
| } | |||
| .ui.segment[class*="bottom attached"]:last-child { | |||
| margin-bottom: 0em; | |||
| } | |||
| /******************************* | |||
| Overrides | |||
| *******************************/ | |||
| /******************************* | |||
| Site Overrides | |||
| *******************************/ | |||
| @ -0,0 +1,148 @@ | |||
| /*! | |||
| * # Semantic UI 2.1.6 - Shape | |||
| * http://github.com/semantic-org/semantic-ui/ | |||
| * | |||
| * | |||
| * Copyright 2015 Contributors | |||
| * Released under the MIT license | |||
| * http://opensource.org/licenses/MIT | |||
| * | |||
| */ | |||
| /******************************* | |||
| Shape | |||
| *******************************/ | |||
| .ui.shape { | |||
| position: relative; | |||
| vertical-align: top; | |||
| display: inline-block; | |||
| -webkit-perspective: 2000px; | |||
| perspective: 2000px; | |||
| -webkit-transition: -webkit-transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out; | |||
| transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out; | |||
| } | |||
| .ui.shape .sides { | |||
| -webkit-transform-style: preserve-3d; | |||
| transform-style: preserve-3d; | |||
| } | |||
| .ui.shape .side { | |||
| opacity: 1; | |||
| width: 100%; | |||
| margin: 0em !important; | |||
| -webkit-backface-visibility: hidden; | |||
| backface-visibility: hidden; | |||
| } | |||
| .ui.shape .side { | |||
| display: none; | |||
| } | |||
| .ui.shape .side * { | |||
| -webkit-backface-visibility: visible !important; | |||
| backface-visibility: visible !important; | |||
| } | |||
| /******************************* | |||
| Types | |||
| *******************************/ | |||
| .ui.cube.shape .side { | |||
| min-width: 15em; | |||
| height: 15em; | |||
| padding: 2em; | |||
| background-color: #E6E6E6; | |||
| color: rgba(0, 0, 0, 0.87); | |||
| box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3); | |||
| } | |||
| .ui.cube.shape .side > .content { | |||
| width: 100%; | |||
| height: 100%; | |||
| display: table; | |||
| text-align: center; | |||
| -webkit-user-select: text; | |||
| -moz-user-select: text; | |||
| -ms-user-select: text; | |||
| user-select: text; | |||
| } | |||
| .ui.cube.shape .side > .content > div { | |||
| display: table-cell; | |||
| vertical-align: middle; | |||
| font-size: 2em; | |||
| } | |||
| /******************************* | |||
| Variations | |||
| *******************************/ | |||
| .ui.text.shape.animating .sides { | |||
| position: static; | |||
| } | |||
| .ui.text.shape .side { | |||
| white-space: nowrap; | |||
| } | |||
| .ui.text.shape .side > * { | |||
| white-space: normal; | |||
| } | |||
| /******************************* | |||
| States | |||
| *******************************/ | |||
| /*-------------- | |||
| Loading | |||
| ---------------*/ | |||
| .ui.loading.shape { | |||
| position: absolute; | |||
| top: -9999px; | |||
| left: -9999px; | |||
| } | |||
| /*-------------- | |||
| Animating | |||
| ---------------*/ | |||
| .ui.shape .animating.side { | |||
| position: absolute; | |||
| top: 0px; | |||
| left: 0px; | |||
| display: block; | |||
| z-index: 100; | |||
| } | |||
| .ui.shape .hidden.side { | |||
| opacity: 0.6; | |||
| } | |||
| /*-------------- | |||
| CSS | |||
| ---------------*/ | |||
| .ui.shape.animating .sides { | |||
| position: absolute; | |||
| } | |||
| .ui.shape.animating .sides { | |||
| -webkit-transition: -webkit-transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out; | |||
| transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out; | |||
| } | |||
| .ui.shape.animating .side { | |||
| -webkit-transition: opacity 0.6s ease-in-out; | |||
| transition: opacity 0.6s ease-in-out; | |||
| } | |||
| /*-------------- | |||
| Active | |||
| ---------------*/ | |||
| .ui.shape .active.side { | |||
| display: block; | |||
| } | |||
| /******************************* | |||
| User Overrides | |||
| *******************************/ | |||