With the categories plugin you can plot categories/textual data easily.
51 | 52 |├── asset ├── img │ ├── 404.png │ ├── 500.png │ ├── bg1.jpg │ ├── bg2.jpg │ ├── bg3.jpg │ ├── bg4.jpg │ ├── ss.png │ ├── avatar.jpg │ ├── g3986.png │ ├── logomi.png │ ├── avatar2.png │ ├── avatar3.png │ ├── controls.png │ ├── left-bg.png │ ├── left-bg2.png │ ├── demo-video.png │ ├── sprite-skin-flat.png │ ├── sprite-skin-nice.png │ ├── sprite-skin-modern.png │ ├── sprite-skin-simple.png │ └── bigplay.svg ├── media │ ├── demo.mp3 │ └── demo.mp4 ├── fonts │ ├── FontAwesome.otf │ ├── Simple-Line-Icons.eot │ ├── Simple-Line-Icons.ttf │ ├── Simple-Line-Icons.woff │ ├── Simple-Line-Icons.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── js │ └── plugins │ │ ├── flashmediaelement.swf │ │ ├── flot │ │ ├── examples │ │ │ ├── .DS_Store │ │ │ ├── background.png │ │ │ ├── ajax │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ └── data-eu-gdp-growth-5.json │ │ │ ├── navigate │ │ │ │ ├── arrow-up.gif │ │ │ │ ├── arrow-down.gif │ │ │ │ ├── arrow-left.gif │ │ │ │ └── arrow-right.gif │ │ │ ├── axes-time-zones │ │ │ │ └── tz │ │ │ │ │ ├── southamerica │ │ │ │ │ ├── factory │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ ├── pacificnew │ │ │ │ │ ├── systemv │ │ │ │ │ └── etcetera │ │ │ ├── image │ │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ │ └── index.html │ │ │ ├── shared │ │ │ │ └── jquery-ui │ │ │ │ │ └── jquery-ui.min.css │ │ │ ├── categories │ │ │ │ └── index.html │ │ │ ├── basic-usage │ │ │ │ └── index.html │ │ │ ├── examples.css │ │ │ ├── threshold │ │ │ │ └── index.html │ │ │ ├── symbols │ │ │ │ └── index.html │ │ │ ├── series-types │ │ │ │ └── index.html │ │ │ ├── basic-options │ │ │ │ └── index.html │ │ │ ├── resize │ │ │ │ └── index.html │ │ │ ├── annotating │ │ │ │ └── index.html │ │ │ ├── stacking │ │ │ │ └── index.html │ │ │ ├── axes-interacting │ │ │ │ └── index.html │ │ │ └── realtime │ │ │ │ └── index.html │ │ ├── LICENSE.txt │ │ ├── jquery.flot.symbol.min.js │ │ ├── jquery.flot.threshold.min.js │ │ ├── jquery.flot.crosshair.min.js │ │ ├── jquery.flot.fillbetween.min.js │ │ ├── jquery.flot.resize.min.js │ │ ├── jquery.flot.stack.min.js │ │ ├── jquery.flot.categories.min.js │ │ ├── jquery.flot.image.min.js │ │ ├── jquery.flot.symbol.js │ │ └── jquery.colorhelpers.min.js │ │ ├── silverlightmediaelement.xap │ │ ├── maps │ │ └── continents │ │ │ └── readme.txt │ │ ├── datatables.bootstrap.min.js │ │ ├── jquery.vmap.sampledata.js │ │ └── html5shiv.js └── css │ └── plugins │ ├── icheck │ └── skins │ │ ├── flat │ │ ├── aero.png │ │ ├── blue.png │ │ ├── flat.png │ │ ├── green.png │ │ ├── grey.png │ │ ├── pink.png │ │ ├── red.png │ │ ├── aero@2x.png │ │ ├── blue@2x.png │ │ ├── flat@2x.png │ │ ├── grey@2x.png │ │ ├── orange.png │ │ ├── pink@2x.png │ │ ├── purple.png │ │ ├── red@2x.png │ │ ├── yellow.png │ │ ├── green@2x.png │ │ ├── orange@2x.png │ │ ├── purple@2x.png │ │ ├── yellow@2x.png │ │ ├── flat.css │ │ ├── red.css │ │ ├── aero.css │ │ ├── blue.css │ │ ├── grey.css │ │ ├── pink.css │ │ ├── green.css │ │ ├── orange.css │ │ ├── purple.css │ │ └── yellow.css │ │ ├── line │ │ ├── line.png │ │ ├── line@2x.png │ │ ├── line.css │ │ ├── red.css │ │ ├── aero.css │ │ ├── blue.css │ │ ├── grey.css │ │ ├── pink.css │ │ ├── green.css │ │ ├── orange.css │ │ ├── purple.css │ │ └── yellow.css │ │ ├── square │ │ ├── red.png │ │ ├── aero.png │ │ ├── blue.png │ │ ├── green.png │ │ ├── grey.png │ │ ├── pink.png │ │ ├── aero@2x.png │ │ ├── blue@2x.png │ │ ├── green@2x.png │ │ ├── grey@2x.png │ │ ├── orange.png │ │ ├── pink@2x.png │ │ ├── purple.png │ │ ├── red@2x.png │ │ ├── square.png │ │ ├── yellow.png │ │ ├── orange@2x.png │ │ ├── purple@2x.png │ │ ├── square@2x.png │ │ ├── yellow@2x.png │ │ ├── square.css │ │ ├── red.css │ │ ├── aero.css │ │ ├── blue.css │ │ ├── grey.css │ │ ├── pink.css │ │ ├── green.css │ │ ├── orange.css │ │ ├── purple.css │ │ └── yellow.css │ │ ├── minimal │ │ ├── aero.png │ │ ├── blue.png │ │ ├── grey.png │ │ ├── pink.png │ │ ├── red.png │ │ ├── aero@2x.png │ │ ├── blue@2x.png │ │ ├── green.png │ │ ├── grey@2x.png │ │ ├── minimal.png │ │ ├── orange.png │ │ ├── pink@2x.png │ │ ├── purple.png │ │ ├── red@2x.png │ │ ├── yellow.png │ │ ├── green@2x.png │ │ ├── orange@2x.png │ │ ├── purple@2x.png │ │ ├── yellow@2x.png │ │ ├── minimal@2x.png │ │ ├── minimal.css │ │ ├── red.css │ │ ├── aero.css │ │ ├── blue.css │ │ ├── grey.css │ │ ├── pink.css │ │ ├── green.css │ │ ├── orange.css │ │ ├── purple.css │ │ └── yellow.css │ │ ├── polaris │ │ ├── polaris.png │ │ ├── polaris@2x.png │ │ └── polaris.css │ │ ├── futurico │ │ ├── futurico.png │ │ ├── futurico@2x.png │ │ └── futurico.css │ │ └── all.css │ ├── typebase.css │ ├── ionrangeslider │ ├── ion.rangeSlider.skinNice.css │ ├── ion.rangeSlider.skinSimple.css │ ├── ion.rangeSlider.skinFlat.css │ └── ion.rangeSlider.skinModern.css │ └── nouislider.min.css ├── README.md ├── LICENSE ├── 404.html ├── 500.html ├── lockscreen-v1.html └── forgotpass.html /asset/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/404.png -------------------------------------------------------------------------------- /asset/img/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/500.png -------------------------------------------------------------------------------- /asset/img/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/bg1.jpg -------------------------------------------------------------------------------- /asset/img/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/bg2.jpg -------------------------------------------------------------------------------- /asset/img/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/bg3.jpg -------------------------------------------------------------------------------- /asset/img/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/bg4.jpg -------------------------------------------------------------------------------- /asset/img/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/ss.png -------------------------------------------------------------------------------- /asset/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/avatar.jpg -------------------------------------------------------------------------------- /asset/img/g3986.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/g3986.png -------------------------------------------------------------------------------- /asset/img/logomi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/logomi.png -------------------------------------------------------------------------------- /asset/media/demo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/media/demo.mp3 -------------------------------------------------------------------------------- /asset/media/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/media/demo.mp4 -------------------------------------------------------------------------------- /asset/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/avatar2.png -------------------------------------------------------------------------------- /asset/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/avatar3.png -------------------------------------------------------------------------------- /asset/img/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/controls.png -------------------------------------------------------------------------------- /asset/img/left-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/left-bg.png -------------------------------------------------------------------------------- /asset/img/left-bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/left-bg2.png -------------------------------------------------------------------------------- /asset/img/demo-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/demo-video.png -------------------------------------------------------------------------------- /asset/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /asset/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /asset/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /asset/img/sprite-skin-modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/sprite-skin-modern.png -------------------------------------------------------------------------------- /asset/img/sprite-skin-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/img/sprite-skin-simple.png -------------------------------------------------------------------------------- /asset/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /asset/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /asset/fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /asset/fonts/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /asset/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /asset/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /asset/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /asset/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /asset/js/plugins/flashmediaelement.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flashmediaelement.swf -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flot/examples/.DS_Store -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/aero.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/blue.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/flat.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/green.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/grey.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/pink.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/red.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/line/line.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/red.png -------------------------------------------------------------------------------- /asset/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /asset/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /asset/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flot/examples/background.png -------------------------------------------------------------------------------- /asset/js/plugins/silverlightmediaelement.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/silverlightmediaelement.xap -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/aero@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/blue@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/flat@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/grey@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/orange.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/pink@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/purple.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/red@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/yellow.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/line/line@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/aero.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/blue.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/grey.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/pink.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/red.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/aero.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/blue.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/green.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/grey.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/pink.png -------------------------------------------------------------------------------- /asset/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/ajax/data-eu-gdp-growth-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9]] 4 | } 5 | -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/green@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/orange@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/purple@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/flat/yellow@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/aero@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/blue@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/green.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/grey@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/minimal.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/orange.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/pink@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/purple.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/red@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/yellow.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/polaris/polaris.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/aero@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/blue@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/green@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/grey@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/orange.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/pink@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/purple.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/red@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/square.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/yellow.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/futurico/futurico.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/green@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/orange@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/purple@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/yellow@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/orange@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/purple@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/square@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/square/yellow@2x.png -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/navigate/arrow-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flot/examples/navigate/arrow-up.gif -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/futurico/futurico@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/minimal/minimal@2x.png -------------------------------------------------------------------------------- /asset/css/plugins/icheck/skins/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/css/plugins/icheck/skins/polaris/polaris@2x.png -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/navigate/arrow-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flot/examples/navigate/arrow-down.gif -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/navigate/arrow-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flot/examples/navigate/arrow-left.gif -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/navigate/arrow-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flot/examples/navigate/arrow-right.gif -------------------------------------------------------------------------------- /asset/js/plugins/maps/continents/readme.txt: -------------------------------------------------------------------------------- 1 | These maps are just extracted from the world map and re-sized to same level as the world map. No extra details, or polygons added. -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/ajax/data-eu-gdp-growth-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2]] 4 | } 5 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/axes-time-zones/tz/southamerica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flot/examples/axes-time-zones/tz/southamerica -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/image/hs-2004-27-a-large-web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gandhi-wibowo/miminium/HEAD/asset/js/plugins/flot/examples/image/hs-2004-27-a-large-web.jpg -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/ajax/data-eu-gdp-growth-3.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5]] 4 | } 5 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/ajax/data-eu-gdp-growth-4.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1]] 4 | } 5 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/ajax/data-usa-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "USA", 3 | "data": [[1999, 4.4], [2000, 3.7], [2001, 0.8], [2002, 1.6], [2003, 2.5], [2004, 3.6], [2005, 2.9], [2006, 2.8], [2007, 2.0], [2008, 1.1]] 4 | } 5 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/ajax/data-eu-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] 4 | } 5 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/ajax/data-japan-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Japan", 3 | "data": [[1999, -0.1], [2000, 2.9], [2001, 0.2], [2002, 0.3], [2003, 1.4], [2004, 2.7], [2005, 1.9], [2006, 2.0], [2007, 2.3], [2008, -0.7]] 4 | } 5 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/ajax/data-eu-gdp-growth-5.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] 4 | } 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # What is it? 2 | miminium is a fully responsive admin template. Based on Bootstrap 3 framework. modern design and full animation. [DEMO](http://akivaron.github.io/miminium/) 3 | 4 |  5 | # License 6 | MIMINIUM is an open source project by isna nur azis that is licensed under MIT. Please feel free to use. :P 7 | -------------------------------------------------------------------------------- /asset/js/plugins/flot/examples/axes-time-zones/tz/factory: -------------------------------------------------------------------------------- 1 | #
2 | # This file is in the public domain, so clarified as of
3 | # 2009-05-17 by Arthur David Olson.
4 |
5 | # For companies who don't want to put time zone specification in
6 | # their installation procedures. When users run date, they'll get the message.
7 | # Also useful for the "comp.sources" version.
8 |
9 | # Zone NAME GMTOFF RULES FORMAT
10 | Zone Factory 0 - "Local time zone must be set--see zic manual page"
11 |
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/axes-time-zones/tz/yearistype.sh:
--------------------------------------------------------------------------------
1 | #! /bin/sh
2 |
3 | : 'This file is in the public domain, so clarified as of'
4 | : '2006-07-17 by Arthur David Olson.'
5 |
6 | case $#-$1 in
7 | 2-|2-0*|2-*[!0-9]*)
8 | echo "$0: wild year - $1" >&2
9 | exit 1 ;;
10 | esac
11 |
12 | case $#-$2 in
13 | 2-even)
14 | case $1 in
15 | *[24680]) exit 0 ;;
16 | *) exit 1 ;;
17 | esac ;;
18 | 2-nonpres|2-nonuspres)
19 | case $1 in
20 | *[02468][048]|*[13579][26]) exit 1 ;;
21 | *) exit 0 ;;
22 | esac ;;
23 | 2-odd)
24 | case $1 in
25 | *[13579]) exit 0 ;;
26 | *) exit 1 ;;
27 | esac ;;
28 | 2-uspres)
29 | case $1 in
30 | *[02468][048]|*[13579][26]) exit 0 ;;
31 | *) exit 1 ;;
32 | esac ;;
33 | 2-*)
34 | echo "$0: wild type - $2" >&2 ;;
35 | esac
36 |
37 | echo "$0: usage is $0 year even|odd|uspres|nonpres|nonuspres" >&2
38 | exit 1
39 |
--------------------------------------------------------------------------------
/asset/img/bigplay.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2015 isna nur azis
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
23 |
--------------------------------------------------------------------------------
/asset/js/plugins/flot/LICENSE.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2007-2014 IOLA and Ole Laursen
2 |
3 | Permission is hereby granted, free of charge, to any person
4 | obtaining a copy of this software and associated documentation
5 | files (the "Software"), to deal in the Software without
6 | restriction, including without limitation the rights to use,
7 | copy, modify, merge, publish, distribute, sublicense, and/or sell
8 | copies of the Software, and to permit persons to whom the
9 | Software is furnished to do so, subject to the following
10 | conditions:
11 |
12 | The above copyright notice and this permission notice shall be
13 | included in all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 | OTHER DEALINGS IN THE SOFTWARE.
23 |
--------------------------------------------------------------------------------
/asset/js/plugins/flot/jquery.flot.symbol.min.js:
--------------------------------------------------------------------------------
1 | /* Javascript plotting library for jQuery, version 0.8.3.
2 |
3 | Copyright (c) 2007-2014 IOLA and Ole Laursen.
4 | Licensed under the MIT license.
5 |
6 | */
7 | (function($){function processRawData(plot,series,datapoints){var handlers={square:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI)/2;ctx.rect(x-size,y-size,size+size,size+size)},diamond:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI/2);ctx.moveTo(x-size,y);ctx.lineTo(x,y-size);ctx.lineTo(x+size,y);ctx.lineTo(x,y+size);ctx.lineTo(x-size,y)},triangle:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(2*Math.PI/Math.sin(Math.PI/3));var height=size*Math.sin(Math.PI/3);ctx.moveTo(x-size/2,y+height/2);ctx.lineTo(x+size/2,y+height/2);if(!shadow){ctx.lineTo(x,y-height/2);ctx.lineTo(x-size/2,y+height/2)}},cross:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI)/2;ctx.moveTo(x-size,y-size);ctx.lineTo(x+size,y+size);ctx.moveTo(x-size,y+size);ctx.lineTo(x+size,y-size)}};var s=series.points.symbol;if(handlers[s])series.points.symbol=handlers[s]}function init(plot){plot.hooks.processDatapoints.push(processRawData)}$.plot.plugins.push({init:init,name:"symbols",version:"1.0"})})(jQuery);
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/axes-time-zones/tz/pacificnew:
--------------------------------------------------------------------------------
1 | #
2 | # This file is in the public domain, so clarified as of
3 | # 2009-05-17 by Arthur David Olson.
4 |
5 | # From Arthur David Olson (1989-04-05):
6 | # On 1989-04-05, the U. S. House of Representatives passed (238-154) a bill
7 | # establishing "Pacific Presidential Election Time"; it was not acted on
8 | # by the Senate or signed into law by the President.
9 | # You might want to change the "PE" (Presidential Election) below to
10 | # "Q" (Quadrennial) to maintain three-character zone abbreviations.
11 | # If you're really conservative, you might want to change it to "D".
12 | # Avoid "L" (Leap Year), which won't be true in 2100.
13 |
14 | # If Presidential Election Time is ever established, replace "XXXX" below
15 | # with the year the law takes effect and uncomment the "##" lines.
16 |
17 | # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
18 | ## Rule Twilite XXXX max - Apr Sun>=1 2:00 1:00 D
19 | ## Rule Twilite XXXX max uspres Oct lastSun 2:00 1:00 PE
20 | ## Rule Twilite XXXX max uspres Nov Sun>=7 2:00 0 S
21 | ## Rule Twilite XXXX max nonpres Oct lastSun 2:00 0 S
22 |
23 | # Zone NAME GMTOFF RULES/SAVE FORMAT [UNTIL]
24 | ## Zone America/Los_Angeles-PET -8:00 US P%sT XXXX
25 | ## -8:00 Twilite P%sT
26 |
27 | # For now...
28 | Link America/Los_Angeles US/Pacific-New ##
29 |
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/flat.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin flat skin, black
2 | ----------------------------------- */
3 | .icheckbox_flat,
4 | .iradio_flat {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 20px;
11 | height: 20px;
12 | background: url(flat.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_flat {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_flat.checked {
21 | background-position: -22px 0;
22 | }
23 | .icheckbox_flat.disabled {
24 | background-position: -44px 0;
25 | cursor: default;
26 | }
27 | .icheckbox_flat.checked.disabled {
28 | background-position: -66px 0;
29 | }
30 |
31 | .iradio_flat {
32 | background-position: -88px 0;
33 | }
34 | .iradio_flat.checked {
35 | background-position: -110px 0;
36 | }
37 | .iradio_flat.disabled {
38 | background-position: -132px 0;
39 | cursor: default;
40 | }
41 | .iradio_flat.checked.disabled {
42 | background-position: -154px 0;
43 | }
44 |
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 | .icheckbox_flat,
48 | .iradio_flat {
49 | background-image: url(flat@2x.png);
50 | -webkit-background-size: 176px 22px;
51 | background-size: 176px 22px;
52 | }
53 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/red.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Flat skin, red
2 | ----------------------------------- */
3 | .icheckbox_flat-red,
4 | .iradio_flat-red {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 20px;
11 | height: 20px;
12 | background: url(red.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_flat-red {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_flat-red.checked {
21 | background-position: -22px 0;
22 | }
23 | .icheckbox_flat-red.disabled {
24 | background-position: -44px 0;
25 | cursor: default;
26 | }
27 | .icheckbox_flat-red.checked.disabled {
28 | background-position: -66px 0;
29 | }
30 |
31 | .iradio_flat-red {
32 | background-position: -88px 0;
33 | }
34 | .iradio_flat-red.checked {
35 | background-position: -110px 0;
36 | }
37 | .iradio_flat-red.disabled {
38 | background-position: -132px 0;
39 | cursor: default;
40 | }
41 | .iradio_flat-red.checked.disabled {
42 | background-position: -154px 0;
43 | }
44 |
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 | .icheckbox_flat-red,
48 | .iradio_flat-red {
49 | background-image: url(red@2x.png);
50 | -webkit-background-size: 176px 22px;
51 | background-size: 176px 22px;
52 | }
53 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/aero.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Flat skin, aero
2 | ----------------------------------- */
3 | .icheckbox_flat-aero,
4 | .iradio_flat-aero {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 20px;
11 | height: 20px;
12 | background: url(aero.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_flat-aero {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_flat-aero.checked {
21 | background-position: -22px 0;
22 | }
23 | .icheckbox_flat-aero.disabled {
24 | background-position: -44px 0;
25 | cursor: default;
26 | }
27 | .icheckbox_flat-aero.checked.disabled {
28 | background-position: -66px 0;
29 | }
30 |
31 | .iradio_flat-aero {
32 | background-position: -88px 0;
33 | }
34 | .iradio_flat-aero.checked {
35 | background-position: -110px 0;
36 | }
37 | .iradio_flat-aero.disabled {
38 | background-position: -132px 0;
39 | cursor: default;
40 | }
41 | .iradio_flat-aero.checked.disabled {
42 | background-position: -154px 0;
43 | }
44 |
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 | .icheckbox_flat-aero,
48 | .iradio_flat-aero {
49 | background-image: url(aero@2x.png);
50 | -webkit-background-size: 176px 22px;
51 | background-size: 176px 22px;
52 | }
53 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/blue.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Flat skin, blue
2 | ----------------------------------- */
3 | .icheckbox_flat-blue,
4 | .iradio_flat-blue {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 20px;
11 | height: 20px;
12 | background: url(blue.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_flat-blue {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_flat-blue.checked {
21 | background-position: -22px 0;
22 | }
23 | .icheckbox_flat-blue.disabled {
24 | background-position: -44px 0;
25 | cursor: default;
26 | }
27 | .icheckbox_flat-blue.checked.disabled {
28 | background-position: -66px 0;
29 | }
30 |
31 | .iradio_flat-blue {
32 | background-position: -88px 0;
33 | }
34 | .iradio_flat-blue.checked {
35 | background-position: -110px 0;
36 | }
37 | .iradio_flat-blue.disabled {
38 | background-position: -132px 0;
39 | cursor: default;
40 | }
41 | .iradio_flat-blue.checked.disabled {
42 | background-position: -154px 0;
43 | }
44 |
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 | .icheckbox_flat-blue,
48 | .iradio_flat-blue {
49 | background-image: url(blue@2x.png);
50 | -webkit-background-size: 176px 22px;
51 | background-size: 176px 22px;
52 | }
53 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/grey.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Flat skin, grey
2 | ----------------------------------- */
3 | .icheckbox_flat-grey,
4 | .iradio_flat-grey {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 20px;
11 | height: 20px;
12 | background: url(grey.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_flat-grey {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_flat-grey.checked {
21 | background-position: -22px 0;
22 | }
23 | .icheckbox_flat-grey.disabled {
24 | background-position: -44px 0;
25 | cursor: default;
26 | }
27 | .icheckbox_flat-grey.checked.disabled {
28 | background-position: -66px 0;
29 | }
30 |
31 | .iradio_flat-grey {
32 | background-position: -88px 0;
33 | }
34 | .iradio_flat-grey.checked {
35 | background-position: -110px 0;
36 | }
37 | .iradio_flat-grey.disabled {
38 | background-position: -132px 0;
39 | cursor: default;
40 | }
41 | .iradio_flat-grey.checked.disabled {
42 | background-position: -154px 0;
43 | }
44 |
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 | .icheckbox_flat-grey,
48 | .iradio_flat-grey {
49 | background-image: url(grey@2x.png);
50 | -webkit-background-size: 176px 22px;
51 | background-size: 176px 22px;
52 | }
53 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/pink.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Flat skin, pink
2 | ----------------------------------- */
3 | .icheckbox_flat-pink,
4 | .iradio_flat-pink {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 20px;
11 | height: 20px;
12 | background: url(pink.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_flat-pink {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_flat-pink.checked {
21 | background-position: -22px 0;
22 | }
23 | .icheckbox_flat-pink.disabled {
24 | background-position: -44px 0;
25 | cursor: default;
26 | }
27 | .icheckbox_flat-pink.checked.disabled {
28 | background-position: -66px 0;
29 | }
30 |
31 | .iradio_flat-pink {
32 | background-position: -88px 0;
33 | }
34 | .iradio_flat-pink.checked {
35 | background-position: -110px 0;
36 | }
37 | .iradio_flat-pink.disabled {
38 | background-position: -132px 0;
39 | cursor: default;
40 | }
41 | .iradio_flat-pink.checked.disabled {
42 | background-position: -154px 0;
43 | }
44 |
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 | .icheckbox_flat-pink,
48 | .iradio_flat-pink {
49 | background-image: url(pink@2x.png);
50 | -webkit-background-size: 176px 22px;
51 | background-size: 176px 22px;
52 | }
53 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/futurico/futurico.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Futurico skin
2 | ----------------------------------- */
3 | .icheckbox_futurico,
4 | .iradio_futurico {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 16px;
11 | height: 17px;
12 | background: url(futurico.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_futurico {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_futurico.checked {
21 | background-position: -18px 0;
22 | }
23 | .icheckbox_futurico.disabled {
24 | background-position: -36px 0;
25 | cursor: default;
26 | }
27 | .icheckbox_futurico.checked.disabled {
28 | background-position: -54px 0;
29 | }
30 |
31 | .iradio_futurico {
32 | background-position: -72px 0;
33 | }
34 | .iradio_futurico.checked {
35 | background-position: -90px 0;
36 | }
37 | .iradio_futurico.disabled {
38 | background-position: -108px 0;
39 | cursor: default;
40 | }
41 | .iradio_futurico.checked.disabled {
42 | background-position: -126px 0;
43 | }
44 |
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 | .icheckbox_futurico,
48 | .iradio_futurico {
49 | background-image: url(futurico@2x.png);
50 | -webkit-background-size: 144px 19px;
51 | background-size: 144px 19px;
52 | }
53 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/green.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Flat skin, green
2 | ----------------------------------- */
3 | .icheckbox_flat-green,
4 | .iradio_flat-green {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 20px;
11 | height: 20px;
12 | background: url(green.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_flat-green {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_flat-green.checked {
21 | background-position: -22px 0;
22 | }
23 | .icheckbox_flat-green.disabled {
24 | background-position: -44px 0;
25 | cursor: default;
26 | }
27 | .icheckbox_flat-green.checked.disabled {
28 | background-position: -66px 0;
29 | }
30 |
31 | .iradio_flat-green {
32 | background-position: -88px 0;
33 | }
34 | .iradio_flat-green.checked {
35 | background-position: -110px 0;
36 | }
37 | .iradio_flat-green.disabled {
38 | background-position: -132px 0;
39 | cursor: default;
40 | }
41 | .iradio_flat-green.checked.disabled {
42 | background-position: -154px 0;
43 | }
44 |
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 | .icheckbox_flat-green,
48 | .iradio_flat-green {
49 | background-image: url(green@2x.png);
50 | -webkit-background-size: 176px 22px;
51 | background-size: 176px 22px;
52 | }
53 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/orange.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Flat skin, orange
2 | ----------------------------------- */
3 | .icheckbox_flat-orange,
4 | .iradio_flat-orange {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 20px;
11 | height: 20px;
12 | background: url(orange.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_flat-orange {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_flat-orange.checked {
21 | background-position: -22px 0;
22 | }
23 | .icheckbox_flat-orange.disabled {
24 | background-position: -44px 0;
25 | cursor: default;
26 | }
27 | .icheckbox_flat-orange.checked.disabled {
28 | background-position: -66px 0;
29 | }
30 |
31 | .iradio_flat-orange {
32 | background-position: -88px 0;
33 | }
34 | .iradio_flat-orange.checked {
35 | background-position: -110px 0;
36 | }
37 | .iradio_flat-orange.disabled {
38 | background-position: -132px 0;
39 | cursor: default;
40 | }
41 | .iradio_flat-orange.checked.disabled {
42 | background-position: -154px 0;
43 | }
44 |
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 | .icheckbox_flat-orange,
48 | .iradio_flat-orange {
49 | background-image: url(orange@2x.png);
50 | -webkit-background-size: 176px 22px;
51 | background-size: 176px 22px;
52 | }
53 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/purple.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Flat skin, purple
2 | ----------------------------------- */
3 | .icheckbox_flat-purple,
4 | .iradio_flat-purple {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 20px;
11 | height: 20px;
12 | background: url(purple.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_flat-purple {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_flat-purple.checked {
21 | background-position: -22px 0;
22 | }
23 | .icheckbox_flat-purple.disabled {
24 | background-position: -44px 0;
25 | cursor: default;
26 | }
27 | .icheckbox_flat-purple.checked.disabled {
28 | background-position: -66px 0;
29 | }
30 |
31 | .iradio_flat-purple {
32 | background-position: -88px 0;
33 | }
34 | .iradio_flat-purple.checked {
35 | background-position: -110px 0;
36 | }
37 | .iradio_flat-purple.disabled {
38 | background-position: -132px 0;
39 | cursor: default;
40 | }
41 | .iradio_flat-purple.checked.disabled {
42 | background-position: -154px 0;
43 | }
44 |
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 | .icheckbox_flat-purple,
48 | .iradio_flat-purple {
49 | background-image: url(purple@2x.png);
50 | -webkit-background-size: 176px 22px;
51 | background-size: 176px 22px;
52 | }
53 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/flat/yellow.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Flat skin, yellow
2 | ----------------------------------- */
3 | .icheckbox_flat-yellow,
4 | .iradio_flat-yellow {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 20px;
11 | height: 20px;
12 | background: url(yellow.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_flat-yellow {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_flat-yellow.checked {
21 | background-position: -22px 0;
22 | }
23 | .icheckbox_flat-yellow.disabled {
24 | background-position: -44px 0;
25 | cursor: default;
26 | }
27 | .icheckbox_flat-yellow.checked.disabled {
28 | background-position: -66px 0;
29 | }
30 |
31 | .iradio_flat-yellow {
32 | background-position: -88px 0;
33 | }
34 | .iradio_flat-yellow.checked {
35 | background-position: -110px 0;
36 | }
37 | .iradio_flat-yellow.disabled {
38 | background-position: -132px 0;
39 | cursor: default;
40 | }
41 | .iradio_flat-yellow.checked.disabled {
42 | background-position: -154px 0;
43 | }
44 |
45 | /* HiDPI support */
46 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
47 | .icheckbox_flat-yellow,
48 | .iradio_flat-yellow {
49 | background-image: url(yellow@2x.png);
50 | -webkit-background-size: 176px 22px;
51 | background-size: 176px 22px;
52 | }
53 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/square.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Square skin, black
2 | ----------------------------------- */
3 | .icheckbox_square,
4 | .iradio_square {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 22px;
11 | height: 22px;
12 | background: url(square.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_square {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_square.hover {
21 | background-position: -24px 0;
22 | }
23 | .icheckbox_square.checked {
24 | background-position: -48px 0;
25 | }
26 | .icheckbox_square.disabled {
27 | background-position: -72px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_square.checked.disabled {
31 | background-position: -96px 0;
32 | }
33 |
34 | .iradio_square {
35 | background-position: -120px 0;
36 | }
37 | .iradio_square.hover {
38 | background-position: -144px 0;
39 | }
40 | .iradio_square.checked {
41 | background-position: -168px 0;
42 | }
43 | .iradio_square.disabled {
44 | background-position: -192px 0;
45 | cursor: default;
46 | }
47 | .iradio_square.checked.disabled {
48 | background-position: -216px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_square,
54 | .iradio_square {
55 | background-image: url(square@2x.png);
56 | -webkit-background-size: 240px 24px;
57 | background-size: 240px 24px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/axes-time-zones/tz/systemv:
--------------------------------------------------------------------------------
1 | #
2 | # This file is in the public domain, so clarified as of
3 | # 2009-05-17 by Arthur David Olson.
4 |
5 | # Old rules, should the need arise.
6 | # No attempt is made to handle Newfoundland, since it cannot be expressed
7 | # using the System V "TZ" scheme (half-hour offset), or anything outside
8 | # North America (no support for non-standard DST start/end dates), nor
9 | # the changes in the DST rules in the US after 1976 (which occurred after
10 | # the old rules were written).
11 | #
12 | # If you need the old rules, uncomment ## lines.
13 | # Compile this *without* leap second correction for true conformance.
14 |
15 | # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
16 | Rule SystemV min 1973 - Apr lastSun 2:00 1:00 D
17 | Rule SystemV min 1973 - Oct lastSun 2:00 0 S
18 | Rule SystemV 1974 only - Jan 6 2:00 1:00 D
19 | Rule SystemV 1974 only - Nov lastSun 2:00 0 S
20 | Rule SystemV 1975 only - Feb 23 2:00 1:00 D
21 | Rule SystemV 1975 only - Oct lastSun 2:00 0 S
22 | Rule SystemV 1976 max - Apr lastSun 2:00 1:00 D
23 | Rule SystemV 1976 max - Oct lastSun 2:00 0 S
24 |
25 | # Zone NAME GMTOFF RULES/SAVE FORMAT [UNTIL]
26 | ## Zone SystemV/AST4ADT -4:00 SystemV A%sT
27 | ## Zone SystemV/EST5EDT -5:00 SystemV E%sT
28 | ## Zone SystemV/CST6CDT -6:00 SystemV C%sT
29 | ## Zone SystemV/MST7MDT -7:00 SystemV M%sT
30 | ## Zone SystemV/PST8PDT -8:00 SystemV P%sT
31 | ## Zone SystemV/YST9YDT -9:00 SystemV Y%sT
32 | ## Zone SystemV/AST4 -4:00 - AST
33 | ## Zone SystemV/EST5 -5:00 - EST
34 | ## Zone SystemV/CST6 -6:00 - CST
35 | ## Zone SystemV/MST7 -7:00 - MST
36 | ## Zone SystemV/PST8 -8:00 - PST
37 | ## Zone SystemV/YST9 -9:00 - YST
38 | ## Zone SystemV/HST10 -10:00 - HST
39 |
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/polaris/polaris.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Polaris skin
2 | ----------------------------------- */
3 | .icheckbox_polaris,
4 | .iradio_polaris {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 29px;
11 | height: 29px;
12 | background: url(polaris.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_polaris {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_polaris.hover {
21 | background-position: -31px 0;
22 | }
23 | .icheckbox_polaris.checked {
24 | background-position: -62px 0;
25 | }
26 | .icheckbox_polaris.disabled {
27 | background-position: -93px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_polaris.checked.disabled {
31 | background-position: -124px 0;
32 | }
33 |
34 | .iradio_polaris {
35 | background-position: -155px 0;
36 | }
37 | .iradio_polaris.hover {
38 | background-position: -186px 0;
39 | }
40 | .iradio_polaris.checked {
41 | background-position: -217px 0;
42 | }
43 | .iradio_polaris.disabled {
44 | background-position: -248px 0;
45 | cursor: default;
46 | }
47 | .iradio_polaris.checked.disabled {
48 | background-position: -279px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_polaris,
54 | .iradio_polaris {
55 | background-image: url(polaris@2x.png);
56 | -webkit-background-size: 310px 31px;
57 | background-size: 310px 31px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/typebase.css:
--------------------------------------------------------------------------------
1 | /*! Typebase.less v0.1.0 | MIT License */
2 | /* Setup */
3 | html {
4 | /* Change default typefaces here */
5 | font-family: serif;
6 | font-size: 137.5%;
7 | -webkit-font-smoothing: antialiased;
8 | }
9 | /* Copy & Lists */
10 | p {
11 | line-height: 1.5rem;
12 | margin-top: 1.5rem;
13 | margin-bottom: 0;
14 | }
15 | ul,
16 | ol {
17 | /* margin-top: 1.5rem;*/
18 | margin-bottom: 1.5rem;
19 | }
20 | ul li,
21 | ol li {
22 | line-height: 1.5rem;
23 | }
24 | ul ul,
25 | ol ul,
26 | ul ol,
27 | ol ol {
28 | margin-top: 0;
29 | margin-bottom: 0;
30 | }
31 | blockquote {
32 | line-height: 1.5rem;
33 | margin-top: 1.5rem;
34 | margin-bottom: 1.5rem;
35 | }
36 | /* Headings */
37 | h1,
38 | h2,
39 | h3,
40 | h4,
41 | h5,
42 | h6 {
43 | /* Change heading typefaces here */
44 | font-family: sans-serif;
45 | margin-top: 1.5rem;
46 | margin-bottom: 0;
47 | line-height: 1.5rem;
48 | }
49 | h1 {
50 | font-size: 4.242rem;
51 | line-height: 4.5rem;
52 | margin-top: 3rem;
53 | }
54 | h2 {
55 | font-size: 2.828rem;
56 | line-height: 3rem;
57 | margin-top: 3rem;
58 | }
59 | h3 {
60 | font-size: 1.414rem;
61 | }
62 | h4 {
63 | font-size: 0.707rem;
64 | }
65 | h5 {
66 | font-size: 0.4713333333333333rem;
67 | }
68 | h6 {
69 | font-size: 0.3535rem;
70 | }
71 | /* Tables */
72 | table {
73 | margin-top: 1.5rem;
74 | border-spacing: 0px;
75 | border-collapse: collapse;
76 | }
77 | table td,
78 | table th {
79 | padding: 0;
80 | line-height: 33px;
81 | }
82 | /* Code blocks */
83 | code {
84 | vertical-align: bottom;
85 | }
86 | /* Leading paragraph text */
87 | .lead {
88 | font-size: 1.414rem;
89 | }
90 | /* Hug the block above you */
91 | .hug {
92 | margin-top: 0;
93 | }
94 |
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/minimal.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Minimal skin, black
2 | ----------------------------------- */
3 | .icheckbox_minimal,
4 | .iradio_minimal {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 18px;
11 | height: 18px;
12 | background: url(minimal.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_minimal {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_minimal.hover {
21 | background-position: -20px 0;
22 | }
23 | .icheckbox_minimal.checked {
24 | background-position: -40px 0;
25 | }
26 | .icheckbox_minimal.disabled {
27 | background-position: -60px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_minimal.checked.disabled {
31 | background-position: -80px 0;
32 | }
33 |
34 | .iradio_minimal {
35 | background-position: -100px 0;
36 | }
37 | .iradio_minimal.hover {
38 | background-position: -120px 0;
39 | }
40 | .iradio_minimal.checked {
41 | background-position: -140px 0;
42 | }
43 | .iradio_minimal.disabled {
44 | background-position: -160px 0;
45 | cursor: default;
46 | }
47 | .iradio_minimal.checked.disabled {
48 | background-position: -180px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_minimal,
54 | .iradio_minimal {
55 | background-image: url(minimal@2x.png);
56 | -webkit-background-size: 200px 20px;
57 | background-size: 200px 20px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/red.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Square skin, red
2 | ----------------------------------- */
3 | .icheckbox_square-red,
4 | .iradio_square-red {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 22px;
11 | height: 22px;
12 | background: url(red.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_square-red {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_square-red.hover {
21 | background-position: -24px 0;
22 | }
23 | .icheckbox_square-red.checked {
24 | background-position: -48px 0;
25 | }
26 | .icheckbox_square-red.disabled {
27 | background-position: -72px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_square-red.checked.disabled {
31 | background-position: -96px 0;
32 | }
33 |
34 | .iradio_square-red {
35 | background-position: -120px 0;
36 | }
37 | .iradio_square-red.hover {
38 | background-position: -144px 0;
39 | }
40 | .iradio_square-red.checked {
41 | background-position: -168px 0;
42 | }
43 | .iradio_square-red.disabled {
44 | background-position: -192px 0;
45 | cursor: default;
46 | }
47 | .iradio_square-red.checked.disabled {
48 | background-position: -216px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_square-red,
54 | .iradio_square-red {
55 | background-image: url(red@2x.png);
56 | -webkit-background-size: 240px 24px;
57 | background-size: 240px 24px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/shared/jquery-ui/jquery-ui.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.0 - 2013-01-26
2 | * http://jqueryui.com
3 | * Includes: jquery.ui.core.css, jquery.ui.resizable.css
4 | * Copyright (c) 2013 jQuery Foundation and other contributors Licensed MIT */
5 |
6 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/red.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Minimal skin, red
2 | ----------------------------------- */
3 | .icheckbox_minimal-red,
4 | .iradio_minimal-red {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 18px;
11 | height: 18px;
12 | background: url(red.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_minimal-red {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_minimal-red.hover {
21 | background-position: -20px 0;
22 | }
23 | .icheckbox_minimal-red.checked {
24 | background-position: -40px 0;
25 | }
26 | .icheckbox_minimal-red.disabled {
27 | background-position: -60px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_minimal-red.checked.disabled {
31 | background-position: -80px 0;
32 | }
33 |
34 | .iradio_minimal-red {
35 | background-position: -100px 0;
36 | }
37 | .iradio_minimal-red.hover {
38 | background-position: -120px 0;
39 | }
40 | .iradio_minimal-red.checked {
41 | background-position: -140px 0;
42 | }
43 | .iradio_minimal-red.disabled {
44 | background-position: -160px 0;
45 | cursor: default;
46 | }
47 | .iradio_minimal-red.checked.disabled {
48 | background-position: -180px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_minimal-red,
54 | .iradio_minimal-red {
55 | background-image: url(red@2x.png);
56 | -webkit-background-size: 200px 20px;
57 | background-size: 200px 20px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/aero.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Square skin, aero
2 | ----------------------------------- */
3 | .icheckbox_square-aero,
4 | .iradio_square-aero {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 22px;
11 | height: 22px;
12 | background: url(aero.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_square-aero {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_square-aero.hover {
21 | background-position: -24px 0;
22 | }
23 | .icheckbox_square-aero.checked {
24 | background-position: -48px 0;
25 | }
26 | .icheckbox_square-aero.disabled {
27 | background-position: -72px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_square-aero.checked.disabled {
31 | background-position: -96px 0;
32 | }
33 |
34 | .iradio_square-aero {
35 | background-position: -120px 0;
36 | }
37 | .iradio_square-aero.hover {
38 | background-position: -144px 0;
39 | }
40 | .iradio_square-aero.checked {
41 | background-position: -168px 0;
42 | }
43 | .iradio_square-aero.disabled {
44 | background-position: -192px 0;
45 | cursor: default;
46 | }
47 | .iradio_square-aero.checked.disabled {
48 | background-position: -216px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_square-aero,
54 | .iradio_square-aero {
55 | background-image: url(aero@2x.png);
56 | -webkit-background-size: 240px 24px;
57 | background-size: 240px 24px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/blue.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Square skin, blue
2 | ----------------------------------- */
3 | .icheckbox_square-blue,
4 | .iradio_square-blue {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 22px;
11 | height: 22px;
12 | background: url(blue.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_square-blue {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_square-blue.hover {
21 | background-position: -24px 0;
22 | }
23 | .icheckbox_square-blue.checked {
24 | background-position: -48px 0;
25 | }
26 | .icheckbox_square-blue.disabled {
27 | background-position: -72px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_square-blue.checked.disabled {
31 | background-position: -96px 0;
32 | }
33 |
34 | .iradio_square-blue {
35 | background-position: -120px 0;
36 | }
37 | .iradio_square-blue.hover {
38 | background-position: -144px 0;
39 | }
40 | .iradio_square-blue.checked {
41 | background-position: -168px 0;
42 | }
43 | .iradio_square-blue.disabled {
44 | background-position: -192px 0;
45 | cursor: default;
46 | }
47 | .iradio_square-blue.checked.disabled {
48 | background-position: -216px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_square-blue,
54 | .iradio_square-blue {
55 | background-image: url(blue@2x.png);
56 | -webkit-background-size: 240px 24px;
57 | background-size: 240px 24px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/grey.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Square skin, grey
2 | ----------------------------------- */
3 | .icheckbox_square-grey,
4 | .iradio_square-grey {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 22px;
11 | height: 22px;
12 | background: url(grey.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_square-grey {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_square-grey.hover {
21 | background-position: -24px 0;
22 | }
23 | .icheckbox_square-grey.checked {
24 | background-position: -48px 0;
25 | }
26 | .icheckbox_square-grey.disabled {
27 | background-position: -72px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_square-grey.checked.disabled {
31 | background-position: -96px 0;
32 | }
33 |
34 | .iradio_square-grey {
35 | background-position: -120px 0;
36 | }
37 | .iradio_square-grey.hover {
38 | background-position: -144px 0;
39 | }
40 | .iradio_square-grey.checked {
41 | background-position: -168px 0;
42 | }
43 | .iradio_square-grey.disabled {
44 | background-position: -192px 0;
45 | cursor: default;
46 | }
47 | .iradio_square-grey.checked.disabled {
48 | background-position: -216px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_square-grey,
54 | .iradio_square-grey {
55 | background-image: url(grey@2x.png);
56 | -webkit-background-size: 240px 24px;
57 | background-size: 240px 24px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/pink.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Square skin, pink
2 | ----------------------------------- */
3 | .icheckbox_square-pink,
4 | .iradio_square-pink {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 22px;
11 | height: 22px;
12 | background: url(pink.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_square-pink {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_square-pink.hover {
21 | background-position: -24px 0;
22 | }
23 | .icheckbox_square-pink.checked {
24 | background-position: -48px 0;
25 | }
26 | .icheckbox_square-pink.disabled {
27 | background-position: -72px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_square-pink.checked.disabled {
31 | background-position: -96px 0;
32 | }
33 |
34 | .iradio_square-pink {
35 | background-position: -120px 0;
36 | }
37 | .iradio_square-pink.hover {
38 | background-position: -144px 0;
39 | }
40 | .iradio_square-pink.checked {
41 | background-position: -168px 0;
42 | }
43 | .iradio_square-pink.disabled {
44 | background-position: -192px 0;
45 | cursor: default;
46 | }
47 | .iradio_square-pink.checked.disabled {
48 | background-position: -216px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_square-pink,
54 | .iradio_square-pink {
55 | background-image: url(pink@2x.png);
56 | -webkit-background-size: 240px 24px;
57 | background-size: 240px 24px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/aero.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Minimal skin, aero
2 | ----------------------------------- */
3 | .icheckbox_minimal-aero,
4 | .iradio_minimal-aero {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 18px;
11 | height: 18px;
12 | background: url(aero.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_minimal-aero {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_minimal-aero.hover {
21 | background-position: -20px 0;
22 | }
23 | .icheckbox_minimal-aero.checked {
24 | background-position: -40px 0;
25 | }
26 | .icheckbox_minimal-aero.disabled {
27 | background-position: -60px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_minimal-aero.checked.disabled {
31 | background-position: -80px 0;
32 | }
33 |
34 | .iradio_minimal-aero {
35 | background-position: -100px 0;
36 | }
37 | .iradio_minimal-aero.hover {
38 | background-position: -120px 0;
39 | }
40 | .iradio_minimal-aero.checked {
41 | background-position: -140px 0;
42 | }
43 | .iradio_minimal-aero.disabled {
44 | background-position: -160px 0;
45 | cursor: default;
46 | }
47 | .iradio_minimal-aero.checked.disabled {
48 | background-position: -180px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_minimal-aero,
54 | .iradio_minimal-aero {
55 | background-image: url(aero@2x.png);
56 | -webkit-background-size: 200px 20px;
57 | background-size: 200px 20px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/blue.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Minimal skin, blue
2 | ----------------------------------- */
3 | .icheckbox_minimal-blue,
4 | .iradio_minimal-blue {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 18px;
11 | height: 18px;
12 | background: url(blue.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_minimal-blue {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_minimal-blue.hover {
21 | background-position: -20px 0;
22 | }
23 | .icheckbox_minimal-blue.checked {
24 | background-position: -40px 0;
25 | }
26 | .icheckbox_minimal-blue.disabled {
27 | background-position: -60px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_minimal-blue.checked.disabled {
31 | background-position: -80px 0;
32 | }
33 |
34 | .iradio_minimal-blue {
35 | background-position: -100px 0;
36 | }
37 | .iradio_minimal-blue.hover {
38 | background-position: -120px 0;
39 | }
40 | .iradio_minimal-blue.checked {
41 | background-position: -140px 0;
42 | }
43 | .iradio_minimal-blue.disabled {
44 | background-position: -160px 0;
45 | cursor: default;
46 | }
47 | .iradio_minimal-blue.checked.disabled {
48 | background-position: -180px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_minimal-blue,
54 | .iradio_minimal-blue {
55 | background-image: url(blue@2x.png);
56 | -webkit-background-size: 200px 20px;
57 | background-size: 200px 20px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/grey.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Minimal skin, grey
2 | ----------------------------------- */
3 | .icheckbox_minimal-grey,
4 | .iradio_minimal-grey {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 18px;
11 | height: 18px;
12 | background: url(grey.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_minimal-grey {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_minimal-grey.hover {
21 | background-position: -20px 0;
22 | }
23 | .icheckbox_minimal-grey.checked {
24 | background-position: -40px 0;
25 | }
26 | .icheckbox_minimal-grey.disabled {
27 | background-position: -60px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_minimal-grey.checked.disabled {
31 | background-position: -80px 0;
32 | }
33 |
34 | .iradio_minimal-grey {
35 | background-position: -100px 0;
36 | }
37 | .iradio_minimal-grey.hover {
38 | background-position: -120px 0;
39 | }
40 | .iradio_minimal-grey.checked {
41 | background-position: -140px 0;
42 | }
43 | .iradio_minimal-grey.disabled {
44 | background-position: -160px 0;
45 | cursor: default;
46 | }
47 | .iradio_minimal-grey.checked.disabled {
48 | background-position: -180px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_minimal-grey,
54 | .iradio_minimal-grey {
55 | background-image: url(grey@2x.png);
56 | -webkit-background-size: 200px 20px;
57 | background-size: 200px 20px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/pink.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Minimal skin, pink
2 | ----------------------------------- */
3 | .icheckbox_minimal-pink,
4 | .iradio_minimal-pink {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 18px;
11 | height: 18px;
12 | background: url(pink.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_minimal-pink {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_minimal-pink.hover {
21 | background-position: -20px 0;
22 | }
23 | .icheckbox_minimal-pink.checked {
24 | background-position: -40px 0;
25 | }
26 | .icheckbox_minimal-pink.disabled {
27 | background-position: -60px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_minimal-pink.checked.disabled {
31 | background-position: -80px 0;
32 | }
33 |
34 | .iradio_minimal-pink {
35 | background-position: -100px 0;
36 | }
37 | .iradio_minimal-pink.hover {
38 | background-position: -120px 0;
39 | }
40 | .iradio_minimal-pink.checked {
41 | background-position: -140px 0;
42 | }
43 | .iradio_minimal-pink.disabled {
44 | background-position: -160px 0;
45 | cursor: default;
46 | }
47 | .iradio_minimal-pink.checked.disabled {
48 | background-position: -180px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_minimal-pink,
54 | .iradio_minimal-pink {
55 | background-image: url(pink@2x.png);
56 | -webkit-background-size: 200px 20px;
57 | background-size: 200px 20px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/green.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Square skin, green
2 | ----------------------------------- */
3 | .icheckbox_square-green,
4 | .iradio_square-green {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 22px;
11 | height: 22px;
12 | background: url(green.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_square-green {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_square-green.hover {
21 | background-position: -24px 0;
22 | }
23 | .icheckbox_square-green.checked {
24 | background-position: -48px 0;
25 | }
26 | .icheckbox_square-green.disabled {
27 | background-position: -72px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_square-green.checked.disabled {
31 | background-position: -96px 0;
32 | }
33 |
34 | .iradio_square-green {
35 | background-position: -120px 0;
36 | }
37 | .iradio_square-green.hover {
38 | background-position: -144px 0;
39 | }
40 | .iradio_square-green.checked {
41 | background-position: -168px 0;
42 | }
43 | .iradio_square-green.disabled {
44 | background-position: -192px 0;
45 | cursor: default;
46 | }
47 | .iradio_square-green.checked.disabled {
48 | background-position: -216px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_square-green,
54 | .iradio_square-green {
55 | background-image: url(green@2x.png);
56 | -webkit-background-size: 240px 24px;
57 | background-size: 240px 24px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/green.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Minimal skin, green
2 | ----------------------------------- */
3 | .icheckbox_minimal-green,
4 | .iradio_minimal-green {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 18px;
11 | height: 18px;
12 | background: url(green.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_minimal-green {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_minimal-green.hover {
21 | background-position: -20px 0;
22 | }
23 | .icheckbox_minimal-green.checked {
24 | background-position: -40px 0;
25 | }
26 | .icheckbox_minimal-green.disabled {
27 | background-position: -60px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_minimal-green.checked.disabled {
31 | background-position: -80px 0;
32 | }
33 |
34 | .iradio_minimal-green {
35 | background-position: -100px 0;
36 | }
37 | .iradio_minimal-green.hover {
38 | background-position: -120px 0;
39 | }
40 | .iradio_minimal-green.checked {
41 | background-position: -140px 0;
42 | }
43 | .iradio_minimal-green.disabled {
44 | background-position: -160px 0;
45 | cursor: default;
46 | }
47 | .iradio_minimal-green.checked.disabled {
48 | background-position: -180px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_minimal-green,
54 | .iradio_minimal-green {
55 | background-image: url(green@2x.png);
56 | -webkit-background-size: 200px 20px;
57 | background-size: 200px 20px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/orange.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Square skin, orange
2 | ----------------------------------- */
3 | .icheckbox_square-orange,
4 | .iradio_square-orange {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 22px;
11 | height: 22px;
12 | background: url(orange.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_square-orange {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_square-orange.hover {
21 | background-position: -24px 0;
22 | }
23 | .icheckbox_square-orange.checked {
24 | background-position: -48px 0;
25 | }
26 | .icheckbox_square-orange.disabled {
27 | background-position: -72px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_square-orange.checked.disabled {
31 | background-position: -96px 0;
32 | }
33 |
34 | .iradio_square-orange {
35 | background-position: -120px 0;
36 | }
37 | .iradio_square-orange.hover {
38 | background-position: -144px 0;
39 | }
40 | .iradio_square-orange.checked {
41 | background-position: -168px 0;
42 | }
43 | .iradio_square-orange.disabled {
44 | background-position: -192px 0;
45 | cursor: default;
46 | }
47 | .iradio_square-orange.checked.disabled {
48 | background-position: -216px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_square-orange,
54 | .iradio_square-orange {
55 | background-image: url(orange@2x.png);
56 | -webkit-background-size: 240px 24px;
57 | background-size: 240px 24px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/purple.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Square skin, purple
2 | ----------------------------------- */
3 | .icheckbox_square-purple,
4 | .iradio_square-purple {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 22px;
11 | height: 22px;
12 | background: url(purple.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_square-purple {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_square-purple.hover {
21 | background-position: -24px 0;
22 | }
23 | .icheckbox_square-purple.checked {
24 | background-position: -48px 0;
25 | }
26 | .icheckbox_square-purple.disabled {
27 | background-position: -72px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_square-purple.checked.disabled {
31 | background-position: -96px 0;
32 | }
33 |
34 | .iradio_square-purple {
35 | background-position: -120px 0;
36 | }
37 | .iradio_square-purple.hover {
38 | background-position: -144px 0;
39 | }
40 | .iradio_square-purple.checked {
41 | background-position: -168px 0;
42 | }
43 | .iradio_square-purple.disabled {
44 | background-position: -192px 0;
45 | cursor: default;
46 | }
47 | .iradio_square-purple.checked.disabled {
48 | background-position: -216px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_square-purple,
54 | .iradio_square-purple {
55 | background-image: url(purple@2x.png);
56 | -webkit-background-size: 240px 24px;
57 | background-size: 240px 24px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/square/yellow.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Square skin, yellow
2 | ----------------------------------- */
3 | .icheckbox_square-yellow,
4 | .iradio_square-yellow {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 22px;
11 | height: 22px;
12 | background: url(yellow.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_square-yellow {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_square-yellow.hover {
21 | background-position: -24px 0;
22 | }
23 | .icheckbox_square-yellow.checked {
24 | background-position: -48px 0;
25 | }
26 | .icheckbox_square-yellow.disabled {
27 | background-position: -72px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_square-yellow.checked.disabled {
31 | background-position: -96px 0;
32 | }
33 |
34 | .iradio_square-yellow {
35 | background-position: -120px 0;
36 | }
37 | .iradio_square-yellow.hover {
38 | background-position: -144px 0;
39 | }
40 | .iradio_square-yellow.checked {
41 | background-position: -168px 0;
42 | }
43 | .iradio_square-yellow.disabled {
44 | background-position: -192px 0;
45 | cursor: default;
46 | }
47 | .iradio_square-yellow.checked.disabled {
48 | background-position: -216px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_square-yellow,
54 | .iradio_square-yellow {
55 | background-image: url(yellow@2x.png);
56 | -webkit-background-size: 240px 24px;
57 | background-size: 240px 24px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/orange.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Minimal skin, orange
2 | ----------------------------------- */
3 | .icheckbox_minimal-orange,
4 | .iradio_minimal-orange {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 18px;
11 | height: 18px;
12 | background: url(orange.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_minimal-orange {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_minimal-orange.hover {
21 | background-position: -20px 0;
22 | }
23 | .icheckbox_minimal-orange.checked {
24 | background-position: -40px 0;
25 | }
26 | .icheckbox_minimal-orange.disabled {
27 | background-position: -60px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_minimal-orange.checked.disabled {
31 | background-position: -80px 0;
32 | }
33 |
34 | .iradio_minimal-orange {
35 | background-position: -100px 0;
36 | }
37 | .iradio_minimal-orange.hover {
38 | background-position: -120px 0;
39 | }
40 | .iradio_minimal-orange.checked {
41 | background-position: -140px 0;
42 | }
43 | .iradio_minimal-orange.disabled {
44 | background-position: -160px 0;
45 | cursor: default;
46 | }
47 | .iradio_minimal-orange.checked.disabled {
48 | background-position: -180px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_minimal-orange,
54 | .iradio_minimal-orange {
55 | background-image: url(orange@2x.png);
56 | -webkit-background-size: 200px 20px;
57 | background-size: 200px 20px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/purple.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Minimal skin, purple
2 | ----------------------------------- */
3 | .icheckbox_minimal-purple,
4 | .iradio_minimal-purple {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 18px;
11 | height: 18px;
12 | background: url(purple.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_minimal-purple {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_minimal-purple.hover {
21 | background-position: -20px 0;
22 | }
23 | .icheckbox_minimal-purple.checked {
24 | background-position: -40px 0;
25 | }
26 | .icheckbox_minimal-purple.disabled {
27 | background-position: -60px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_minimal-purple.checked.disabled {
31 | background-position: -80px 0;
32 | }
33 |
34 | .iradio_minimal-purple {
35 | background-position: -100px 0;
36 | }
37 | .iradio_minimal-purple.hover {
38 | background-position: -120px 0;
39 | }
40 | .iradio_minimal-purple.checked {
41 | background-position: -140px 0;
42 | }
43 | .iradio_minimal-purple.disabled {
44 | background-position: -160px 0;
45 | cursor: default;
46 | }
47 | .iradio_minimal-purple.checked.disabled {
48 | background-position: -180px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_minimal-purple,
54 | .iradio_minimal-purple {
55 | background-image: url(purple@2x.png);
56 | -webkit-background-size: 200px 20px;
57 | background-size: 200px 20px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/minimal/yellow.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Minimal skin, yellow
2 | ----------------------------------- */
3 | .icheckbox_minimal-yellow,
4 | .iradio_minimal-yellow {
5 | display: inline-block;
6 | *display: inline;
7 | vertical-align: middle;
8 | margin: 0;
9 | padding: 0;
10 | width: 18px;
11 | height: 18px;
12 | background: url(yellow.png) no-repeat;
13 | border: none;
14 | cursor: pointer;
15 | }
16 |
17 | .icheckbox_minimal-yellow {
18 | background-position: 0 0;
19 | }
20 | .icheckbox_minimal-yellow.hover {
21 | background-position: -20px 0;
22 | }
23 | .icheckbox_minimal-yellow.checked {
24 | background-position: -40px 0;
25 | }
26 | .icheckbox_minimal-yellow.disabled {
27 | background-position: -60px 0;
28 | cursor: default;
29 | }
30 | .icheckbox_minimal-yellow.checked.disabled {
31 | background-position: -80px 0;
32 | }
33 |
34 | .iradio_minimal-yellow {
35 | background-position: -100px 0;
36 | }
37 | .iradio_minimal-yellow.hover {
38 | background-position: -120px 0;
39 | }
40 | .iradio_minimal-yellow.checked {
41 | background-position: -140px 0;
42 | }
43 | .iradio_minimal-yellow.disabled {
44 | background-position: -160px 0;
45 | cursor: default;
46 | }
47 | .iradio_minimal-yellow.checked.disabled {
48 | background-position: -180px 0;
49 | }
50 |
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 | .icheckbox_minimal-yellow,
54 | .iradio_minimal-yellow {
55 | background-image: url(yellow@2x.png);
56 | -webkit-background-size: 200px 20px;
57 | background-size: 200px 20px;
58 | }
59 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/all.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin skins
2 | ----------------------------------- */
3 | @import url("minimal/_all.css");
4 | /*
5 | @import url("minimal/minimal.css");
6 | @import url("minimal/red.css");
7 | @import url("minimal/green.css");
8 | @import url("minimal/blue.css");
9 | @import url("minimal/aero.css");
10 | @import url("minimal/grey.css");
11 | @import url("minimal/orange.css");
12 | @import url("minimal/yellow.css");
13 | @import url("minimal/pink.css");
14 | @import url("minimal/purple.css");
15 | */
16 |
17 | @import url("square/_all.css");
18 | /*
19 | @import url("square/square.css");
20 | @import url("square/red.css");
21 | @import url("square/green.css");
22 | @import url("square/blue.css");
23 | @import url("square/aero.css");
24 | @import url("square/grey.css");
25 | @import url("square/orange.css");
26 | @import url("square/yellow.css");
27 | @import url("square/pink.css");
28 | @import url("square/purple.css");
29 | */
30 |
31 | @import url("flat/_all.css");
32 | /*
33 | @import url("flat/flat.css");
34 | @import url("flat/red.css");
35 | @import url("flat/green.css");
36 | @import url("flat/blue.css");
37 | @import url("flat/aero.css");
38 | @import url("flat/grey.css");
39 | @import url("flat/orange.css");
40 | @import url("flat/yellow.css");
41 | @import url("flat/pink.css");
42 | @import url("flat/purple.css");
43 | */
44 |
45 | @import url("line/_all.css");
46 | /*
47 | @import url("line/line.css");
48 | @import url("line/red.css");
49 | @import url("line/green.css");
50 | @import url("line/blue.css");
51 | @import url("line/aero.css");
52 | @import url("line/grey.css");
53 | @import url("line/orange.css");
54 | @import url("line/yellow.css");
55 | @import url("line/pink.css");
56 | @import url("line/purple.css");
57 | */
58 |
59 | @import url("polaris/polaris.css");
60 |
61 | @import url("futurico/futurico.css");
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/categories/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Flot Examples: Categories
6 |
7 |
8 |
9 |
10 |
11 |
37 |
38 |
39 |
40 |
41 | Categories
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 | With the categories plugin you can plot categories/textual data easily.
51 |
52 |
53 |
54 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
--------------------------------------------------------------------------------
/asset/js/plugins/flot/jquery.flot.threshold.min.js:
--------------------------------------------------------------------------------
1 | /* Javascript plotting library for jQuery, version 0.8.3.
2 |
3 | Copyright (c) 2007-2014 IOLA and Ole Laursen.
4 | Licensed under the MIT license.
5 |
6 | */
7 | (function($){var options={series:{threshold:null}};function init(plot){function thresholdData(plot,s,datapoints,below,color){var ps=datapoints.pointsize,i,x,y,p,prevp,thresholded=$.extend({},s);thresholded.datapoints={points:[],pointsize:ps,format:datapoints.format};thresholded.label=null;thresholded.color=color;thresholded.threshold=null;thresholded.originSeries=s;thresholded.data=[];var origpoints=datapoints.points,addCrossingPoints=s.lines.show;var threspoints=[];var newpoints=[];var m;for(i=0;i0&&origpoints[i-ps]!=null){var interx=x+(below-y)*(x-origpoints[i-ps])/(y-origpoints[i-ps+1]);prevp.push(interx);prevp.push(below);for(m=2;m0){var origIndex=$.inArray(s,plot.getData());plot.getData().splice(origIndex+1,0,thresholded)}}function processThresholds(plot,s,datapoints){if(!s.threshold)return;if(s.threshold instanceof Array){s.threshold.sort(function(a,b){return a.below-b.below});$(s.threshold).each(function(i,th){thresholdData(plot,s,datapoints,th.below,th.color)})}else{thresholdData(plot,s,datapoints,s.threshold.below,s.threshold.color)}}plot.hooks.processDatapoints.push(processThresholds)}$.plot.plugins.push({init:init,options:options,name:"threshold",version:"1.2"})})(jQuery);
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/basic-usage/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Flot Examples: Basic Usage
6 |
7 |
8 |
9 |
10 |
33 |
34 |
35 |
36 |
37 | Basic Usage
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 | You don't have to do much to get an attractive plot. Create a placeholder, make sure it has dimensions (so Flot knows at what size to draw the plot), then call the plot function with your data.
47 |
48 | The axes are automatically scaled.
49 |
50 |
51 |
52 |
55 |
56 |
57 |
58 |
--------------------------------------------------------------------------------
/asset/js/plugins/flot/jquery.flot.crosshair.min.js:
--------------------------------------------------------------------------------
1 | /* Javascript plotting library for jQuery, version 0.8.3.
2 |
3 | Copyright (c) 2007-2014 IOLA and Ole Laursen.
4 | Licensed under the MIT license.
5 |
6 | */
7 | (function($){var options={crosshair:{mode:null,color:"rgba(170, 0, 0, 0.80)",lineWidth:1}};function init(plot){var crosshair={x:-1,y:-1,locked:false};plot.setCrosshair=function setCrosshair(pos){if(!pos)crosshair.x=-1;else{var o=plot.p2c(pos);crosshair.x=Math.max(0,Math.min(o.left,plot.width()));crosshair.y=Math.max(0,Math.min(o.top,plot.height()))}plot.triggerRedrawOverlay()};plot.clearCrosshair=plot.setCrosshair;plot.lockCrosshair=function lockCrosshair(pos){if(pos)plot.setCrosshair(pos);crosshair.locked=true};plot.unlockCrosshair=function unlockCrosshair(){crosshair.locked=false};function onMouseOut(e){if(crosshair.locked)return;if(crosshair.x!=-1){crosshair.x=-1;plot.triggerRedrawOverlay()}}function onMouseMove(e){if(crosshair.locked)return;if(plot.getSelection&&plot.getSelection()){crosshair.x=-1;return}var offset=plot.offset();crosshair.x=Math.max(0,Math.min(e.pageX-offset.left,plot.width()));crosshair.y=Math.max(0,Math.min(e.pageY-offset.top,plot.height()));plot.triggerRedrawOverlay()}plot.hooks.bindEvents.push(function(plot,eventHolder){if(!plot.getOptions().crosshair.mode)return;eventHolder.mouseout(onMouseOut);eventHolder.mousemove(onMouseMove)});plot.hooks.drawOverlay.push(function(plot,ctx){var c=plot.getOptions().crosshair;if(!c.mode)return;var plotOffset=plot.getPlotOffset();ctx.save();ctx.translate(plotOffset.left,plotOffset.top);if(crosshair.x!=-1){var adj=plot.getOptions().crosshair.lineWidth%2?.5:0;ctx.strokeStyle=c.color;ctx.lineWidth=c.lineWidth;ctx.lineJoin="round";ctx.beginPath();if(c.mode.indexOf("x")!=-1){var drawX=Math.floor(crosshair.x)+adj;ctx.moveTo(drawX,0);ctx.lineTo(drawX,plot.height())}if(c.mode.indexOf("y")!=-1){var drawY=Math.floor(crosshair.y)+adj;ctx.moveTo(0,drawY);ctx.lineTo(plot.width(),drawY)}ctx.stroke()}ctx.restore()});plot.hooks.shutdown.push(function(plot,eventHolder){eventHolder.unbind("mouseout",onMouseOut);eventHolder.unbind("mousemove",onMouseMove)})}$.plot.plugins.push({init:init,options:options,name:"crosshair",version:"1.0"})})(jQuery);
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/examples.css:
--------------------------------------------------------------------------------
1 | * { padding: 0; margin: 0; vertical-align: top; }
2 |
3 | body {
4 | background: url(background.png) repeat-x;
5 | font: 18px/1.5em "proxima-nova", Helvetica, Arial, sans-serif;
6 | }
7 |
8 | a { color: #069; }
9 | a:hover { color: #28b; }
10 |
11 | h2 {
12 | margin-top: 15px;
13 | font: normal 32px "omnes-pro", Helvetica, Arial, sans-serif;
14 | }
15 |
16 | h3 {
17 | margin-left: 30px;
18 | font: normal 26px "omnes-pro", Helvetica, Arial, sans-serif;
19 | color: #666;
20 | }
21 |
22 | p {
23 | margin-top: 10px;
24 | }
25 |
26 | button {
27 | font-size: 18px;
28 | padding: 1px 7px;
29 | }
30 |
31 | input {
32 | font-size: 18px;
33 | }
34 |
35 | input[type=checkbox] {
36 | margin: 7px;
37 | }
38 |
39 | #header {
40 | position: relative;
41 | width: 900px;
42 | margin: auto;
43 | }
44 |
45 | #header h2 {
46 | margin-left: 10px;
47 | vertical-align: middle;
48 | font-size: 42px;
49 | font-weight: bold;
50 | text-decoration: none;
51 | color: #000;
52 | }
53 |
54 | #content {
55 | width: 880px;
56 | margin: 0 auto;
57 | padding: 10px;
58 | }
59 |
60 | #footer {
61 | margin-top: 25px;
62 | margin-bottom: 10px;
63 | text-align: center;
64 | font-size: 12px;
65 | color: #999;
66 | }
67 |
68 | .demo-container {
69 | box-sizing: border-box;
70 | width: 850px;
71 | height: 450px;
72 | padding: 20px 15px 15px 15px;
73 | margin: 15px auto 30px auto;
74 | border: 1px solid #ddd;
75 | background: #fff;
76 | background: linear-gradient(#f6f6f6 0, #fff 50px);
77 | background: -o-linear-gradient(#f6f6f6 0, #fff 50px);
78 | background: -ms-linear-gradient(#f6f6f6 0, #fff 50px);
79 | background: -moz-linear-gradient(#f6f6f6 0, #fff 50px);
80 | background: -webkit-linear-gradient(#f6f6f6 0, #fff 50px);
81 | box-shadow: 0 3px 10px rgba(0,0,0,0.15);
82 | -o-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
83 | -ms-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
84 | -moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
85 | -webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
86 | }
87 |
88 | .demo-placeholder {
89 | width: 100%;
90 | height: 100%;
91 | font-size: 14px;
92 | line-height: 1.2em;
93 | }
94 |
95 | .legend table {
96 | border-spacing: 5px;
97 | }
--------------------------------------------------------------------------------
/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | Miminium
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 | Back To Home
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/500.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | Miminium
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 | Back To Home
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/asset/js/plugins/flot/jquery.flot.fillbetween.min.js:
--------------------------------------------------------------------------------
1 | /* Javascript plotting library for jQuery, version 0.8.3.
2 |
3 | Copyright (c) 2007-2014 IOLA and Ole Laursen.
4 | Licensed under the MIT license.
5 |
6 | */
7 | (function($){var options={series:{fillBetween:null}};function init(plot){function findBottomSeries(s,allseries){var i;for(i=0;i=allseries.length){return null}return allseries[s.fillBetween]}return null}function computeFillBottoms(plot,s,datapoints){if(s.fillBetween==null){return}var other=findBottomSeries(s,plot.getData());if(!other){return}var ps=datapoints.pointsize,points=datapoints.points,otherps=other.datapoints.pointsize,otherpoints=other.datapoints.points,newpoints=[],px,py,intery,qx,qy,bottom,withlines=s.lines.show,withbottom=ps>2&&datapoints.format[2].y,withsteps=withlines&&s.lines.steps,fromgap=true,i=0,j=0,l,m;while(true){if(i>=points.length){break}l=newpoints.length;if(points[i]==null){for(m=0;m=otherpoints.length){if(!withlines){for(m=0;mqx){if(withlines&&i>0&&points[i-ps]!=null){intery=py+(points[i-ps+1]-py)*(qx-px)/(points[i-ps]-px);newpoints.push(qx);newpoints.push(intery);for(m=2;m0&&otherpoints[j-otherps]!=null){bottom=qy+(otherpoints[j-otherps+1]-qy)*(px-qx)/(otherpoints[j-otherps]-qx)}i+=ps}fromgap=false;if(l!==newpoints.length&&withbottom){newpoints[l+2]=bottom}}if(withsteps&&l!==newpoints.length&&l>0&&newpoints[l]!==null&&newpoints[l]!==newpoints[l-ps]&&newpoints[l+1]!==newpoints[l-ps+1]){for(m=0;m=0;t--){if(i[t]==this){i.splice(t,1);break}}e.removeData(m);if(!i.length){if(r){cancelAnimationFrame(a)}else{clearTimeout(a)}a=null}},add:function(e){if(!n[f]&&this[s]){return false}var i;function a(e,n,a){var r=$(this),s=r.data(m)||{};s.w=n!==t?n:r.width();s.h=a!==t?a:r.height();i.apply(this,arguments)}if($.isFunction(e)){i=e;return a}else{i=e.handler;e.handler=a}}};function h(t){if(r===true){r=t||1}for(var s=i.length-1;s>=0;s--){var l=$(i[s]);if(l[0]==e||l.is(":visible")){var f=l.width(),c=l.height(),d=l.data(m);if(d&&(f!==d.w||c!==d.h)){l.trigger(u,[d.w=f,d.h=c]);r=t||true}}else{d=l.data(m);d.w=0;d.h=0}}if(a!==null){if(r&&(t==null||t-r<1e3)){a=e.requestAnimationFrame(h)}else{a=setTimeout(h,n[o]);r=false}}}if(!e.requestAnimationFrame){e.requestAnimationFrame=function(){return e.webkitRequestAnimationFrame||e.mozRequestAnimationFrame||e.oRequestAnimationFrame||e.msRequestAnimationFrame||function(t,i){return e.setTimeout(function(){t((new Date).getTime())},n[l])}}()}if(!e.cancelAnimationFrame){e.cancelAnimationFrame=function(){return e.webkitCancelRequestAnimationFrame||e.mozCancelRequestAnimationFrame||e.oCancelRequestAnimationFrame||e.msCancelRequestAnimationFrame||clearTimeout}()}})(jQuery,this);(function($){var options={};function init(plot){function onResize(){var placeholder=plot.getPlaceholder();if(placeholder.width()==0||placeholder.height()==0)return;plot.resize();plot.setupGrid();plot.draw()}function bindEvents(plot,eventHolder){plot.getPlaceholder().resize(onResize)}function shutdown(plot,eventHolder){plot.getPlaceholder().unbind("resize",onResize)}plot.hooks.bindEvents.push(bindEvents);plot.hooks.shutdown.push(shutdown)}$.plot.plugins.push({init:init,options:options,name:"resize",version:"1.0"})})(jQuery);
--------------------------------------------------------------------------------
/asset/js/plugins/datatables.bootstrap.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | DataTables Bootstrap 3 integration
3 | ©2011-2015 SpryMedia Ltd - datatables.net/license
4 | */
5 | (function(b){"function"===typeof define&&define.amd?define(["jquery","datatables.net"],function(a){return b(a,window,document)}):"object"===typeof exports?module.exports=function(a,e){a||(a=window);if(!e||!e.fn.dataTable)e=require("datatables.net")(a,e).$;return b(e,a,a.document)}:b(jQuery,window,document)})(function(b,a,e){var d=b.fn.dataTable;b.extend(!0,d.defaults,{dom:"<'row'<'col-sm-6'l><'col-sm-6'f>><'row'<'col-sm-12'tr>><'row'<'col-sm-5'i><'col-sm-7'p>>",renderer:"bootstrap"});b.extend(d.ext.classes,
6 | {sWrapper:"dataTables_wrapper form-inline dt-bootstrap",sFilterInput:"form-control input-sm",sLengthSelect:"form-control input-sm",sProcessing:"dataTables_processing panel panel-default"});d.ext.renderer.pageButton.bootstrap=function(a,h,r,m,j,n){var o=new d.Api(a),s=a.oClasses,k=a.oLanguage.oPaginate,t=a.oLanguage.oAria.paginate||{},f,g,p=0,q=function(d,e){var l,h,i,c,m=function(a){a.preventDefault();!b(a.currentTarget).hasClass("disabled")&&o.page()!=a.data.action&&o.page(a.data.action).draw("page")};
7 | l=0;for(h=e.length;l",{"class":s.sPageButton+" "+g,id:0===r&&"string"===typeof c?a.sTableId+"_"+c:null}).append(b("",{href:"#",
8 | "aria-controls":a.sTableId,"aria-label":t[c],"data-dt-idx":p,tabindex:a.iTabIndex}).html(f)).appendTo(d),a.oApi._fnBindAction(i,{action:c},m),p++)}},i;try{i=b(h).find(e.activeElement).data("dt-idx")}catch(u){}q(b(h).empty().html('
').children("ul"),m);i&&b(h).find("[data-dt-idx="+i+"]").focus()};d.TableTools&&(b.extend(!0,d.TableTools.classes,{container:"DTTT btn-group",buttons:{normal:"btn btn-default",disabled:"disabled"},collection:{container:"DTTT_dropdown dropdown-menu",
9 | buttons:{normal:"",disabled:"disabled"}},print:{info:"DTTT_print_info"},select:{row:"active"}}),b.extend(!0,d.TableTools.DEFAULTS.oTags,{collection:{container:"ul",button:"li",liner:"a"}}));return d});
10 |
--------------------------------------------------------------------------------
/asset/js/plugins/jquery.vmap.sampledata.js:
--------------------------------------------------------------------------------
1 | var sample_data = {"af":"16.63","al":"11.58","dz":"158.97","ao":"85.81","ag":"1.1","ar":"351.02","am":"8.83","au":"1219.72","at":"366.26","az":"52.17","bs":"7.54","bh":"21.73","bd":"105.4","bb":"3.96","by":"52.89","be":"461.33","bz":"1.43","bj":"6.49","bt":"1.4","bo":"19.18","ba":"16.2","bw":"12.5","br":"2023.53","bn":"11.96","bg":"44.84","bf":"8.67","bi":"1.47","kh":"11.36","cm":"21.88","ca":"1563.66","cv":"1.57","cf":"2.11","td":"7.59","cl":"199.18","cn":"5745.13","co":"283.11","km":"0.56","cd":"12.6","cg":"11.88","cr":"35.02","ci":"22.38","hr":"59.92","cy":"22.75","cz":"195.23","dk":"304.56","dj":"1.14","dm":"0.38","do":"50.87","ec":"61.49","eg":"216.83","sv":"21.8","gq":"14.55","er":"2.25","ee":"19.22","et":"30.94","fj":"3.15","fi":"231.98","fr":"2555.44","ga":"12.56","gm":"1.04","ge":"11.23","de":"3305.9","gh":"18.06","gr":"305.01","gd":"0.65","gt":"40.77","gn":"4.34","gw":"0.83","gy":"2.2","ht":"6.5","hn":"15.34","hk":"226.49","hu":"132.28","is":"12.77","in":"1430.02","id":"695.06","ir":"337.9","iq":"84.14","ie":"204.14","il":"201.25","it":"2036.69","jm":"13.74","jp":"5390.9","jo":"27.13","kz":"129.76","ke":"32.42","ki":"0.15","kr":"986.26","undefined":"5.73","kw":"117.32","kg":"4.44","la":"6.34","lv":"23.39","lb":"39.15","ls":"1.8","lr":"0.98","ly":"77.91","lt":"35.73","lu":"52.43","mk":"9.58","mg":"8.33","mw":"5.04","my":"218.95","mv":"1.43","ml":"9.08","mt":"7.8","mr":"3.49","mu":"9.43","mx":"1004.04","md":"5.36","mn":"5.81","me":"3.88","ma":"91.7","mz":"10.21","mm":"35.65","na":"11.45","np":"15.11","nl":"770.31","nz":"138","ni":"6.38","ne":"5.6","ng":"206.66","no":"413.51","om":"53.78","pk":"174.79","pa":"27.2","pg":"8.81","py":"17.17","pe":"153.55","ph":"189.06","pl":"438.88","pt":"223.7","qa":"126.52","ro":"158.39","ru":"1476.91","rw":"5.69","ws":"0.55","st":"0.19","sa":"434.44","sn":"12.66","rs":"38.92","sc":"0.92","sl":"1.9","sg":"217.38","sk":"86.26","si":"46.44","sb":"0.67","za":"354.41","es":"1374.78","lk":"48.24","kn":"0.56","lc":"1","vc":"0.58","sd":"65.93","sr":"3.3","sz":"3.17","se":"444.59","ch":"522.44","sy":"59.63","tw":"426.98","tj":"5.58","tz":"22.43","th":"312.61","tl":"0.62","tg":"3.07","to":"0.3","tt":"21.2","tn":"43.86","tr":"729.05","tm":0,"ug":"17.12","ua":"136.56","ae":"239.65","gb":"2258.57","us":"14624.18","uy":"40.71","uz":"37.72","vu":"0.72","ve":"285.21","vn":"101.99","ye":"30.02","zm":"15.69","zw":"5.57"};
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/threshold/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Flot Examples: Thresholds
6 |
7 |
8 |
9 |
10 |
11 |
48 |
49 |
50 |
51 |
52 | Thresholds
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 | With the threshold plugin, you can apply a specific color to the part of a data series below a threshold. This is can be useful for highlighting negative values, e.g. when displaying net results or what's in stock.
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/line/red.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Line skin, red
2 | ----------------------------------- */
3 | .icheckbox_line-red,
4 | .iradio_line-red {
5 | position: relative;
6 | display: block;
7 | margin: 0;
8 | padding: 5px 15px 5px 38px;
9 | font-size: 13px;
10 | line-height: 17px;
11 | color: #fff;
12 | background: #e56c69;
13 | border: none;
14 | -webkit-border-radius: 3px;
15 | -moz-border-radius: 3px;
16 | border-radius: 3px;
17 | cursor: pointer;
18 | }
19 | .icheckbox_line-red .icheck_line-icon,
20 | .iradio_line-red .icheck_line-icon {
21 | position: absolute;
22 | top: 50%;
23 | left: 13px;
24 | width: 13px;
25 | height: 11px;
26 | margin: -5px 0 0 0;
27 | padding: 0;
28 | overflow: hidden;
29 | background: url(line.png) no-repeat;
30 | border: none;
31 | }
32 | .icheckbox_line-red.hover,
33 | .icheckbox_line-red.checked.hover,
34 | .iradio_line-red.hover {
35 | background: #E98582;
36 | }
37 | .icheckbox_line-red.checked,
38 | .iradio_line-red.checked {
39 | background: #e56c69;
40 | }
41 | .icheckbox_line-red.checked .icheck_line-icon,
42 | .iradio_line-red.checked .icheck_line-icon {
43 | background-position: -15px 0;
44 | }
45 | .icheckbox_line-red.disabled,
46 | .iradio_line-red.disabled {
47 | background: #F7D3D2;
48 | cursor: default;
49 | }
50 | .icheckbox_line-red.disabled .icheck_line-icon,
51 | .iradio_line-red.disabled .icheck_line-icon {
52 | background-position: -30px 0;
53 | }
54 | .icheckbox_line-red.checked.disabled,
55 | .iradio_line-red.checked.disabled {
56 | background: #F7D3D2;
57 | }
58 | .icheckbox_line-red.checked.disabled .icheck_line-icon,
59 | .iradio_line-red.checked.disabled .icheck_line-icon {
60 | background-position: -45px 0;
61 | }
62 |
63 | /* HiDPI support */
64 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
65 | .icheckbox_line-red .icheck_line-icon,
66 | .iradio_line-red .icheck_line-icon {
67 | background-image: url(line@2x.png);
68 | -webkit-background-size: 60px 13px;
69 | background-size: 60px 13px;
70 | }
71 | }
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/symbols/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Flot Examples: Symbols
6 |
7 |
8 |
9 |
10 |
11 |
54 |
55 |
56 |
57 |
58 | Symbols
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 | Points can be marked in several ways, with circles being the built-in default. For other point types, you can define a callback function to draw the symbol. Some common symbols are available in the symbol plugin.
68 |
69 |
70 |
71 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/line/aero.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Line skin, aero
2 | ----------------------------------- */
3 | .icheckbox_line-aero,
4 | .iradio_line-aero {
5 | position: relative;
6 | display: block;
7 | margin: 0;
8 | padding: 5px 15px 5px 38px;
9 | font-size: 13px;
10 | line-height: 17px;
11 | color: #fff;
12 | background: #9cc2cb;
13 | border: none;
14 | -webkit-border-radius: 3px;
15 | -moz-border-radius: 3px;
16 | border-radius: 3px;
17 | cursor: pointer;
18 | }
19 | .icheckbox_line-aero .icheck_line-icon,
20 | .iradio_line-aero .icheck_line-icon {
21 | position: absolute;
22 | top: 50%;
23 | left: 13px;
24 | width: 13px;
25 | height: 11px;
26 | margin: -5px 0 0 0;
27 | padding: 0;
28 | overflow: hidden;
29 | background: url(line.png) no-repeat;
30 | border: none;
31 | }
32 | .icheckbox_line-aero.hover,
33 | .icheckbox_line-aero.checked.hover,
34 | .iradio_line-aero.hover {
35 | background: #B5D1D8;
36 | }
37 | .icheckbox_line-aero.checked,
38 | .iradio_line-aero.checked {
39 | background: #9cc2cb;
40 | }
41 | .icheckbox_line-aero.checked .icheck_line-icon,
42 | .iradio_line-aero.checked .icheck_line-icon {
43 | background-position: -15px 0;
44 | }
45 | .icheckbox_line-aero.disabled,
46 | .iradio_line-aero.disabled {
47 | background: #D2E4E8;
48 | cursor: default;
49 | }
50 | .icheckbox_line-aero.disabled .icheck_line-icon,
51 | .iradio_line-aero.disabled .icheck_line-icon {
52 | background-position: -30px 0;
53 | }
54 | .icheckbox_line-aero.checked.disabled,
55 | .iradio_line-aero.checked.disabled {
56 | background: #D2E4E8;
57 | }
58 | .icheckbox_line-aero.checked.disabled .icheck_line-icon,
59 | .iradio_line-aero.checked.disabled .icheck_line-icon {
60 | background-position: -45px 0;
61 | }
62 |
63 | /* HiDPI support */
64 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
65 | .icheckbox_line-aero .icheck_line-icon,
66 | .iradio_line-aero .icheck_line-icon {
67 | background-image: url(line@2x.png);
68 | -webkit-background-size: 60px 13px;
69 | background-size: 60px 13px;
70 | }
71 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/line/blue.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Line skin, blue
2 | ----------------------------------- */
3 | .icheckbox_line-blue,
4 | .iradio_line-blue {
5 | position: relative;
6 | display: block;
7 | margin: 0;
8 | padding: 5px 15px 5px 38px;
9 | font-size: 13px;
10 | line-height: 17px;
11 | color: #fff;
12 | background: #2489c5;
13 | border: none;
14 | -webkit-border-radius: 3px;
15 | -moz-border-radius: 3px;
16 | border-radius: 3px;
17 | cursor: pointer;
18 | }
19 | .icheckbox_line-blue .icheck_line-icon,
20 | .iradio_line-blue .icheck_line-icon {
21 | position: absolute;
22 | top: 50%;
23 | left: 13px;
24 | width: 13px;
25 | height: 11px;
26 | margin: -5px 0 0 0;
27 | padding: 0;
28 | overflow: hidden;
29 | background: url(line.png) no-repeat;
30 | border: none;
31 | }
32 | .icheckbox_line-blue.hover,
33 | .icheckbox_line-blue.checked.hover,
34 | .iradio_line-blue.hover {
35 | background: #3DA0DB;
36 | }
37 | .icheckbox_line-blue.checked,
38 | .iradio_line-blue.checked {
39 | background: #2489c5;
40 | }
41 | .icheckbox_line-blue.checked .icheck_line-icon,
42 | .iradio_line-blue.checked .icheck_line-icon {
43 | background-position: -15px 0;
44 | }
45 | .icheckbox_line-blue.disabled,
46 | .iradio_line-blue.disabled {
47 | background: #ADD7F0;
48 | cursor: default;
49 | }
50 | .icheckbox_line-blue.disabled .icheck_line-icon,
51 | .iradio_line-blue.disabled .icheck_line-icon {
52 | background-position: -30px 0;
53 | }
54 | .icheckbox_line-blue.checked.disabled,
55 | .iradio_line-blue.checked.disabled {
56 | background: #ADD7F0;
57 | }
58 | .icheckbox_line-blue.checked.disabled .icheck_line-icon,
59 | .iradio_line-blue.checked.disabled .icheck_line-icon {
60 | background-position: -45px 0;
61 | }
62 |
63 | /* HiDPI support */
64 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
65 | .icheckbox_line-blue .icheck_line-icon,
66 | .iradio_line-blue .icheck_line-icon {
67 | background-image: url(line@2x.png);
68 | -webkit-background-size: 60px 13px;
69 | background-size: 60px 13px;
70 | }
71 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/line/grey.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Line skin, grey
2 | ----------------------------------- */
3 | .icheckbox_line-grey,
4 | .iradio_line-grey {
5 | position: relative;
6 | display: block;
7 | margin: 0;
8 | padding: 5px 15px 5px 38px;
9 | font-size: 13px;
10 | line-height: 17px;
11 | color: #fff;
12 | background: #73716e;
13 | border: none;
14 | -webkit-border-radius: 3px;
15 | -moz-border-radius: 3px;
16 | border-radius: 3px;
17 | cursor: pointer;
18 | }
19 | .icheckbox_line-grey .icheck_line-icon,
20 | .iradio_line-grey .icheck_line-icon {
21 | position: absolute;
22 | top: 50%;
23 | left: 13px;
24 | width: 13px;
25 | height: 11px;
26 | margin: -5px 0 0 0;
27 | padding: 0;
28 | overflow: hidden;
29 | background: url(line.png) no-repeat;
30 | border: none;
31 | }
32 | .icheckbox_line-grey.hover,
33 | .icheckbox_line-grey.checked.hover,
34 | .iradio_line-grey.hover {
35 | background: #8B8986;
36 | }
37 | .icheckbox_line-grey.checked,
38 | .iradio_line-grey.checked {
39 | background: #73716e;
40 | }
41 | .icheckbox_line-grey.checked .icheck_line-icon,
42 | .iradio_line-grey.checked .icheck_line-icon {
43 | background-position: -15px 0;
44 | }
45 | .icheckbox_line-grey.disabled,
46 | .iradio_line-grey.disabled {
47 | background: #D5D4D3;
48 | cursor: default;
49 | }
50 | .icheckbox_line-grey.disabled .icheck_line-icon,
51 | .iradio_line-grey.disabled .icheck_line-icon {
52 | background-position: -30px 0;
53 | }
54 | .icheckbox_line-grey.checked.disabled,
55 | .iradio_line-grey.checked.disabled {
56 | background: #D5D4D3;
57 | }
58 | .icheckbox_line-grey.checked.disabled .icheck_line-icon,
59 | .iradio_line-grey.checked.disabled .icheck_line-icon {
60 | background-position: -45px 0;
61 | }
62 |
63 | /* HiDPI support */
64 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
65 | .icheckbox_line-grey .icheck_line-icon,
66 | .iradio_line-grey .icheck_line-icon {
67 | background-image: url(line@2x.png);
68 | -webkit-background-size: 60px 13px;
69 | background-size: 60px 13px;
70 | }
71 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/line/pink.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Line skin, pink
2 | ----------------------------------- */
3 | .icheckbox_line-pink,
4 | .iradio_line-pink {
5 | position: relative;
6 | display: block;
7 | margin: 0;
8 | padding: 5px 15px 5px 38px;
9 | font-size: 13px;
10 | line-height: 17px;
11 | color: #fff;
12 | background: #a77a94;
13 | border: none;
14 | -webkit-border-radius: 3px;
15 | -moz-border-radius: 3px;
16 | border-radius: 3px;
17 | cursor: pointer;
18 | }
19 | .icheckbox_line-pink .icheck_line-icon,
20 | .iradio_line-pink .icheck_line-icon {
21 | position: absolute;
22 | top: 50%;
23 | left: 13px;
24 | width: 13px;
25 | height: 11px;
26 | margin: -5px 0 0 0;
27 | padding: 0;
28 | overflow: hidden;
29 | background: url(line.png) no-repeat;
30 | border: none;
31 | }
32 | .icheckbox_line-pink.hover,
33 | .icheckbox_line-pink.checked.hover,
34 | .iradio_line-pink.hover {
35 | background: #B995A9;
36 | }
37 | .icheckbox_line-pink.checked,
38 | .iradio_line-pink.checked {
39 | background: #a77a94;
40 | }
41 | .icheckbox_line-pink.checked .icheck_line-icon,
42 | .iradio_line-pink.checked .icheck_line-icon {
43 | background-position: -15px 0;
44 | }
45 | .icheckbox_line-pink.disabled,
46 | .iradio_line-pink.disabled {
47 | background: #E0D0DA;
48 | cursor: default;
49 | }
50 | .icheckbox_line-pink.disabled .icheck_line-icon,
51 | .iradio_line-pink.disabled .icheck_line-icon {
52 | background-position: -30px 0;
53 | }
54 | .icheckbox_line-pink.checked.disabled,
55 | .iradio_line-pink.checked.disabled {
56 | background: #E0D0DA;
57 | }
58 | .icheckbox_line-pink.checked.disabled .icheck_line-icon,
59 | .iradio_line-pink.checked.disabled .icheck_line-icon {
60 | background-position: -45px 0;
61 | }
62 |
63 | /* HiDPI support */
64 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
65 | .icheckbox_line-pink .icheck_line-icon,
66 | .iradio_line-pink .icheck_line-icon {
67 | background-image: url(line@2x.png);
68 | -webkit-background-size: 60px 13px;
69 | background-size: 60px 13px;
70 | }
71 | }
--------------------------------------------------------------------------------
/asset/js/plugins/flot/jquery.flot.stack.min.js:
--------------------------------------------------------------------------------
1 | /* Javascript plotting library for jQuery, version 0.8.3.
2 |
3 | Copyright (c) 2007-2014 IOLA and Ole Laursen.
4 | Licensed under the MIT license.
5 |
6 | */
7 | (function($){var options={series:{stack:null}};function init(plot){function findMatchingSeries(s,allseries){var res=null;for(var i=0;i2&&(horizontal?datapoints.format[2].x:datapoints.format[2].y),withsteps=withlines&&s.lines.steps,fromgap=true,keyOffset=horizontal?1:0,accumulateOffset=horizontal?0:1,i=0,j=0,l,m;while(true){if(i>=points.length)break;l=newpoints.length;if(points[i]==null){for(m=0;m=otherpoints.length){if(!withlines){for(m=0;mqx){if(withlines&&i>0&&points[i-ps]!=null){intery=py+(points[i-ps+accumulateOffset]-py)*(qx-px)/(points[i-ps+keyOffset]-px);newpoints.push(qx);newpoints.push(intery+qy);for(m=2;m0&&otherpoints[j-otherps]!=null)bottom=qy+(otherpoints[j-otherps+accumulateOffset]-qy)*(px-qx)/(otherpoints[j-otherps+keyOffset]-qx);newpoints[l+accumulateOffset]+=bottom;i+=ps}fromgap=false;if(l!=newpoints.length&&withbottom)newpoints[l+2]+=bottom}if(withsteps&&l!=newpoints.length&&l>0&&newpoints[l]!=null&&newpoints[l]!=newpoints[l-ps]&&newpoints[l+1]!=newpoints[l-ps+1]){for(m=0;m
2 |
3 |
4 |
5 | Flot Examples: Image Plots
6 |
7 |
8 |
9 |
10 |
11 |
43 |
44 |
45 |
46 |
47 | Image Plots
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 | The Cat's Eye Nebula (picture from Hubble).
57 |
58 | With the image plugin, you can plot static images against a set of axes. This is for useful for adding ticks to complex prerendered visualizations. Instead of inputting data points, you specify the images and where their two opposite corners are supposed to be in plot space.
59 |
60 | Images represent a little further complication because you need to make sure they are loaded before you can use them (Flot skips incomplete images). The plugin comes with a couple of helpers for doing that.
61 |
62 |
63 |
64 |
67 |
68 |
69 |
70 |
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/line/orange.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Line skin, orange
2 | ----------------------------------- */
3 | .icheckbox_line-orange,
4 | .iradio_line-orange {
5 | position: relative;
6 | display: block;
7 | margin: 0;
8 | padding: 5px 15px 5px 38px;
9 | font-size: 13px;
10 | line-height: 17px;
11 | color: #fff;
12 | background: #f70;
13 | border: none;
14 | -webkit-border-radius: 3px;
15 | -moz-border-radius: 3px;
16 | border-radius: 3px;
17 | cursor: pointer;
18 | }
19 | .icheckbox_line-orange .icheck_line-icon,
20 | .iradio_line-orange .icheck_line-icon {
21 | position: absolute;
22 | top: 50%;
23 | left: 13px;
24 | width: 13px;
25 | height: 11px;
26 | margin: -5px 0 0 0;
27 | padding: 0;
28 | overflow: hidden;
29 | background: url(line.png) no-repeat;
30 | border: none;
31 | }
32 | .icheckbox_line-orange.hover,
33 | .icheckbox_line-orange.checked.hover,
34 | .iradio_line-orange.hover {
35 | background: #FF9233;
36 | }
37 | .icheckbox_line-orange.checked,
38 | .iradio_line-orange.checked {
39 | background: #f70;
40 | }
41 | .icheckbox_line-orange.checked .icheck_line-icon,
42 | .iradio_line-orange.checked .icheck_line-icon {
43 | background-position: -15px 0;
44 | }
45 | .icheckbox_line-orange.disabled,
46 | .iradio_line-orange.disabled {
47 | background: #FFD6B3;
48 | cursor: default;
49 | }
50 | .icheckbox_line-orange.disabled .icheck_line-icon,
51 | .iradio_line-orange.disabled .icheck_line-icon {
52 | background-position: -30px 0;
53 | }
54 | .icheckbox_line-orange.checked.disabled,
55 | .iradio_line-orange.checked.disabled {
56 | background: #FFD6B3;
57 | }
58 | .icheckbox_line-orange.checked.disabled .icheck_line-icon,
59 | .iradio_line-orange.checked.disabled .icheck_line-icon {
60 | background-position: -45px 0;
61 | }
62 |
63 | /* HiDPI support */
64 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
65 | .icheckbox_line-orange .icheck_line-icon,
66 | .iradio_line-orange .icheck_line-icon {
67 | background-image: url(line@2x.png);
68 | -webkit-background-size: 60px 13px;
69 | background-size: 60px 13px;
70 | }
71 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/line/purple.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Line skin, purple
2 | ----------------------------------- */
3 | .icheckbox_line-purple,
4 | .iradio_line-purple {
5 | position: relative;
6 | display: block;
7 | margin: 0;
8 | padding: 5px 15px 5px 38px;
9 | font-size: 13px;
10 | line-height: 17px;
11 | color: #fff;
12 | background: #6a5a8c;
13 | border: none;
14 | -webkit-border-radius: 3px;
15 | -moz-border-radius: 3px;
16 | border-radius: 3px;
17 | cursor: pointer;
18 | }
19 | .icheckbox_line-purple .icheck_line-icon,
20 | .iradio_line-purple .icheck_line-icon {
21 | position: absolute;
22 | top: 50%;
23 | left: 13px;
24 | width: 13px;
25 | height: 11px;
26 | margin: -5px 0 0 0;
27 | padding: 0;
28 | overflow: hidden;
29 | background: url(line.png) no-repeat;
30 | border: none;
31 | }
32 | .icheckbox_line-purple.hover,
33 | .icheckbox_line-purple.checked.hover,
34 | .iradio_line-purple.hover {
35 | background: #8677A7;
36 | }
37 | .icheckbox_line-purple.checked,
38 | .iradio_line-purple.checked {
39 | background: #6a5a8c;
40 | }
41 | .icheckbox_line-purple.checked .icheck_line-icon,
42 | .iradio_line-purple.checked .icheck_line-icon {
43 | background-position: -15px 0;
44 | }
45 | .icheckbox_line-purple.disabled,
46 | .iradio_line-purple.disabled {
47 | background: #D2CCDE;
48 | cursor: default;
49 | }
50 | .icheckbox_line-purple.disabled .icheck_line-icon,
51 | .iradio_line-purple.disabled .icheck_line-icon {
52 | background-position: -30px 0;
53 | }
54 | .icheckbox_line-purple.checked.disabled,
55 | .iradio_line-purple.checked.disabled {
56 | background: #D2CCDE;
57 | }
58 | .icheckbox_line-purple.checked.disabled .icheck_line-icon,
59 | .iradio_line-purple.checked.disabled .icheck_line-icon {
60 | background-position: -45px 0;
61 | }
62 |
63 | /* HiDPI support */
64 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
65 | .icheckbox_line-purple .icheck_line-icon,
66 | .iradio_line-purple .icheck_line-icon {
67 | background-image: url(line@2x.png);
68 | -webkit-background-size: 60px 13px;
69 | background-size: 60px 13px;
70 | }
71 | }
--------------------------------------------------------------------------------
/asset/css/plugins/icheck/skins/line/yellow.css:
--------------------------------------------------------------------------------
1 | /* iCheck plugin Line skin, yellow
2 | ----------------------------------- */
3 | .icheckbox_line-yellow,
4 | .iradio_line-yellow {
5 | position: relative;
6 | display: block;
7 | margin: 0;
8 | padding: 5px 15px 5px 38px;
9 | font-size: 13px;
10 | line-height: 17px;
11 | color: #fff;
12 | background: #FFC414;
13 | border: none;
14 | -webkit-border-radius: 3px;
15 | -moz-border-radius: 3px;
16 | border-radius: 3px;
17 | cursor: pointer;
18 | }
19 | .icheckbox_line-yellow .icheck_line-icon,
20 | .iradio_line-yellow .icheck_line-icon {
21 | position: absolute;
22 | top: 50%;
23 | left: 13px;
24 | width: 13px;
25 | height: 11px;
26 | margin: -5px 0 0 0;
27 | padding: 0;
28 | overflow: hidden;
29 | background: url(line.png) no-repeat;
30 | border: none;
31 | }
32 | .icheckbox_line-yellow.hover,
33 | .icheckbox_line-yellow.checked.hover,
34 | .iradio_line-yellow.hover {
35 | background: #FFD34F;
36 | }
37 | .icheckbox_line-yellow.checked,
38 | .iradio_line-yellow.checked {
39 | background: #FFC414;
40 | }
41 | .icheckbox_line-yellow.checked .icheck_line-icon,
42 | .iradio_line-yellow.checked .icheck_line-icon {
43 | background-position: -15px 0;
44 | }
45 | .icheckbox_line-yellow.disabled,
46 | .iradio_line-yellow.disabled {
47 | background: #FFE495;
48 | cursor: default;
49 | }
50 | .icheckbox_line-yellow.disabled .icheck_line-icon,
51 | .iradio_line-yellow.disabled .icheck_line-icon {
52 | background-position: -30px 0;
53 | }
54 | .icheckbox_line-yellow.checked.disabled,
55 | .iradio_line-yellow.checked.disabled {
56 | background: #FFE495;
57 | }
58 | .icheckbox_line-yellow.checked.disabled .icheck_line-icon,
59 | .iradio_line-yellow.checked.disabled .icheck_line-icon {
60 | background-position: -45px 0;
61 | }
62 |
63 | /* HiDPI support */
64 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
65 | .icheckbox_line-yellow .icheck_line-icon,
66 | .iradio_line-yellow .icheck_line-icon {
67 | background-image: url(line@2x.png);
68 | -webkit-background-size: 60px 13px;
69 | background-size: 60px 13px;
70 | }
71 | }
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/series-types/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Flot Examples: Series Types
6 |
7 |
8 |
9 |
10 |
68 |
69 |
70 |
71 |
72 | Series Types
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 | Flot supports lines, points, filled areas, bars and any combinations of these, in the same plot and even on the same data series.
82 |
83 |
84 |
85 |
88 |
89 |
90 |
91 |
--------------------------------------------------------------------------------
/asset/js/plugins/flot/jquery.flot.categories.min.js:
--------------------------------------------------------------------------------
1 | /* Javascript plotting library for jQuery, version 0.8.3.
2 |
3 | Copyright (c) 2007-2014 IOLA and Ole Laursen.
4 | Licensed under the MIT license.
5 |
6 | */
7 | (function($){var options={xaxis:{categories:null},yaxis:{categories:null}};function processRawData(plot,series,data,datapoints){var xCategories=series.xaxis.options.mode=="categories",yCategories=series.yaxis.options.mode=="categories";if(!(xCategories||yCategories))return;var format=datapoints.format;if(!format){var s=series;format=[];format.push({x:true,number:true,required:true});format.push({y:true,number:true,required:true});if(s.bars.show||s.lines.show&&s.lines.fill){var autoscale=!!(s.bars.show&&s.bars.zero||s.lines.show&&s.lines.zero);format.push({y:true,number:true,required:false,defaultValue:0,autoscale:autoscale});if(s.bars.horizontal){delete format[format.length-1].y;format[format.length-1].x=true}}datapoints.format=format}for(var m=0;mindex)index=categories[v];return index+1}function categoriesTickGenerator(axis){var res=[];for(var label in axis.categories){var v=axis.categories[label];if(v>=axis.min&&v<=axis.max)res.push([v,label])}res.sort(function(a,b){return a[0]-b[0]});return res}function setupCategoriesForAxis(series,axis,datapoints){if(series[axis].options.mode!="categories")return;if(!series[axis].categories){var c={},o=series[axis].options.categories||{};if($.isArray(o)){for(var i=0;i ").load(handler).error(handler).attr("src",url)})};function drawSeries(plot,ctx,series){var plotOffset=plot.getPlotOffset();if(!series.images||!series.images.show)return;var points=series.datapoints.points,ps=series.datapoints.pointsize;for(var i=0;ix2){tmp=x2;x2=x1;x1=tmp}if(y1>y2){tmp=y2;y2=y1;y1=tmp}if(series.images.anchor=="center"){tmp=.5*(x2-x1)/(img.width-1);x1-=tmp;x2+=tmp;tmp=.5*(y2-y1)/(img.height-1);y1-=tmp;y2+=tmp}if(x1==x2||y1==y2||x1>=xaxis.max||x2<=xaxis.min||y1>=yaxis.max||y2<=yaxis.min)continue;var sx1=0,sy1=0,sx2=img.width,sy2=img.height;if(x1xaxis.max){sx2+=(sx2-sx1)*(xaxis.max-x2)/(x2-x1);x2=xaxis.max}if(y1yaxis.max){sy1+=(sy1-sy2)*(yaxis.max-y2)/(y2-y1);y2=yaxis.max}x1=xaxis.p2c(x1);x2=xaxis.p2c(x2);y1=yaxis.p2c(y1);y2=yaxis.p2c(y2);if(x1>x2){tmp=x2;x2=x1;x1=tmp}if(y1>y2){tmp=y2;y2=y1;y1=tmp}tmp=ctx.globalAlpha;ctx.globalAlpha*=series.images.alpha;ctx.drawImage(img,sx1,sy1,sx2-sx1,sy2-sy1,x1+plotOffset.left,y1+plotOffset.top,x2-x1,y2-y1);ctx.globalAlpha=tmp}}function processRawData(plot,series,data,datapoints){if(!series.images.show)return;datapoints.format=[{required:true},{x:true,number:true,required:true},{y:true,number:true,required:true},{x:true,number:true,required:true},{y:true,number:true,required:true}]}function init(plot){plot.hooks.processRawData.push(processRawData);plot.hooks.drawSeries.push(drawSeries)}$.plot.plugins.push({init:init,options:options,name:"image",version:"1.1"})})(jQuery);
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/basic-options/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Flot Examples: Basic Options
6 |
7 |
8 |
9 |
10 |
67 |
68 |
69 |
70 |
71 | Basic Options
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 | There are plenty of options you can set to control the precise looks of your plot. You can control the ticks on the axes, the legend, the graph type, etc.
81 |
82 | Flot goes to great lengths to provide sensible defaults so that you don't have to customize much for a good-looking result.
83 |
84 |
85 |
86 |
89 |
90 |
91 |
92 |
--------------------------------------------------------------------------------
/asset/css/plugins/ionrangeslider/ion.rangeSlider.skinNice.css:
--------------------------------------------------------------------------------
1 | /* Ion.RangeSlider, Nice Skin
2 | // css version 2.0.3
3 | // © Denis Ineshin, 2014 https://github.com/IonDen
4 | // ===================================================================================================================*/
5 |
6 | /* =====================================================================================================================
7 | // Skin details */
8 |
9 | .irs-line-mid,
10 | .irs-line-left,
11 | .irs-line-right,
12 | .irs-bar,
13 | .irs-bar-edge,
14 | .irs-slider {
15 | background: url(../../img/sprite-skin-nice.png) repeat-x;
16 | }
17 |
18 | .irs {
19 | height: 40px;
20 | }
21 | .irs-with-grid {
22 | height: 60px;
23 | }
24 | .irs-line {
25 | height: 8px; top: 25px;
26 | }
27 | .irs-line-left {
28 | height: 8px;
29 | background-position: 0 -30px;
30 | }
31 | .irs-line-mid {
32 | height: 8px;
33 | background-position: 0 0;
34 | }
35 | .irs-line-right {
36 | height: 8px;
37 | background-position: 100% -30px;
38 | }
39 |
40 | .irs-bar {
41 | height: 8px; top: 25px;
42 | background-position: 0 -60px;
43 | }
44 | .irs-bar-edge {
45 | top: 25px;
46 | height: 8px; width: 11px;
47 | background-position: 0 -90px;
48 | }
49 |
50 | .irs-shadow {
51 | height: 1px; top: 34px;
52 | background: #000;
53 | opacity: 0.15;
54 | }
55 | .lt-ie9 .irs-shadow {
56 | filter: alpha(opacity=15);
57 | }
58 |
59 | .irs-slider {
60 | width: 22px; height: 22px;
61 | top: 17px;
62 | background-position: 0 -120px;
63 | }
64 | .irs-slider.state_hover, .irs-slider:hover {
65 | background-position: 0 -150px;
66 | }
67 |
68 | .irs-min, .irs-max {
69 | color: #999;
70 | font-size: 10px; line-height: 1.333;
71 | text-shadow: none;
72 | top: 0; padding: 1px 3px;
73 | background: rgba(0,0,0,0.1);
74 | -moz-border-radius: 3px;
75 | border-radius: 3px;
76 | }
77 | .lt-ie9 .irs-min, .lt-ie9 .irs-max {
78 | background: #ccc;
79 | }
80 |
81 | .irs-from, .irs-to, .irs-single {
82 | color: #fff;
83 | font-size: 10px; line-height: 1.333;
84 | text-shadow: none;
85 | padding: 1px 5px;
86 | background: rgba(0,0,0,0.3);
87 | -moz-border-radius: 3px;
88 | border-radius: 3px;
89 | }
90 | .lt-ie9 .irs-from, .lt-ie9 .irs-to, .lt-ie9 .irs-single {
91 | background: #999;
92 | }
93 |
94 | .irs-grid-pol {
95 | background: #99a4ac;
96 | }
97 | .irs-grid-text {
98 | color: #99a4ac;
99 | }
100 |
101 | .irs-disabled {
102 | }
103 |
--------------------------------------------------------------------------------
/asset/js/plugins/html5shiv.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @preserve HTML5 Shiv 3.7.3 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
3 | */
4 | !function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=t.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=t.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),t.elements=c+" "+a,j(b)}function f(a){var b=s[a[q]];return b||(b={},r++,a[q]=r,s[r]=b),b}function g(a,c,d){if(c||(c=b),l)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():p.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!e.canHaveChildren||o.test(a)||e.tagUrn?e:d.frag.appendChild(e)}function h(a,c){if(a||(a=b),l)return a.createDocumentFragment();c=c||f(a);for(var e=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)e.createElement(h[g]);return e}function i(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return t.shivMethods?g(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(t,b.frag)}function j(a){a||(a=b);var d=f(a);return!t.shivCSS||k||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.3",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,q="_html5shiv",r=0,s={};!function(){try{var a=b.createElement("a");a.innerHTML=" ",k="hidden"in a,l=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){k=!0,l=!0}}();var t={elements:n.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:m,shivCSS:n.shivCSS!==!1,supportsUnknownElements:l,shivMethods:n.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=t,j(b),"object"==typeof module&&module.exports&&(module.exports=t)}("undefined"!=typeof window?window:this,document);
5 |
--------------------------------------------------------------------------------
/asset/css/plugins/ionrangeslider/ion.rangeSlider.skinSimple.css:
--------------------------------------------------------------------------------
1 | /* Ion.RangeSlider, Simple Skin
2 | // css version 2.0.3
3 | // © Denis Ineshin, 2014 https://github.com/IonDen
4 | // ===================================================================================================================*/
5 |
6 | /* =====================================================================================================================
7 | // Skin details */
8 |
9 | .irs-line-mid,
10 | .irs-line-left,
11 | .irs-line-right,
12 | .irs-bar,
13 | .irs-bar-edge,
14 | .irs-slider {
15 | background: url(../../../img/sprite-skin-simple.png) repeat-x;
16 | }
17 |
18 | .irs {
19 | height: 40px;
20 | }
21 | .irs-with-grid {
22 | height: 60px;
23 | }
24 | .irs-line {
25 | height: 6px; top: 25px;
26 | }
27 | .irs-line-left {
28 | height: 6px;
29 | background-position: 0 -30px;
30 | }
31 | .irs-line-mid {
32 | height: 6px;
33 | background-position: 0 0;
34 | }
35 | .irs-line-right {
36 | height: 6px;
37 | background-position: 100% -30px;
38 | }
39 |
40 | .irs-bar {
41 | height: 6px; top: 25px;
42 | background-position: 0 -60px;
43 | }
44 | .irs-bar-edge {
45 | top: 25px;
46 | height: 6px; width: 7px;
47 | background-position: 0 -90px;
48 | }
49 |
50 | .irs-shadow {
51 | height: 1px; top: 34px;
52 | background: #000;
53 | opacity: 0.75;
54 | }
55 | .lt-ie9 .irs-shadow {
56 | filter: alpha(opacity=75);
57 | }
58 |
59 | .irs-slider {
60 | width: 8px; height: 15px;
61 | top: 21px;
62 | background-position: 0 -120px;
63 | }
64 | .irs-slider.state_hover, .irs-slider:hover {
65 | background-position: 0 -150px;
66 | }
67 |
68 | .irs-min, .irs-max {
69 | color: #c0c0c0;
70 | font-size: 10px; line-height: 1.333;
71 | text-shadow: none;
72 | top: 0; padding: 1px 3px;
73 | background: rgba(0,0,0,0.1);
74 | -moz-border-radius: 3px;
75 | border-radius: 3px;
76 | }
77 | .lt-ie9 .irs-min, .lt-ie9 .irs-max {
78 | background: #3654b0;
79 | }
80 |
81 | .irs-from, .irs-to, .irs-single {
82 | color: #000;
83 | font-size: 10px; line-height: 1.333;
84 | text-shadow: none;
85 | padding: 1px 5px;
86 | background: rgba(255,255,255,0.8);
87 | -moz-border-radius: 3px;
88 | border-radius: 3px;
89 | }
90 | .lt-ie9 .irs-from, .lt-ie9 .irs-to, .lt-ie9 .irs-single {
91 | background: #d8dff3;
92 | }
93 |
94 | .irs-grid-pol {
95 | background: #777;
96 | }
97 | .irs-grid-text {
98 | color: #e0e0e0;
99 | }
100 |
101 | .irs-disabled {
102 | }
103 |
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/resize/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Flot Examples: Resizing
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
50 |
51 |
52 |
53 |
54 | Resizing
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 | Sometimes it makes more sense to just let the plot take up the available space. In that case, we need to redraw the plot each time the placeholder changes its size. If you include the resize plugin, this is handled automatically.
66 |
67 | Drag the bottom and right sides of the plot to resize it.
68 |
69 |
70 |
71 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/asset/js/plugins/flot/jquery.flot.symbol.js:
--------------------------------------------------------------------------------
1 | /* Flot plugin that adds some extra symbols for plotting points.
2 |
3 | Copyright (c) 2007-2014 IOLA and Ole Laursen.
4 | Licensed under the MIT license.
5 |
6 | The symbols are accessed as strings through the standard symbol options:
7 |
8 | series: {
9 | points: {
10 | symbol: "square" // or "diamond", "triangle", "cross"
11 | }
12 | }
13 |
14 | */
15 |
16 | (function ($) {
17 | function processRawData(plot, series, datapoints) {
18 | // we normalize the area of each symbol so it is approximately the
19 | // same as a circle of the given radius
20 |
21 | var handlers = {
22 | square: function (ctx, x, y, radius, shadow) {
23 | // pi * r^2 = (2s)^2 => s = r * sqrt(pi)/2
24 | var size = radius * Math.sqrt(Math.PI) / 2;
25 | ctx.rect(x - size, y - size, size + size, size + size);
26 | },
27 | diamond: function (ctx, x, y, radius, shadow) {
28 | // pi * r^2 = 2s^2 => s = r * sqrt(pi/2)
29 | var size = radius * Math.sqrt(Math.PI / 2);
30 | ctx.moveTo(x - size, y);
31 | ctx.lineTo(x, y - size);
32 | ctx.lineTo(x + size, y);
33 | ctx.lineTo(x, y + size);
34 | ctx.lineTo(x - size, y);
35 | },
36 | triangle: function (ctx, x, y, radius, shadow) {
37 | // pi * r^2 = 1/2 * s^2 * sin (pi / 3) => s = r * sqrt(2 * pi / sin(pi / 3))
38 | var size = radius * Math.sqrt(2 * Math.PI / Math.sin(Math.PI / 3));
39 | var height = size * Math.sin(Math.PI / 3);
40 | ctx.moveTo(x - size/2, y + height/2);
41 | ctx.lineTo(x + size/2, y + height/2);
42 | if (!shadow) {
43 | ctx.lineTo(x, y - height/2);
44 | ctx.lineTo(x - size/2, y + height/2);
45 | }
46 | },
47 | cross: function (ctx, x, y, radius, shadow) {
48 | // pi * r^2 = (2s)^2 => s = r * sqrt(pi)/2
49 | var size = radius * Math.sqrt(Math.PI) / 2;
50 | ctx.moveTo(x - size, y - size);
51 | ctx.lineTo(x + size, y + size);
52 | ctx.moveTo(x - size, y + size);
53 | ctx.lineTo(x + size, y - size);
54 | }
55 | };
56 |
57 | var s = series.points.symbol;
58 | if (handlers[s])
59 | series.points.symbol = handlers[s];
60 | }
61 |
62 | function init(plot) {
63 | plot.hooks.processDatapoints.push(processRawData);
64 | }
65 |
66 | $.plot.plugins.push({
67 | init: init,
68 | name: 'symbols',
69 | version: '1.0'
70 | });
71 | })(jQuery);
72 |
--------------------------------------------------------------------------------
/asset/css/plugins/ionrangeslider/ion.rangeSlider.skinFlat.css:
--------------------------------------------------------------------------------
1 | /* Ion.RangeSlider, Flat UI Skin
2 | // css version 2.0.3
3 | // © Denis Ineshin, 2014 https://github.com/IonDen
4 | // ===================================================================================================================*/
5 |
6 | /* =====================================================================================================================
7 | // Skin details */
8 |
9 | .irs-line-mid,
10 | .irs-line-left,
11 | .irs-line-right,
12 | .irs-bar,
13 | .irs-bar-edge,
14 | .irs-slider {
15 | background: url(../../../img/sprite-skin-flat.png) repeat-x;
16 | }
17 |
18 | .irs {
19 | height: 40px;
20 | }
21 | .irs-with-grid {
22 | height: 60px;
23 | }
24 | .irs-line {
25 | height: 12px; top: 25px;
26 | }
27 | .irs-line-left {
28 | height: 12px;
29 | background-position: 0 -30px;
30 | }
31 | .irs-line-mid {
32 | height: 12px;
33 | background-position: 0 0;
34 | }
35 | .irs-line-right {
36 | height: 12px;
37 | background-position: 100% -30px;
38 | }
39 |
40 | .irs-bar {
41 | height: 12px; top: 25px;
42 | background-position: 0 -60px;
43 | }
44 | .irs-bar-edge {
45 | top: 25px;
46 | height: 12px; width: 9px;
47 | background-position: 0 -90px;
48 | }
49 |
50 | .irs-shadow {
51 | height: 3px; top: 34px;
52 | background: #000;
53 | opacity: 0.25;
54 | }
55 | .lt-ie9 .irs-shadow {
56 | filter: alpha(opacity=25);
57 | }
58 |
59 | .irs-slider {
60 | width: 16px; height: 18px;
61 | top: 22px;
62 | background-position: 0 -120px;
63 | }
64 | .irs-slider.state_hover, .irs-slider:hover {
65 | background-position: 0 -150px;
66 | }
67 |
68 | .irs-min, .irs-max {
69 | color: #999;
70 | font-size: 10px; line-height: 1.333;
71 | text-shadow: none;
72 | top: 0; padding: 1px 3px;
73 | background: #e1e4e9;
74 | -moz-border-radius: 4px;
75 | border-radius: 4px;
76 | }
77 |
78 | .irs-from, .irs-to, .irs-single {
79 | color: #fff;
80 | font-size: 10px; line-height: 1.333;
81 | text-shadow: none;
82 | padding: 1px 5px;
83 | background: #ed5565;
84 | -moz-border-radius: 4px;
85 | border-radius: 4px;
86 | }
87 | .irs-from:after, .irs-to:after, .irs-single:after {
88 | position: absolute; display: block; content: "";
89 | bottom: -6px; left: 50%;
90 | width: 0; height: 0;
91 | margin-left: -3px;
92 | overflow: hidden;
93 | border: 3px solid transparent;
94 | border-top-color: #ed5565;
95 | }
96 |
97 |
98 | .irs-grid-pol {
99 | background: #e1e4e9;
100 | }
101 | .irs-grid-text {
102 | color: #999;
103 | }
104 |
105 | .irs-disabled {
106 | }
107 |
--------------------------------------------------------------------------------
/lockscreen-v1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | Miminium
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
70 |
71 |
72 |
--------------------------------------------------------------------------------
/asset/css/plugins/ionrangeslider/ion.rangeSlider.skinModern.css:
--------------------------------------------------------------------------------
1 | /* Ion.RangeSlider, Modern Skin
2 | // css version 2.0.3
3 | // © Denis Ineshin, 2014 https://github.com/IonDen
4 | // ===================================================================================================================*/
5 |
6 | /* =====================================================================================================================
7 | // Skin details */
8 |
9 | .irs-line-mid,
10 | .irs-line-left,
11 | .irs-line-right,
12 | .irs-bar,
13 | .irs-bar-edge,
14 | .irs-slider {
15 | background: url(../../../img/sprite-skin-modern.png) repeat-x;
16 | }
17 |
18 | .irs {
19 | height: 50px;
20 | }
21 | .irs-with-grid {
22 | height: 70px;
23 | }
24 | .irs-line {
25 | height: 6px; top: 25px;
26 | }
27 | .irs-line-left {
28 | height: 6px;
29 | background-position: 0 -30px;
30 | }
31 | .irs-line-mid {
32 | height: 6px;
33 | background-position: 0 0;
34 | }
35 | .irs-line-right {
36 | height: 6px;
37 | background-position: 100% -30px;
38 | }
39 |
40 | .irs-bar {
41 | height: 6px; top: 25px;
42 | background-position: 0 -60px;
43 | }
44 | .irs-bar-edge {
45 | top: 25px;
46 | height: 6px; width: 6px;
47 | background-position: 0 -90px;
48 | }
49 |
50 | .irs-shadow {
51 | height: 5px; top: 25px;
52 | background: #000;
53 | opacity: 0.25;
54 | }
55 | .lt-ie9 .irs-shadow {
56 | filter: alpha(opacity=25);
57 | }
58 |
59 | .irs-slider {
60 | width: 11px; height: 18px;
61 | top: 31px;
62 | background-position: 0 -120px;
63 | }
64 | .irs-slider.state_hover, .irs-slider:hover {
65 | background-position: 0 -150px;
66 | }
67 |
68 | .irs-min, .irs-max {
69 | color: #999;
70 | font-size: 10px; line-height: 1.333;
71 | text-shadow: none;
72 | top: 0; padding: 1px 3px;
73 | background: #e1e4e9;
74 | -moz-border-radius: 4px;
75 | border-radius: 4px;
76 | }
77 |
78 | .irs-from, .irs-to, .irs-single {
79 | color: #fff;
80 | font-size: 10px; line-height: 1.333;
81 | text-shadow: none;
82 | padding: 1px 5px;
83 | background: #20b426;
84 | -moz-border-radius: 4px;
85 | border-radius: 4px;
86 | }
87 | .irs-from:after, .irs-to:after, .irs-single:after {
88 | position: absolute; display: block; content: "";
89 | bottom: -6px; left: 50%;
90 | width: 0; height: 0;
91 | margin-left: -3px;
92 | overflow: hidden;
93 | border: 3px solid transparent;
94 | border-top-color: #20b426;
95 | }
96 |
97 | .irs-grid {
98 | height: 34px;
99 | }
100 | .irs-grid-pol {
101 | background: #c0c0c0;
102 | }
103 | .irs-grid-text {
104 | bottom: 12px;
105 | color: #c0c0c0;
106 | }
107 |
108 | .irs-disable-mask {
109 |
110 | }
111 | .irs-disabled {
112 |
113 | }
114 | .lt-ie9 .irs-disabled {
115 |
116 | }
117 |
--------------------------------------------------------------------------------
/forgotpass.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | Miminium
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
73 |
74 |
75 |
--------------------------------------------------------------------------------
/asset/js/plugins/flot/jquery.colorhelpers.min.js:
--------------------------------------------------------------------------------
1 | (function($){$.color={};$.color.make=function(r,g,b,a){var o={};o.r=r||0;o.g=g||0;o.b=b||0;o.a=a!=null?a:1;o.add=function(c,d){for(var i=0;i=1){return"rgb("+[o.r,o.g,o.b].join(",")+")"}else{return"rgba("+[o.r,o.g,o.b,o.a].join(",")+")"}};o.normalize=function(){function clamp(min,value,max){return valuemax?max:value}o.r=clamp(0,parseInt(o.r),255);o.g=clamp(0,parseInt(o.g),255);o.b=clamp(0,parseInt(o.b),255);o.a=clamp(0,o.a,1);return o};o.clone=function(){return $.color.make(o.r,o.b,o.g,o.a)};return o.normalize()};$.color.extract=function(elem,css){var c;do{c=elem.css(css).toLowerCase();if(c!=""&&c!="transparent")break;elem=elem.parent()}while(elem.length&&!$.nodeName(elem.get(0),"body"));if(c=="rgba(0, 0, 0, 0)")c="transparent";return $.color.parse(c)};$.color.parse=function(str){var res,m=$.color.make;if(res=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(str))return m(parseInt(res[1],10),parseInt(res[2],10),parseInt(res[3],10));if(res=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(str))return m(parseInt(res[1],10),parseInt(res[2],10),parseInt(res[3],10),parseFloat(res[4]));if(res=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(str))return m(parseFloat(res[1])*2.55,parseFloat(res[2])*2.55,parseFloat(res[3])*2.55);if(res=/rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(str))return m(parseFloat(res[1])*2.55,parseFloat(res[2])*2.55,parseFloat(res[3])*2.55,parseFloat(res[4]));if(res=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(str))return m(parseInt(res[1],16),parseInt(res[2],16),parseInt(res[3],16));if(res=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(str))return m(parseInt(res[1]+res[1],16),parseInt(res[2]+res[2],16),parseInt(res[3]+res[3],16));var name=$.trim(str).toLowerCase();if(name=="transparent")return m(255,255,255,0);else{res=lookupColors[name]||[0,0,0];return m(res[0],res[1],res[2])}};var lookupColors={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]}})(jQuery);
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/annotating/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Flot Examples: Adding Annotations
6 |
7 |
8 |
9 |
10 |
65 |
66 |
67 |
68 |
69 | Adding Annotations
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 | Flot has support for simple background decorations such as lines and rectangles. They can be useful for marking up certain areas. You can easily add any HTML you need with standard DOM manipulation, e.g. for labels. For drawing custom shapes there is also direct access to the canvas.
79 |
80 |
81 |
82 |
85 |
86 |
87 |
88 |
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/stacking/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Flot Examples: Stacking
6 |
7 |
8 |
9 |
10 |
11 |
74 |
75 |
76 |
77 |
78 | Stacking
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 | With the stack plugin, you can have Flot stack the series. This is useful if you wish to display both a total and the constituents it is made of. The only requirement is that you provide the input sorted on x.
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
105 |
106 |
107 |
108 |
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/axes-interacting/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Flot Examples: Interacting with axes
6 |
7 |
8 |
9 |
10 |
71 |
72 |
73 |
74 |
75 | Interacting with axes
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 | With multiple axes, you sometimes need to interact with them. A simple way to do this is to draw the plot, deduce the axis placements and insert a couple of divs on top to catch events.
85 |
86 | Try clicking an axis.
87 |
88 |
89 |
90 |
91 |
92 |
95 |
96 |
97 |
98 |
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/axes-time-zones/tz/etcetera:
--------------------------------------------------------------------------------
1 | #
2 | # This file is in the public domain, so clarified as of
3 | # 2009-05-17 by Arthur David Olson.
4 |
5 | # These entries are mostly present for historical reasons, so that
6 | # people in areas not otherwise covered by the tz files could "zic -l"
7 | # to a time zone that was right for their area. These days, the
8 | # tz files cover almost all the inhabited world, and the only practical
9 | # need now for the entries that are not on UTC are for ships at sea
10 | # that cannot use POSIX TZ settings.
11 |
12 | Zone Etc/GMT 0 - GMT
13 | Zone Etc/UTC 0 - UTC
14 | Zone Etc/UCT 0 - UCT
15 |
16 | # The following link uses older naming conventions,
17 | # but it belongs here, not in the file `backward',
18 | # as functions like gmtime load the "GMT" file to handle leap seconds properly.
19 | # We want this to work even on installations that omit the other older names.
20 | Link Etc/GMT GMT
21 |
22 | Link Etc/UTC Etc/Universal
23 | Link Etc/UTC Etc/Zulu
24 |
25 | Link Etc/GMT Etc/Greenwich
26 | Link Etc/GMT Etc/GMT-0
27 | Link Etc/GMT Etc/GMT+0
28 | Link Etc/GMT Etc/GMT0
29 |
30 | # We use POSIX-style signs in the Zone names and the output abbreviations,
31 | # even though this is the opposite of what many people expect.
32 | # POSIX has positive signs west of Greenwich, but many people expect
33 | # positive signs east of Greenwich. For example, TZ='Etc/GMT+4' uses
34 | # the abbreviation "GMT+4" and corresponds to 4 hours behind UTC
35 | # (i.e. west of Greenwich) even though many people would expect it to
36 | # mean 4 hours ahead of UTC (i.e. east of Greenwich).
37 | #
38 | # In the draft 5 of POSIX 1003.1-200x, the angle bracket notation allows for
39 | # TZ='+4'; if you want time zone abbreviations conforming to
40 | # ISO 8601 you can use TZ='<-0400>+4'. Thus the commonly-expected
41 | # offset is kept within the angle bracket (and is used for display)
42 | # while the POSIX sign is kept outside the angle bracket (and is used
43 | # for calculation).
44 | #
45 | # Do not use a TZ setting like TZ='GMT+4', which is four hours behind
46 | # GMT but uses the completely misleading abbreviation "GMT".
47 |
48 | # Earlier incarnations of this package were not POSIX-compliant,
49 | # and had lines such as
50 | # Zone GMT-12 -12 - GMT-1200
51 | # We did not want things to change quietly if someone accustomed to the old
52 | # way does a
53 | # zic -l GMT-12
54 | # so we moved the names into the Etc subdirectory.
55 |
56 | Zone Etc/GMT-14 14 - GMT-14 # 14 hours ahead of GMT
57 | Zone Etc/GMT-13 13 - GMT-13
58 | Zone Etc/GMT-12 12 - GMT-12
59 | Zone Etc/GMT-11 11 - GMT-11
60 | Zone Etc/GMT-10 10 - GMT-10
61 | Zone Etc/GMT-9 9 - GMT-9
62 | Zone Etc/GMT-8 8 - GMT-8
63 | Zone Etc/GMT-7 7 - GMT-7
64 | Zone Etc/GMT-6 6 - GMT-6
65 | Zone Etc/GMT-5 5 - GMT-5
66 | Zone Etc/GMT-4 4 - GMT-4
67 | Zone Etc/GMT-3 3 - GMT-3
68 | Zone Etc/GMT-2 2 - GMT-2
69 | Zone Etc/GMT-1 1 - GMT-1
70 | Zone Etc/GMT+1 -1 - GMT+1
71 | Zone Etc/GMT+2 -2 - GMT+2
72 | Zone Etc/GMT+3 -3 - GMT+3
73 | Zone Etc/GMT+4 -4 - GMT+4
74 | Zone Etc/GMT+5 -5 - GMT+5
75 | Zone Etc/GMT+6 -6 - GMT+6
76 | Zone Etc/GMT+7 -7 - GMT+7
77 | Zone Etc/GMT+8 -8 - GMT+8
78 | Zone Etc/GMT+9 -9 - GMT+9
79 | Zone Etc/GMT+10 -10 - GMT+10
80 | Zone Etc/GMT+11 -11 - GMT+11
81 | Zone Etc/GMT+12 -12 - GMT+12
82 |
--------------------------------------------------------------------------------
/asset/js/plugins/flot/examples/realtime/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Flot Examples: Real-time updates
6 |
7 |
8 |
9 |
10 |
98 |
99 |
100 |
101 |
102 | Real-time updates
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 | You can update a chart periodically to get a real-time effect by using a timer to insert the new data in the plot and redraw it.
112 |
113 | Time between updates: milliseconds
114 |
115 |
116 |
117 |
120 |
121 |
122 |
123 |
--------------------------------------------------------------------------------
/asset/css/plugins/nouislider.min.css:
--------------------------------------------------------------------------------
1 | /*! nouislider - 8.1.0 - 2015-10-25 16:05:44 */
2 |
3 |
4 | .noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative;direction:ltr}.noUi-base{width:100%;height:100%;position:relative;z-index:1}.noUi-origin{position:absolute;right:0;top:0;left:0;bottom:0}.noUi-handle{position:relative;z-index:1}.noUi-stacking .noUi-handle{z-index:10}.noUi-state-tap .noUi-origin{-webkit-transition:left .3s,top .3s;transition:left .3s,top .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-base{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;left:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;left:-6px;top:-17px}.noUi-background{background:#FAFAFA;box-shadow:inset 0 1px 1px #f0f0f0}.noUi-connect{background:#3FB8AF;box-shadow:inset 0 0 3px rgba(51,51,51,.45);-webkit-transition:background 450ms;transition:background 450ms}.noUi-origin{border-radius:2px}.noUi-target{border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-target.noUi-connect{box-shadow:inset 0 0 3px rgba(51,51,51,.45),0 3px 6px -5px #BBB}.noUi-draggable{cursor:w-resize}.noUi-vertical .noUi-draggable{cursor:n-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect,[disabled].noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-origin{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{width:40px;position:absolute;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-large,.noUi-marker-sub{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:50px;top:100%;left:0;width:100%}.noUi-value-horizontal{margin-left:-20px;padding-top:20px}.noUi-value-horizontal.noUi-value-sub{padding-top:15px}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{width:15px;margin-left:20px;margin-top:-5px}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;padding:5px;left:-9px;text-align:center;width:50px}.noUi-handle-lower .noUi-tooltip{top:-32px}.noUi-handle-upper .noUi-tooltip{bottom:-32px}#showcase {margin: 0 20px;text-align: center;}#range{height: 300px;margin: 0 auto 30px;}#value-span,#value-input{width: 50%;float: left;display: block;text-align: center;margin: 0;}
5 |
--------------------------------------------------------------------------------