Merge branch 'master' of github.com:cdnjs/cdnjs
@@ -0,0 +1 @@
|
||||
!function(){AniJS.EventSystem;AniJS.EventSystem.isEventTarget=function(a){return a.trigger?1:0},AniJS.EventSystem.createEventTarget=function(){return $({})},AniJS.EventSystem.addEventListenerHelper=function(a,b,c){$(a).on(b,c)},AniJS.EventSystem.removeEventListenerHelper=function(a,b,c){$(a).off(b,c)}}(window);
|
||||
@@ -0,0 +1,64 @@
|
||||
/*!
|
||||
AniJS - http://anijs.github.io
|
||||
Licensed under the MIT license
|
||||
|
||||
Copyright (c) 2014 Dariel Noel <darielnoel@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
/**
|
||||
* JQuery Event System Interface
|
||||
*/
|
||||
(function() {
|
||||
var JQueryEventSystem = AniJS.EventSystem;
|
||||
|
||||
/**
|
||||
* Overwriting isEventTarget method
|
||||
* @method isEventTarget
|
||||
* @param {} element
|
||||
* @return ConditionalExpression
|
||||
*/
|
||||
AniJS.EventSystem.isEventTarget = function(element) {
|
||||
return (element.trigger) ? 1 : 0;
|
||||
};
|
||||
|
||||
/**
|
||||
* Overwriting createEventTarget method
|
||||
* @method createEventTarget
|
||||
* @return CallExpression
|
||||
*/
|
||||
AniJS.EventSystem.createEventTarget = function() {
|
||||
return $({});
|
||||
};
|
||||
|
||||
/**
|
||||
* Overwriting addEventListenerHelper method
|
||||
* @method addEventListenerHelper
|
||||
* @param {} eventTargetItem
|
||||
* @param {} event
|
||||
* @param {} listener
|
||||
* @param {} other
|
||||
* @return
|
||||
*/
|
||||
AniJS.EventSystem.addEventListenerHelper = function(eventTargetItem, event, listener, other) {
|
||||
$(eventTargetItem).on(event, listener);
|
||||
};
|
||||
|
||||
/**
|
||||
* Overwriting removeEventListenerHelper method
|
||||
* @method removeEventListenerHelper
|
||||
* @param {} e
|
||||
* @param {} arguments
|
||||
* @return
|
||||
*/
|
||||
AniJS.EventSystem.removeEventListenerHelper = function(element, type, listener) {
|
||||
$(element).off(type, listener);
|
||||
};
|
||||
|
||||
|
||||
}(window));
|
||||
@@ -0,0 +1 @@
|
||||
!function(){var a=AniJS.getHelper();a.addClass=function(b,c,d,e){a.makeAction(b,c,d,e,0)},a.removeClass=function(b,c,d,e){a.makeAction(b,c,d,e,1)},a.toggleClass=function(b,c,d,e){a.makeAction(b,c,d,e,2)},a.makeAction=function(a,b,c,d,e){animationContextBehaviorTargetList=b.behaviorTargetList,0===e?b.nodeHelper.addClass(c,d[1]):1===e?b.nodeHelper.removeClass(c,d[1]):b.nodeHelper.hasClass(c,d[1])?b.nodeHelper.removeClass(c,d[1]):b.nodeHelper.addClass(c,d[1]),b.hasRunned||b.run()}}(window);
|
||||
@@ -0,0 +1,87 @@
|
||||
/*!
|
||||
AniJS - http://anijs.github.io
|
||||
Licensed under the MIT license
|
||||
|
||||
Copyright (c) 2014 Dariel Noel <darielnoel@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
/**
|
||||
* AniJS DOM Helper
|
||||
*/
|
||||
(function() {
|
||||
|
||||
//Obtaining the default helper
|
||||
var AniJSDefaultHelper = AniJS.getHelper();
|
||||
|
||||
/**
|
||||
* Add class to the elements
|
||||
* @author Dariel Noel <darielnoel@gmail.com>
|
||||
* @since 2014-09-03
|
||||
* @param {object} e The event handler
|
||||
* @param {object} animationContext AniJS Animation Context Object
|
||||
* @param {[string]} params [description]
|
||||
*/
|
||||
AniJSDefaultHelper.addClass = function(e, animationContext, target, params) {
|
||||
AniJSDefaultHelper.makeAction(e, animationContext, target, params, 0);
|
||||
};
|
||||
|
||||
/**
|
||||
* Remove class to the elements
|
||||
* @author Dariel Noel <darielnoel@gmail.com>
|
||||
* @since 2014-09-03
|
||||
* @param {object} e The event handler
|
||||
* @param {object} animationContext AniJS Animation Context Object
|
||||
* @param {[string]} params [description] [description]
|
||||
*/
|
||||
AniJSDefaultHelper.removeClass = function(e, animationContext, target, params) {
|
||||
AniJSDefaultHelper.makeAction(e, animationContext, target, params, 1);
|
||||
};
|
||||
|
||||
/**
|
||||
* Toggle class to the elements
|
||||
* @author Dariel Noel <darielnoel@gmail.com>
|
||||
* @since 2014-09-03
|
||||
* @param {object} e The event handler
|
||||
* @param {object} animationContext AniJS Animation Context Object
|
||||
* @param {[string]} params [description]
|
||||
*/
|
||||
AniJSDefaultHelper.toggleClass = function(e, animationContext, target, params) {
|
||||
AniJSDefaultHelper.makeAction(e, animationContext, target, params, 2);
|
||||
};
|
||||
|
||||
/**
|
||||
* Make toggle, remove or addActions
|
||||
* @author Dariel Noel <darielnoel@gmail.com>
|
||||
* @since 2014-09-03
|
||||
* @param {object} e The event handler
|
||||
* @param {object} animationContext AniJS Animation Context Object
|
||||
* @param {[string]} params [description]
|
||||
*/
|
||||
AniJSDefaultHelper.makeAction = function(e, animationContext, target, params, actionID){
|
||||
//Current elements that will be animated
|
||||
animationContextBehaviorTargetList = animationContext.behaviorTargetList;
|
||||
if(actionID === 0){
|
||||
animationContext.nodeHelper.addClass(target, params[1]);
|
||||
} else if(actionID === 1){
|
||||
animationContext.nodeHelper.removeClass(target, params[1]);
|
||||
} else{
|
||||
if(animationContext.nodeHelper.hasClass(target, params[1])){
|
||||
animationContext.nodeHelper.removeClass(target, params[1]);
|
||||
}else {
|
||||
animationContext.nodeHelper.addClass(target, params[1]);
|
||||
}
|
||||
}
|
||||
//Run the animation
|
||||
if(!animationContext.hasRunned){
|
||||
animationContext.run();
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
}(window));
|
||||
@@ -0,0 +1 @@
|
||||
!function(){var a=AniJS.getHelper();a.scrollReveal=function(a,c){animationContextBehaviorTargetList=c.behaviorTargetList,visibleBehaviorTargetList=[];for(var d=0;d<animationContextBehaviorTargetList.length;d++)element=animationContextBehaviorTargetList[d],b.isElementInViewport(element,.33)?element.isRevealed||(visibleBehaviorTargetList.push(element),element.isRevealed=1):element.isRevealed=0;c.behaviorTargetList=visibleBehaviorTargetList,c.run()};var b={viewportFactor:1,docElem:window.document.documentElement,isElementInViewport:function(a,b){var c=window.pageYOffset,d=c+this._getViewportH(),e=a.offsetHeight,f=this._getOffset(a).top,g=f+e,b=b||0;return d>=f+e*b&&g>=c||"fixed"==(a.currentStyle?a.currentStyle:window.getComputedStyle(a,null)).position},_getViewportH:function(){var a=this.docElem.clientHeight,b=window.innerHeight;return b>a?b:a},_getOffset:function(a){var b=0,c=0;do isNaN(a.offsetTop)||(b+=a.offsetTop),isNaN(a.offsetLeft)||(c+=a.offsetLeft);while(a=a.offsetParent);return{top:b,left:c}}}}(window);
|
||||
@@ -0,0 +1,133 @@
|
||||
/*!
|
||||
AniJS - http://anijs.github.io
|
||||
Licensed under the MIT license
|
||||
|
||||
Copyright (c) 2014 Dariel Noel <darielnoel@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
/**
|
||||
* AniJS ScrollReview Helper
|
||||
*/
|
||||
(function() {
|
||||
|
||||
//Obtaining the default helper
|
||||
var AniJSDefaultHelper = AniJS.getHelper();
|
||||
|
||||
/**
|
||||
* Creating a testing scroll before function
|
||||
* @method scrollReveal
|
||||
* @param {} e
|
||||
* @param {} animationContext
|
||||
* @return
|
||||
*/
|
||||
AniJSDefaultHelper.scrollReveal = function(e, animationContext) {
|
||||
|
||||
//Current elements that will be animated
|
||||
animationContextBehaviorTargetList = animationContext.behaviorTargetList;
|
||||
|
||||
//We put in this only the nodes that will be animated
|
||||
visibleBehaviorTargetList = [];
|
||||
|
||||
for (var i = 0; i < animationContextBehaviorTargetList.length; i++) {
|
||||
element = animationContextBehaviorTargetList[i];
|
||||
|
||||
//Check if the element is visible
|
||||
if (ScrollRevealHelper.isElementInViewport(element, 0.33)) {
|
||||
|
||||
//The element is not animated again if it's visible
|
||||
if (!element.isRevealed) {
|
||||
visibleBehaviorTargetList.push(element);
|
||||
element.isRevealed = 1;
|
||||
}
|
||||
|
||||
} else {
|
||||
element.isRevealed = 0;
|
||||
}
|
||||
}
|
||||
|
||||
//Overwrite the behaviorTargetList of the animation
|
||||
animationContext.behaviorTargetList = visibleBehaviorTargetList;
|
||||
|
||||
//Run the animation
|
||||
animationContext.run();
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper the custom EventTarget
|
||||
* ! scrollReveal.js v0.1.2 (c) 2014 Julian Lloyd
|
||||
* MIT License
|
||||
* https://github.com/julianlloyd/scrollReveal.js
|
||||
* @class ScrollRevealHelper
|
||||
*/
|
||||
var ScrollRevealHelper = {
|
||||
|
||||
//ATTRS
|
||||
|
||||
//TODO: This attrs should be customizable
|
||||
viewportFactor: 1,
|
||||
docElem: window.document.documentElement,
|
||||
|
||||
/**
|
||||
* Return true if the element if visible in a viewport zone
|
||||
* @method isElementInViewport
|
||||
* @param {} el
|
||||
* @param {} h
|
||||
* @return LogicalExpression
|
||||
*/
|
||||
isElementInViewport: function(el, h) {
|
||||
var scrolled = window.pageYOffset,
|
||||
viewed = scrolled + this._getViewportH(),
|
||||
elH = el.offsetHeight,
|
||||
elTop = this._getOffset(el).top,
|
||||
elBottom = elTop + elH,
|
||||
h = h || 0;
|
||||
|
||||
return (elTop + elH * h) <= viewed && (elBottom) >= scrolled || (el.currentStyle ? el.currentStyle : window.getComputedStyle(el, null)).position == 'fixed';
|
||||
},
|
||||
|
||||
/**
|
||||
* Obtaining the viewport height
|
||||
* @method _getViewportH
|
||||
* @return ConditionalExpression
|
||||
*/
|
||||
_getViewportH: function() {
|
||||
var client = this.docElem['clientHeight'],
|
||||
inner = window['innerHeight'];
|
||||
|
||||
return (client < inner) ? inner : client;
|
||||
},
|
||||
|
||||
/**
|
||||
* The offset of the element
|
||||
* @method _getOffset
|
||||
* @param {} el
|
||||
* @return ObjectExpression
|
||||
*/
|
||||
_getOffset: function(el) {
|
||||
var offsetTop = 0,
|
||||
offsetLeft = 0;
|
||||
|
||||
do {
|
||||
if (!isNaN(el.offsetTop)) {
|
||||
offsetTop += el.offsetTop;
|
||||
}
|
||||
if (!isNaN(el.offsetLeft)) {
|
||||
offsetLeft += el.offsetLeft;
|
||||
}
|
||||
} while (el = el.offsetParent)
|
||||
|
||||
return {
|
||||
top: offsetTop,
|
||||
left: offsetLeft
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
}(window));
|
||||
@@ -2,7 +2,7 @@
|
||||
"name": "AniJS",
|
||||
"title": "AniJS",
|
||||
"filename": "anijs-min.js",
|
||||
"version": "0.7.1",
|
||||
"version": "0.7.2",
|
||||
"description": "Declarative handling library for CSS animations.",
|
||||
"homepage": "http://anijs.github.io/",
|
||||
"keywords": [
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
/*
|
||||
* bootstrap-table - v1.2.3 - 2014-09-12
|
||||
* https://github.com/wenzhixin/bootstrap-table
|
||||
* Copyright (c) 2014 zhixin wen
|
||||
* Licensed MIT License
|
||||
*/
|
||||
|
||||
.table{margin-bottom:0!important;border-bottom:1px solid #ddd;border-collapse:collapse!important;border-radius:1px}.fixed-table-container{position:relative;clear:both;border:1px solid #ddd;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px}.fixed-table-header{overflow:hidden;border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0}.fixed-table-body{overflow-x:auto;overflow-y:auto;height:100%}.fixed-table-container table{width:100%}.fixed-table-container thead th{height:0;padding:0;margin:0;border-left:1px solid #ddd}.fixed-table-container thead th:first-child{border-left:none;border-top-left-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px}.fixed-table-container thead th .th-inner{padding:8px;line-height:24px;vertical-align:top;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fixed-table-container tbody td{border-left:1px solid #ddd}.fixed-table-container tbody tr:first-child td{border-top:none}.fixed-table-container tbody td:first-child{border-left:none}.fixed-table-container tbody .selected td{background-color:#f5f5f5}.fixed-table-container .bs-checkbox{text-align:center}.fixed-table-container .bs-checkbox .th-inner{padding:8px 0}.fixed-table-container input[type=checkbox],.fixed-table-container input[type=radio]{margin:0 auto!important}.fixed-table-container .no-records-found{text-align:center}.fixed-table-pagination .pagination,.fixed-table-pagination .pagination-detail{margin-top:10px;margin-bottom:10px}.fixed-table-pagination .pagination a{padding:6px 12px;line-height:1.428571429}.fixed-table-pagination .pagination-info{line-height:34px;margin-right:5px}.fixed-table-pagination .btn-group{position:relative;display:inline-block;vertical-align:middle}.fixed-table-pagination .dropup .dropdown-menu{margin-bottom:0}.fixed-table-pagination .page-list{display:inline-block}.fixed-table-toolbar .columns{margin-left:5px}.fixed-table-toolbar .columns label{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.428571429}.fixed-table-toolbar .bars,.fixed-table-toolbar .columns,.fixed-table-toolbar .search{position:relative;margin-top:10px;margin-bottom:10px;line-height:34px}.fixed-table-pagination li.disabled a{pointer-events:none;cursor:default}.fixed-table-loading{display:none;position:absolute;top:42px;right:0;bottom:0;left:0;z-index:99;background-color:#fff;text-align:center}.fixed-table-body .card-view .title{font-weight:700;display:inline-block;min-width:30%;text-align:left!important}.fixed-table-body thead th .th-inner{box-sizing:border-box}.table td,.table th{vertical-align:middle;box-sizing:border-box}.fixed-table-toolbar .dropdown-menu{text-align:left;max-height:300px;overflow:auto}.btn-group{display:inline-block;margin-left:-1px}.btn-group>.btn-group:last-child>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table thead>tr>th{padding:0;margin:0}.pull-right .dropdown-menu{right:0;left:auto}p.fixed-table-scroll-inner{width:100%;height:200px}div.fixed-table-scroll-outer{top:0;left:0;visibility:hidden;width:200px;height:150px;overflow:hidden}
|
||||
@@ -0,0 +1,7 @@
|
||||
/*
|
||||
* bootstrap-table - v1.2.3 - 2014-09-12
|
||||
* https://github.com/wenzhixin/bootstrap-table
|
||||
* Copyright (c) 2014 zhixin wen
|
||||
* Licensed MIT License
|
||||
*/
|
||||
!function(a){"use strict";a.extend(a.fn.bootstrapTable.defaults,{formatLoadingMessage:function(){return"Indlæser, vent venligst…"},formatRecordsPerPage:function(a){return a+" poster pr side"},formatShowingRows:function(a,b,c){return"Viser "+a+" til "+b+" af "+c+" rækker"},formatSearch:function(){return"Søg"},formatNoMatches:function(){return"Ingen poster fundet"}})}(jQuery);
|
||||
@@ -0,0 +1,7 @@
|
||||
/*
|
||||
* bootstrap-table - v1.2.3 - 2014-09-12
|
||||
* https://github.com/wenzhixin/bootstrap-table
|
||||
* Copyright (c) 2014 zhixin wen
|
||||
* Licensed MIT License
|
||||
*/
|
||||
!function(a){"use strict";a.extend(a.fn.bootstrapTable.defaults,{formatLoadingMessage:function(){return"Loading, please wait…"},formatRecordsPerPage:function(a){return a+" records per page"},formatShowingRows:function(a,b,c){return"Showing "+a+" to "+b+" of "+c+" rows"},formatSearch:function(){return"Search"},formatNoMatches:function(){return"No matching records found"}})}(jQuery);
|
||||
@@ -0,0 +1,7 @@
|
||||
/*
|
||||
* bootstrap-table - v1.2.3 - 2014-09-12
|
||||
* https://github.com/wenzhixin/bootstrap-table
|
||||
* Copyright (c) 2014 zhixin wen
|
||||
* Licensed MIT License
|
||||
*/
|
||||
!function(a){"use strict";a.extend(a.fn.bootstrapTable.defaults,{formatLoadingMessage:function(){return"Cargando, espere por favor..."},formatRecordsPerPage:function(a){return a+" registros por página"},formatShowingRows:function(a,b,c){return"Mostrando "+a+" a "+b+" de "+c+" filas"},formatSearch:function(){return"Buscar"},formatNoMatches:function(){return"No se encontraron registros"}})}(jQuery);
|
||||
@@ -0,0 +1,7 @@
|
||||
/*
|
||||
* bootstrap-table - v1.2.3 - 2014-09-12
|
||||
* https://github.com/wenzhixin/bootstrap-table
|
||||
* Copyright (c) 2014 zhixin wen
|
||||
* Licensed MIT License
|
||||
*/
|
||||
!function(a){"use strict";a.extend(a.fn.bootstrapTable.defaults,{formatLoadingMessage:function(){return"Chargement en cours..."},formatRecordsPerPage:function(a){return a+" entrées par page"},formatShowingRows:function(a,b,c){return"Affiche de"+a+" à "+b+" sur "+c+" lignes"},formatSearch:function(){return"Recherche"},formatNoMatches:function(){return"Pas de fichiers trouvés"}})}(jQuery);
|
||||
@@ -0,0 +1,7 @@
|
||||
/*
|
||||
* bootstrap-table - v1.2.3 - 2014-09-12
|
||||
* https://github.com/wenzhixin/bootstrap-table
|
||||
* Copyright (c) 2014 zhixin wen
|
||||
* Licensed MIT License
|
||||
*/
|
||||
!function(a){"use strict";a.extend(a.fn.bootstrapTable.defaults,{formatLoadingMessage:function(){return"Carregando, aguarde…"},formatRecordsPerPage:function(a){return a+" registros por página"},formatShowingRows:function(a,b,c){return"Exibindo "+a+" até "+b+" de "+c+" linhas"},formatSearch:function(){return"Busca"},formatNoMatches:function(){return"Nenhum registro encontrado"}})}(jQuery);
|
||||
@@ -0,0 +1,7 @@
|
||||
/*
|
||||
* bootstrap-table - v1.2.3 - 2014-09-12
|
||||
* https://github.com/wenzhixin/bootstrap-table
|
||||
* Copyright (c) 2014 zhixin wen
|
||||
* Licensed MIT License
|
||||
*/
|
||||
!function(a){"use strict";a.extend(a.fn.bootstrapTable.defaults,{formatLoadingMessage:function(){return"正在努力地加载数据中,请稍候……"},formatRecordsPerPage:function(a){return"每页显示 "+a+" 条记录"},formatShowingRows:function(a,b,c){return"显示第 "+a+" 到第 "+b+" 条记录,总共 "+c+" 条记录"},formatSearch:function(){return"搜索"},formatNoMatches:function(){return"没有找到匹配的记录"}})}(jQuery);
|
||||
@@ -0,0 +1,7 @@
|
||||
/*
|
||||
* bootstrap-table - v1.2.3 - 2014-09-12
|
||||
* https://github.com/wenzhixin/bootstrap-table
|
||||
* Copyright (c) 2014 zhixin wen
|
||||
* Licensed MIT License
|
||||
*/
|
||||
!function(a){"use strict";a.extend(a.fn.bootstrapTable.defaults,{formatLoadingMessage:function(){return"正在努力地載入資料,請稍候……"},formatRecordsPerPage:function(a){return"每頁顯示 "+a+" 項記錄"},formatShowingRows:function(a,b,c){return"顯示第 "+a+" 到第 "+b+" 項記錄,總共 "+c+" 項記錄"},formatSearch:function(){return"搜尋"},formatNoMatches:function(){return"沒有找符合的結果"}})}(jQuery);
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "bootstrap-table",
|
||||
"filename": "bootstrap-table.js",
|
||||
"version": "1.2.2",
|
||||
"filename": "bootstrap-table.min.js",
|
||||
"version": "1.2.3",
|
||||
"description": "Bootstrap table displays data in a tabular format and offers rich support to radio, checkbox, sort, pagination and so on.",
|
||||
"homepage": "http://wenzhixin.net.cn/p/bootstrap-table/",
|
||||
"keywords": [
|
||||
|
||||
@@ -0,0 +1,424 @@
|
||||
@font-face
|
||||
{
|
||||
font-family: 'cc-icons';
|
||||
src: url('../fonts/cc-icons.eot');
|
||||
src: local('cc-icons'), url('../fonts/cc-icons.otf') format('opentype'), url('../fonts/cc-icons.woff') format('woff'),url('../fonts/cc-icons.ttf') format('truetype'), url('../fonts/cc-icons.svg') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.cc
|
||||
{
|
||||
-moz-font-feature-settings: normal;
|
||||
-moz-font-language-override: normal;
|
||||
display: inline-block;
|
||||
font-family: cc-icons;
|
||||
font-size: inherit;
|
||||
font-size-adjust: none;
|
||||
font-stretch: normal;
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
font-weight: normal;
|
||||
line-height: 1;
|
||||
text-rendering: auto;
|
||||
}
|
||||
|
||||
/* makes the font 33% larger relative to the icon container */
|
||||
.cc-lg
|
||||
{
|
||||
font-size: 2.33333333em;
|
||||
line-height: 0.75em;
|
||||
vertical-align: -15%;
|
||||
}
|
||||
.cc-2x
|
||||
{
|
||||
font-size: 3em;
|
||||
}
|
||||
.cc-3x
|
||||
{
|
||||
font-size: 4em;
|
||||
}
|
||||
.cc-4x
|
||||
{
|
||||
font-size: 5em;
|
||||
}
|
||||
.cc-5x
|
||||
{
|
||||
font-size: 6em;
|
||||
}
|
||||
.cc-fw
|
||||
{
|
||||
width: 1.28571429em;
|
||||
text-align: center;
|
||||
}
|
||||
.cc-ul
|
||||
{
|
||||
padding-left: 0;
|
||||
margin-left: 2.14285714em;
|
||||
list-style-type: none;
|
||||
}
|
||||
.cc-ul > li
|
||||
{
|
||||
position: relative;
|
||||
}
|
||||
.cc-li
|
||||
{
|
||||
position: absolute;
|
||||
left: -2.14285714em;
|
||||
width: 2.14285714em;
|
||||
top: 0.14285714em;
|
||||
text-align: center;
|
||||
}
|
||||
.cc-li.cc-lg
|
||||
{
|
||||
left: -1.85714286em;
|
||||
}
|
||||
.cc-border
|
||||
{
|
||||
padding: .2em .25em .15em;
|
||||
border: solid 0.08em #eeeeee;
|
||||
border-radius: .1em;
|
||||
}
|
||||
.pull-right
|
||||
{
|
||||
float: right;
|
||||
}
|
||||
.pull-left
|
||||
{
|
||||
float: left;
|
||||
}
|
||||
.cc.pull-left
|
||||
{
|
||||
margin-right: .3em;
|
||||
}
|
||||
.cc.pull-right
|
||||
{
|
||||
margin-left: .3em;
|
||||
}
|
||||
.cc-spin
|
||||
{
|
||||
-webkit-animation: cc-spin 2s infinite linear;
|
||||
animation: cc-spin 2s infinite linear;
|
||||
}
|
||||
@-webkit-keyframes cc-spin
|
||||
{
|
||||
0%
|
||||
{
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100%
|
||||
{
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@keyframes cc-spin
|
||||
{
|
||||
0%
|
||||
{
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100%
|
||||
{
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
.cc-rotate-90
|
||||
{
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
||||
-webkit-transform: rotate(90deg);
|
||||
-ms-transform: rotate(90deg);
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.cc-rotate-180
|
||||
{
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
||||
-webkit-transform: rotate(180deg);
|
||||
-ms-transform: rotate(180deg);
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
.cc-rotate-270
|
||||
{
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
||||
-webkit-transform: rotate(270deg);
|
||||
-ms-transform: rotate(270deg);
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
.cc-flip-horizontal
|
||||
{
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
|
||||
-webkit-transform: scale(-1, 1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(-1, 1);
|
||||
}
|
||||
.cc-flip-vertical
|
||||
{
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
|
||||
-webkit-transform: scale(1, -1);
|
||||
-ms-transform: scale(1, -1);
|
||||
transform: scale(1, -1);
|
||||
}
|
||||
:root .cc-rotate-90,
|
||||
:root .cc-rotate-180,
|
||||
:root .cc-rotate-270,
|
||||
:root .cc-flip-horizontal,
|
||||
:root .cc-flip-vertical
|
||||
{
|
||||
filter: none;
|
||||
}
|
||||
.cc-stack
|
||||
{
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 2em;
|
||||
height: 2em;
|
||||
line-height: 2em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.cc-stack-1x,
|
||||
.cc-stack-2x
|
||||
{
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
.cc-stack-1x
|
||||
{
|
||||
line-height: inherit;
|
||||
}
|
||||
.cc-stack-2x
|
||||
{
|
||||
font-size: 2em;
|
||||
}
|
||||
.cc-inverse
|
||||
{
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
/*===========================
|
||||
Round Icons
|
||||
===========================*/
|
||||
|
||||
/*Share Alike*/
|
||||
.cc-sa:before
|
||||
{
|
||||
content: "\0061";
|
||||
}
|
||||
/*Attribution*/
|
||||
.cc-by:before
|
||||
{
|
||||
content: "\0062";
|
||||
}
|
||||
/* CC */
|
||||
.cc-cc:before
|
||||
{
|
||||
content: "\0063";
|
||||
}
|
||||
|
||||
/* Non Derivative */
|
||||
.cc-nd:before
|
||||
{
|
||||
content: "\0064";
|
||||
}
|
||||
|
||||
/* Non Commercial Euro */
|
||||
.cc-nc-eu:before
|
||||
{
|
||||
content: "\0065";
|
||||
}
|
||||
|
||||
/* Non Commercial Japan Yen */
|
||||
.cc-nc-jp:before
|
||||
{
|
||||
content: "\006A";
|
||||
}
|
||||
|
||||
/* Sampling */
|
||||
.cc-sampling:before
|
||||
{
|
||||
content: "\006D";
|
||||
}
|
||||
|
||||
/* Non Commercial */
|
||||
.cc-nc:before
|
||||
{
|
||||
content: "\006E";
|
||||
}
|
||||
|
||||
/* Zero */
|
||||
.cc-zero:before
|
||||
{
|
||||
content: "\006F";
|
||||
}
|
||||
|
||||
/* Public Domain */
|
||||
.cc-pd:before
|
||||
{
|
||||
content: "\0070";
|
||||
}
|
||||
|
||||
/* Public Domain Alternative */
|
||||
.cc-pd-alt:before
|
||||
{
|
||||
content: "\0071";
|
||||
}
|
||||
|
||||
.cc-remix:before
|
||||
{
|
||||
content: "\0072";
|
||||
}
|
||||
/* Share*/
|
||||
.cc-share:before
|
||||
{
|
||||
content: "\0073";
|
||||
}
|
||||
|
||||
/*===========================
|
||||
Banners
|
||||
===========================*/
|
||||
|
||||
/* Some Rights Reserved */
|
||||
.cc-srr:before
|
||||
{
|
||||
content: "\0041";
|
||||
}
|
||||
|
||||
.cc-BY:before
|
||||
{
|
||||
content: "\0042";
|
||||
}
|
||||
|
||||
/* Creative Commons Logo */
|
||||
.cc-logo:before
|
||||
{
|
||||
content: "\0043";
|
||||
}
|
||||
|
||||
.cc-by-nd:before
|
||||
{
|
||||
content: "\0044";
|
||||
}
|
||||
|
||||
.cc-by-nc-eu:before
|
||||
{
|
||||
content: "\0045";
|
||||
}
|
||||
|
||||
.cc-by-nc-nd-eu:before
|
||||
{
|
||||
content: "\0046";
|
||||
}
|
||||
|
||||
.cc-by-nc-sa-eu:before
|
||||
{
|
||||
content: "\0047";
|
||||
}
|
||||
|
||||
.cc-by-nc-jp:before
|
||||
{
|
||||
content: "\004A";
|
||||
}
|
||||
|
||||
.cc-by-nc-nd-jp:before
|
||||
{
|
||||
content: "\004B";
|
||||
}
|
||||
|
||||
.cc-by-nc-sa-jp:before
|
||||
{
|
||||
content: "\004C";
|
||||
}
|
||||
|
||||
.cc-by-nc-sa:before
|
||||
{
|
||||
content: "\004D";
|
||||
}
|
||||
|
||||
.cc-by-nc:before
|
||||
{
|
||||
content: "\004E";
|
||||
}
|
||||
|
||||
.cc-publicdomain:before
|
||||
{
|
||||
content: "\004F";
|
||||
}
|
||||
|
||||
.cc-by-nc-nd:before
|
||||
{
|
||||
content: "\0052";
|
||||
}
|
||||
|
||||
.cc-by-sa:before
|
||||
{
|
||||
content: "\0053";
|
||||
}
|
||||
|
||||
/*===========================
|
||||
Small Banner
|
||||
===========================*/
|
||||
|
||||
/* Zero with Public Domain */
|
||||
.cc-ZERO:before,
|
||||
.cc-zero-public:before
|
||||
{
|
||||
content: "\0030";
|
||||
}
|
||||
/* Some Rights Reserved */
|
||||
.cc-ONE:before,
|
||||
.cc-SRR:before
|
||||
{
|
||||
content: "\0031";
|
||||
}
|
||||
/* CC-BY */
|
||||
.cc-TWO:before,
|
||||
.cc-small-by:before
|
||||
{
|
||||
content: "\0032";
|
||||
}
|
||||
/* CC-BY-SA */
|
||||
.cc-THREE:before,
|
||||
.cc-BY-SA:before
|
||||
{
|
||||
content: "\0033";
|
||||
}
|
||||
/* CC-BY-ND */
|
||||
.cc-FOUR:before,
|
||||
.cc-BY-SA-ND:before
|
||||
{
|
||||
content: "\0034";
|
||||
}
|
||||
/* CC-BY-NC */
|
||||
.cc-FIVE:before,
|
||||
.cc-BY-NC:before
|
||||
{
|
||||
content: "\0035";
|
||||
}
|
||||
/* CC-BY-NC-SA */
|
||||
.cc-SIX:before,
|
||||
.cc-BY-NC-SA:before
|
||||
{
|
||||
content: "\0036";
|
||||
}
|
||||
/* CC-BY-NC-ND */
|
||||
.cc-SEVEN:before,
|
||||
.cc-BY-NC-ND:before
|
||||
{
|
||||
content: "\0037";
|
||||
}
|
||||
/* CC-BLANK */
|
||||
.cc-EIGHT:before,
|
||||
.cc-blank:before
|
||||
{
|
||||
content: "\0038";
|
||||
}
|
||||
/* Public Domain */
|
||||
.cc-NINE:before,
|
||||
.cc-public:before
|
||||
{
|
||||
content: "\0039";
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
@font-face{font-family:cc-icons;src:url(../fonts/cc-icons.eot);src:local('cc-icons'),url(../fonts/cc-icons.otf) format('opentype'),url(../fonts/cc-icons.woff) format('woff'),url(../fonts/cc-icons.ttf) format('truetype'),url(../fonts/cc-icons.svg) format('svg');font-weight:400;font-style:normal}.cc{-moz-font-feature-settings:normal;-moz-font-language-override:normal;display:inline-block;font-family:cc-icons;font-size:inherit;font-size-adjust:none;font-stretch:normal;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-rendering:auto}.cc-lg{font-size:2.33333333em;line-height:.75em;vertical-align:-15%}.cc-2x{font-size:3em}.cc-3x{font-size:4em}.cc-4x{font-size:5em}.cc-5x{font-size:6em}.cc-fw{width:1.28571429em;text-align:center}.cc-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.cc-ul>li{position:relative}.cc-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.cc-li.cc-lg{left:-1.85714286em}.cc-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.cc.pull-left{margin-right:.3em}.cc.pull-right{margin-left:.3em}.cc-spin{-webkit-animation:cc-spin 2s infinite linear;animation:cc-spin 2s infinite linear}@-webkit-keyframes cc-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes cc-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.cc-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.cc-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.cc-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.cc-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.cc-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .cc-flip-horizontal,:root .cc-flip-vertical,:root .cc-rotate-180,:root .cc-rotate-270,:root .cc-rotate-90{filter:none}.cc-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.cc-stack-1x,.cc-stack-2x{position:absolute;left:0;width:100%;text-align:center}.cc-stack-1x{line-height:inherit}.cc-stack-2x{font-size:2em}.cc-inverse{color:#fff}.cc-sa:before{content:"\0061"}.cc-by:before{content:"\0062"}.cc-cc:before{content:"\0063"}.cc-nd:before{content:"\0064"}.cc-nc-eu:before{content:"\0065"}.cc-nc-jp:before{content:"\006A"}.cc-sampling:before{content:"\006D"}.cc-nc:before{content:"\006E"}.cc-zero:before{content:"\006F"}.cc-pd:before{content:"\0070"}.cc-pd-alt:before{content:"\0071"}.cc-remix:before{content:"\0072"}.cc-share:before{content:"\0073"}.cc-srr:before{content:"\0041"}.cc-BY:before{content:"\0042"}.cc-logo:before{content:"\0043"}.cc-by-nd:before{content:"\0044"}.cc-by-nc-eu:before{content:"\0045"}.cc-by-nc-nd-eu:before{content:"\0046"}.cc-by-nc-sa-eu:before{content:"\0047"}.cc-by-nc-jp:before{content:"\004A"}.cc-by-nc-nd-jp:before{content:"\004B"}.cc-by-nc-sa-jp:before{content:"\004C"}.cc-by-nc-sa:before{content:"\004D"}.cc-by-nc:before{content:"\004E"}.cc-publicdomain:before{content:"\004F"}.cc-by-nc-nd:before{content:"\0052"}.cc-by-sa:before{content:"\0053"}.cc-ZERO:before,.cc-zero-public:before{content:"\0030"}.cc-ONE:before,.cc-SRR:before{content:"\0031"}.cc-TWO:before,.cc-small-by:before{content:"\0032"}.cc-BY-SA:before,.cc-THREE:before{content:"\0033"}.cc-BY-SA-ND:before,.cc-FOUR:before{content:"\0034"}.cc-BY-NC:before,.cc-FIVE:before{content:"\0035"}.cc-BY-NC-SA:before,.cc-SIX:before{content:"\0036"}.cc-BY-NC-ND:before,.cc-SEVEN:before{content:"\0037"}.cc-EIGHT:before,.cc-blank:before{content:"\0038"}.cc-NINE:before,.cc-public:before{content:"\0039"}
|
||||
|
After Width: | Height: | Size: 267 KiB |
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "cc-icons",
|
||||
"description": "Creative Commons Web Font.",
|
||||
"version": "1.0.1",
|
||||
"version": "1.2.0",
|
||||
"homepage": "http://cc-icons.github.io/",
|
||||
"filename": "css/cc-icons.min.css",
|
||||
"keywords": [
|
||||
@@ -35,18 +35,18 @@
|
||||
"url": "https://github.com/cc-icons/cc-icons.git"
|
||||
},
|
||||
"github": "https://github.com/cc-icons/cc-icons/",
|
||||
"autoupdate": {
|
||||
"source": "git",
|
||||
"target": "git://github.com/cc-icons/cc-icons.git",
|
||||
"basePath": "",
|
||||
"files": [
|
||||
"ccs/cc-icons-min.css",
|
||||
"css/cc-icons.css",
|
||||
"fonts/cc-icons.eot",
|
||||
"fonts/cc-icons.otf",
|
||||
"fonts/cc-icons.svg",
|
||||
"fonts/cc-icons.ttf",
|
||||
"fonts/cc-icons.woff"
|
||||
]
|
||||
"autoupdate": {
|
||||
"source": "git",
|
||||
"target": "git://github.com/cc-icons/cc-icons.git",
|
||||
"basePath": "",
|
||||
"files": [
|
||||
"ccs/cc-icons.min.css",
|
||||
"css/cc-icons.css",
|
||||
"fonts/cc-icons.eot",
|
||||
"fonts/cc-icons.otf",
|
||||
"fonts/cc-icons.svg",
|
||||
"fonts/cc-icons.ttf",
|
||||
"fonts/cc-icons.woff"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "speakingurl",
|
||||
"version": "0.11.0",
|
||||
"version": "0.12.0",
|
||||
"description": "Generate a slug with a lot of options; create of so called 'static' or 'Clean URL' or 'Pretty URL' or 'nice-looking URL' or 'Speaking URL' or 'user-friendly URL' or 'SEO-friendly URL' from a string.",
|
||||
"homepage": "http://pid.github.io/speakingurl/",
|
||||
"github": "http://github.com/pid/speakingurl",
|
||||
|
||||
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 665 B |
@@ -0,0 +1,744 @@
|
||||
.vis .overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
/* Must be displayed above for example selected Timeline items */
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.vis-active {
|
||||
box-shadow: 0 0 10px #86d5f8;
|
||||
}
|
||||
|
||||
.vis.timeline {
|
||||
}
|
||||
|
||||
|
||||
.vis.timeline.root {
|
||||
position: relative;
|
||||
border: 1px solid #bfbfbf;
|
||||
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.vis.timeline .vispanel {
|
||||
position: absolute;
|
||||
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.vis.timeline .vispanel.center,
|
||||
.vis.timeline .vispanel.left,
|
||||
.vis.timeline .vispanel.right,
|
||||
.vis.timeline .vispanel.top,
|
||||
.vis.timeline .vispanel.bottom {
|
||||
border: 1px #bfbfbf;
|
||||
}
|
||||
|
||||
.vis.timeline .vispanel.center,
|
||||
.vis.timeline .vispanel.left,
|
||||
.vis.timeline .vispanel.right {
|
||||
border-top-style: solid;
|
||||
border-bottom-style: solid;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.vis.timeline .vispanel.center,
|
||||
.vis.timeline .vispanel.top,
|
||||
.vis.timeline .vispanel.bottom {
|
||||
border-left-style: solid;
|
||||
border-right-style: solid;
|
||||
}
|
||||
|
||||
.vis.timeline .background {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.vis.timeline .vispanel > .content {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.vis.timeline .vispanel .shadow {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
box-shadow: 0 0 10px rgba(0,0,0,0.8);
|
||||
/* TODO: find a nice way to ensure shadows are drawn on top of items
|
||||
z-index: 1;
|
||||
*/
|
||||
}
|
||||
|
||||
.vis.timeline .vispanel .shadow.top {
|
||||
top: -1px;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.vis.timeline .vispanel .shadow.bottom {
|
||||
bottom: -1px;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.vis.timeline .labelset {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
|
||||
overflow: hidden;
|
||||
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.vis.timeline .labelset .vlabel {
|
||||
position: relative;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
color: #4d4d4d;
|
||||
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.vis.timeline .labelset .vlabel {
|
||||
border-bottom: 1px solid #bfbfbf;
|
||||
}
|
||||
|
||||
.vis.timeline .labelset .vlabel:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.vis.timeline .labelset .vlabel .inner {
|
||||
display: inline-block;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.vis.timeline .labelset .vlabel .inner.hidden {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
.vis.timeline .itemset {
|
||||
position: relative;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.vis.timeline .itemset .background,
|
||||
.vis.timeline .itemset .foreground {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.vis.timeline .axis {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 0;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.vis.timeline .foreground .group {
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
border-bottom: 1px solid #bfbfbf;
|
||||
}
|
||||
|
||||
.vis.timeline .foreground .group:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
|
||||
.vis.timeline .item {
|
||||
position: absolute;
|
||||
color: #1A1A1A;
|
||||
border-color: #97B0F8;
|
||||
border-width: 1px;
|
||||
background-color: #D5DDF6;
|
||||
display: inline-block;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.vis.timeline .item.selected {
|
||||
border-color: #FFC200;
|
||||
background-color: #FFF785;
|
||||
|
||||
/* z-index must be higher than the z-index of custom time bar and current time bar */
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.vis.timeline .editable .item.selected {
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
.vis.timeline .item.point.selected {
|
||||
background-color: #FFF785;
|
||||
}
|
||||
|
||||
.vis.timeline .item.box {
|
||||
text-align: center;
|
||||
border-style: solid;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.vis.timeline .item.point {
|
||||
background: none;
|
||||
}
|
||||
|
||||
.vis.timeline .item.dot {
|
||||
position: absolute;
|
||||
padding: 0;
|
||||
border-width: 4px;
|
||||
border-style: solid;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.vis.timeline .item.range {
|
||||
border-style: solid;
|
||||
border-radius: 2px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.vis.timeline .item.background {
|
||||
overflow: hidden;
|
||||
border: none;
|
||||
background-color: rgba(213, 221, 246, 0.4);
|
||||
box-sizing: border-box;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.vis.timeline .item.range .content {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.vis.timeline .item.background .content {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
max-width: 100%;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.vis.timeline .item.line {
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
width: 0;
|
||||
border-left-width: 1px;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.vis.timeline .item .content {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.vis.timeline .item .delete {
|
||||
background: url('img/timeline/delete.png') no-repeat top center;
|
||||
position: absolute;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
top: 0;
|
||||
right: -24px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.vis.timeline .item.range .drag-left {
|
||||
position: absolute;
|
||||
width: 24px;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: -4px;
|
||||
|
||||
cursor: w-resize;
|
||||
}
|
||||
|
||||
.vis.timeline .item.range .drag-right {
|
||||
position: absolute;
|
||||
width: 24px;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
right: -4px;
|
||||
|
||||
cursor: e-resize;
|
||||
}
|
||||
|
||||
.vis.timeline .timeaxis {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.vis.timeline .timeaxis.foreground {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.vis.timeline .timeaxis.background {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.vis.timeline .timeaxis .text {
|
||||
position: absolute;
|
||||
color: #4d4d4d;
|
||||
padding: 3px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.vis.timeline .timeaxis .text.measure {
|
||||
position: absolute;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.vis.timeline .timeaxis .grid.vertical {
|
||||
position: absolute;
|
||||
width: 0;
|
||||
border-right: 1px solid;
|
||||
}
|
||||
|
||||
.vis.timeline .timeaxis .grid.minor {
|
||||
border-color: #e5e5e5;
|
||||
}
|
||||
|
||||
.vis.timeline .timeaxis .grid.major {
|
||||
border-color: #bfbfbf;
|
||||
}
|
||||
|
||||
.vis.timeline .currenttime {
|
||||
background-color: #FF7F6E;
|
||||
width: 2px;
|
||||
z-index: 1;
|
||||
}
|
||||
.vis.timeline .customtime {
|
||||
background-color: #6E94FF;
|
||||
width: 2px;
|
||||
cursor: move;
|
||||
z-index: 1;
|
||||
}
|
||||
.vis.timeline.root {
|
||||
/*
|
||||
-webkit-transition: height .4s ease-in-out;
|
||||
transition: height .4s ease-in-out;
|
||||
*/
|
||||
}
|
||||
|
||||
.vis.timeline .vispanel {
|
||||
/*
|
||||
-webkit-transition: height .4s ease-in-out, top .4s ease-in-out;
|
||||
transition: height .4s ease-in-out, top .4s ease-in-out;
|
||||
*/
|
||||
}
|
||||
|
||||
.vis.timeline .axis {
|
||||
/*
|
||||
-webkit-transition: top .4s ease-in-out;
|
||||
transition: top .4s ease-in-out;
|
||||
*/
|
||||
}
|
||||
|
||||
/* TODO: get animation working nicely
|
||||
|
||||
.vis.timeline .item {
|
||||
-webkit-transition: top .4s ease-in-out;
|
||||
transition: top .4s ease-in-out;
|
||||
}
|
||||
|
||||
.vis.timeline .item.line {
|
||||
-webkit-transition: height .4s ease-in-out, top .4s ease-in-out;
|
||||
transition: height .4s ease-in-out, top .4s ease-in-out;
|
||||
}
|
||||
/**/
|
||||
|
||||
.vis.timeline .vispanel.background.horizontal .grid.horizontal {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 0;
|
||||
border-bottom: 1px solid;
|
||||
}
|
||||
|
||||
.vis.timeline .vispanel.background.horizontal .grid.minor {
|
||||
border-color: #e5e5e5;
|
||||
}
|
||||
|
||||
.vis.timeline .vispanel.background.horizontal .grid.major {
|
||||
border-color: #bfbfbf;
|
||||
}
|
||||
|
||||
|
||||
.vis.timeline .dataaxis .yAxis.major {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
color: #4d4d4d;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.vis.timeline .dataaxis .yAxis.major.measure{
|
||||
padding: 0px 0px 0px 0px;
|
||||
margin: 0px 0px 0px 0px;
|
||||
visibility: hidden;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
|
||||
.vis.timeline .dataaxis .yAxis.minor{
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
color: #bebebe;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.vis.timeline .dataaxis .yAxis.minor.measure{
|
||||
padding: 0px 0px 0px 0px;
|
||||
margin: 0px 0px 0px 0px;
|
||||
visibility: hidden;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
|
||||
.vis.timeline .legend {
|
||||
background-color: rgba(247, 252, 255, 0.65);
|
||||
padding: 5px;
|
||||
border-color: #b3b3b3;
|
||||
border-style:solid;
|
||||
border-width: 1px;
|
||||
box-shadow: 2px 2px 10px rgba(154, 154, 154, 0.55);
|
||||
}
|
||||
|
||||
.vis.timeline .legendText {
|
||||
/*font-size: 10px;*/
|
||||
white-space: nowrap;
|
||||
display: inline-block
|
||||
}
|
||||
.vis.timeline .graphGroup0 {
|
||||
fill:#4f81bd;
|
||||
fill-opacity:0;
|
||||
stroke-width:2px;
|
||||
stroke: #4f81bd;
|
||||
}
|
||||
|
||||
.vis.timeline .graphGroup1 {
|
||||
fill:#f79646;
|
||||
fill-opacity:0;
|
||||
stroke-width:2px;
|
||||
stroke: #f79646;
|
||||
}
|
||||
|
||||
.vis.timeline .graphGroup2 {
|
||||
fill: #8c51cf;
|
||||
fill-opacity:0;
|
||||
stroke-width:2px;
|
||||
stroke: #8c51cf;
|
||||
}
|
||||
|
||||
.vis.timeline .graphGroup3 {
|
||||
fill: #75c841;
|
||||
fill-opacity:0;
|
||||
stroke-width:2px;
|
||||
stroke: #75c841;
|
||||
}
|
||||
|
||||
.vis.timeline .graphGroup4 {
|
||||
fill: #ff0100;
|
||||
fill-opacity:0;
|
||||
stroke-width:2px;
|
||||
stroke: #ff0100;
|
||||
}
|
||||
|
||||
.vis.timeline .graphGroup5 {
|
||||
fill: #37d8e6;
|
||||
fill-opacity:0;
|
||||
stroke-width:2px;
|
||||
stroke: #37d8e6;
|
||||
}
|
||||
|
||||
.vis.timeline .graphGroup6 {
|
||||
fill: #042662;
|
||||
fill-opacity:0;
|
||||
stroke-width:2px;
|
||||
stroke: #042662;
|
||||
}
|
||||
|
||||
.vis.timeline .graphGroup7 {
|
||||
fill:#00ff26;
|
||||
fill-opacity:0;
|
||||
stroke-width:2px;
|
||||
stroke: #00ff26;
|
||||
}
|
||||
|
||||
.vis.timeline .graphGroup8 {
|
||||
fill:#ff00ff;
|
||||
fill-opacity:0;
|
||||
stroke-width:2px;
|
||||
stroke: #ff00ff;
|
||||
}
|
||||
|
||||
.vis.timeline .graphGroup9 {
|
||||
fill: #8f3938;
|
||||
fill-opacity:0;
|
||||
stroke-width:2px;
|
||||
stroke: #8f3938;
|
||||
}
|
||||
|
||||
.vis.timeline .fill {
|
||||
fill-opacity:0.1;
|
||||
stroke: none;
|
||||
}
|
||||
|
||||
|
||||
.vis.timeline .bar {
|
||||
fill-opacity:0.5;
|
||||
stroke-width:1px;
|
||||
}
|
||||
|
||||
.vis.timeline .point {
|
||||
stroke-width:2px;
|
||||
fill-opacity:1.0;
|
||||
}
|
||||
|
||||
|
||||
.vis.timeline .legendBackground {
|
||||
stroke-width:1px;
|
||||
fill-opacity:0.9;
|
||||
fill: #ffffff;
|
||||
stroke: #c2c2c2;
|
||||
}
|
||||
|
||||
|
||||
.vis.timeline .outline {
|
||||
stroke-width:1px;
|
||||
fill-opacity:1;
|
||||
fill: #ffffff;
|
||||
stroke: #e5e5e5;
|
||||
}
|
||||
|
||||
.vis.timeline .iconFill {
|
||||
fill-opacity:0.3;
|
||||
stroke: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
div.network-manipulationDiv {
|
||||
border-width: 0;
|
||||
border-bottom: 1px;
|
||||
border-style:solid;
|
||||
border-color: #d6d9d8;
|
||||
background: #ffffff; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #ffffff 0%, #fcfcfc 48%, #fafafa 50%, #fcfcfc 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(48%,#fcfcfc), color-stop(50%,#fafafa), color-stop(100%,#fcfcfc)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fcfcfc',GradientType=0 ); /* IE6-9 */
|
||||
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
div.network-manipulation-editMode {
|
||||
position:absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
height: 30px;
|
||||
margin-top:20px;
|
||||
}
|
||||
|
||||
div.network-manipulation-closeDiv {
|
||||
position:absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
|
||||
background-position: 20px 3px;
|
||||
background-repeat: no-repeat;
|
||||
background-image: url("img/network/cross.png");
|
||||
cursor: pointer;
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
div.network-manipulation-closeDiv:hover {
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
span.network-manipulationUI {
|
||||
font-family: verdana;
|
||||
font-size: 12px;
|
||||
-moz-border-radius: 15px;
|
||||
border-radius: 15px;
|
||||
display:inline-block;
|
||||
background-position: 0px 0px;
|
||||
background-repeat:no-repeat;
|
||||
height:24px;
|
||||
margin: -14px 0px 0px 10px;
|
||||
vertical-align:middle;
|
||||
cursor: pointer;
|
||||
padding: 0px 8px 0px 8px;
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
span.network-manipulationUI:hover {
|
||||
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.20);
|
||||
}
|
||||
|
||||
span.network-manipulationUI:active {
|
||||
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.50);
|
||||
}
|
||||
|
||||
span.network-manipulationUI.back {
|
||||
background-image: url("img/network/backIcon.png");
|
||||
}
|
||||
|
||||
span.network-manipulationUI.none:hover {
|
||||
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.0);
|
||||
cursor: default;
|
||||
}
|
||||
span.network-manipulationUI.none:active {
|
||||
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.0);
|
||||
}
|
||||
span.network-manipulationUI.none {
|
||||
padding: 0;
|
||||
}
|
||||
span.network-manipulationUI.notification{
|
||||
margin: 2px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
span.network-manipulationUI.add {
|
||||
background-image: url("img/network/addNodeIcon.png");
|
||||
}
|
||||
|
||||
span.network-manipulationUI.edit {
|
||||
background-image: url("img/network/editIcon.png");
|
||||
}
|
||||
|
||||
span.network-manipulationUI.edit.editmode {
|
||||
background-color: #fcfcfc;
|
||||
border-style:solid;
|
||||
border-width:1px;
|
||||
border-color: #cccccc;
|
||||
}
|
||||
|
||||
span.network-manipulationUI.connect {
|
||||
background-image: url("img/network/connectIcon.png");
|
||||
}
|
||||
|
||||
span.network-manipulationUI.delete {
|
||||
background-image: url("img/network/deleteIcon.png");
|
||||
}
|
||||
/* top right bottom left */
|
||||
span.network-manipulationLabel {
|
||||
margin: 0px 0px 0px 23px;
|
||||
line-height: 25px;
|
||||
}
|
||||
div.network-seperatorLine {
|
||||
display:inline-block;
|
||||
width:1px;
|
||||
height:20px;
|
||||
background-color: #bdbdbd;
|
||||
margin: 5px 7px 0px 15px;
|
||||
}
|
||||
|
||||
div.network-navigation_wrapper {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
div.network-navigation {
|
||||
width:34px;
|
||||
height:34px;
|
||||
-moz-border-radius: 17px;
|
||||
border-radius: 17px;
|
||||
position:absolute;
|
||||
display:inline-block;
|
||||
background-position: 2px 2px;
|
||||
background-repeat:no-repeat;
|
||||
cursor: pointer;
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
div.network-navigation:hover {
|
||||
box-shadow: 0px 0px 3px 3px rgba(56, 207, 21, 0.30);
|
||||
}
|
||||
|
||||
div.network-navigation:active {
|
||||
box-shadow: 0px 0px 1px 3px rgba(56, 207, 21, 0.95);
|
||||
}
|
||||
|
||||
div.network-navigation.up {
|
||||
background-image: url("img/network/upArrow.png");
|
||||
bottom:50px;
|
||||
left:55px;
|
||||
}
|
||||
div.network-navigation.down {
|
||||
background-image: url("img/network/downArrow.png");
|
||||
bottom:10px;
|
||||
left:55px;
|
||||
}
|
||||
div.network-navigation.left {
|
||||
background-image: url("img/network/leftArrow.png");
|
||||
bottom:10px;
|
||||
left:15px;
|
||||
}
|
||||
div.network-navigation.right {
|
||||
background-image: url("img/network/rightArrow.png");
|
||||
bottom:10px;
|
||||
left:95px;
|
||||
}
|
||||
div.network-navigation.zoomIn {
|
||||
background-image: url("img/network/plus.png");
|
||||
bottom:10px;
|
||||
right:15px;
|
||||
}
|
||||
div.network-navigation.zoomOut {
|
||||
background-image: url("img/network/minus.png");
|
||||
bottom:10px;
|
||||
right:55px;
|
||||
}
|
||||
div.network-navigation.zoomExtends {
|
||||
background-image: url("img/network/zoomExtends.png");
|
||||
bottom:50px;
|
||||
right:15px;
|
||||
}
|
||||
@@ -9,7 +9,7 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
"version": "3.4.1",
|
||||
"version": "3.4.2",
|
||||
"filename": "vis.min.js",
|
||||
"description": "A dynamic, browser-based visualization library.",
|
||||
"homepage": "http://visjs.org/",
|
||||
|
||||