|
@ -0,0 +1,11 @@
|
||||||
|
# editorconfig.org
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
tab_width = 2
|
||||||
|
end_of_line = lf
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
insert_final_newline = true
|
|
@ -0,0 +1,4 @@
|
||||||
|
.sass-cache
|
||||||
|
node_modules/
|
||||||
|
.DS_Store
|
||||||
|
test/
|
4
asset/static/css/animate.min.css → asset/static/animate.css-3.5.1/animate.min.css
vendored
Executable file → Normal file
|
@ -1,208 +0,0 @@
|
||||||
/*!
|
|
||||||
* FullCalendar v2.6.1 Print Stylesheet
|
|
||||||
* Docs & License: http://fullcalendar.io/
|
|
||||||
* (c) 2015 Adam Shaw
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Include this stylesheet on your page to get a more printer-friendly calendar.
|
|
||||||
* When including this stylesheet, use the media='print' attribute of the <link> tag.
|
|
||||||
* Make sure to include this stylesheet IN ADDITION to the regular fullcalendar.css.
|
|
||||||
*/
|
|
||||||
|
|
||||||
.fc {
|
|
||||||
max-width: 100% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Global Event Restyling
|
|
||||||
--------------------------------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
.fc-event {
|
|
||||||
background: #fff !important;
|
|
||||||
color: #000 !important;
|
|
||||||
page-break-inside: avoid;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fc-event .fc-resizer {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Table & Day-Row Restyling
|
|
||||||
--------------------------------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
th,
|
|
||||||
td,
|
|
||||||
hr,
|
|
||||||
thead,
|
|
||||||
tbody,
|
|
||||||
.fc-row {
|
|
||||||
border-color: #ccc !important;
|
|
||||||
background: #fff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* kill the overlaid, absolutely-positioned components */
|
|
||||||
/* common... */
|
|
||||||
.fc-bg,
|
|
||||||
.fc-bgevent-skeleton,
|
|
||||||
.fc-highlight-skeleton,
|
|
||||||
.fc-helper-skeleton,
|
|
||||||
/* for timegrid. within cells within table skeletons... */
|
|
||||||
.fc-bgevent-container,
|
|
||||||
.fc-business-container,
|
|
||||||
.fc-highlight-container,
|
|
||||||
.fc-helper-container {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* don't force a min-height on rows (for DayGrid) */
|
|
||||||
.fc tbody .fc-row {
|
|
||||||
height: auto !important; /* undo height that JS set in distributeHeight */
|
|
||||||
min-height: 0 !important; /* undo the min-height from each view's specific stylesheet */
|
|
||||||
}
|
|
||||||
|
|
||||||
.fc tbody .fc-row .fc-content-skeleton {
|
|
||||||
position: static; /* undo .fc-rigid */
|
|
||||||
padding-bottom: 0 !important; /* use a more border-friendly method for this... */
|
|
||||||
}
|
|
||||||
|
|
||||||
.fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td { /* only works in newer browsers */
|
|
||||||
padding-bottom: 1em; /* ...gives space within the skeleton. also ensures min height in a way */
|
|
||||||
}
|
|
||||||
|
|
||||||
.fc tbody .fc-row .fc-content-skeleton table {
|
|
||||||
/* provides a min-height for the row, but only effective for IE, which exaggerates this value,
|
|
||||||
making it look more like 3em. for other browers, it will already be this tall */
|
|
||||||
height: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Undo month-view event limiting. Display all events and hide the "more" links
|
|
||||||
--------------------------------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
.fc-more-cell,
|
|
||||||
.fc-more {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fc tr.fc-limited {
|
|
||||||
display: table-row !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fc td.fc-limited {
|
|
||||||
display: table-cell !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fc-popover {
|
|
||||||
display: none; /* never display the "more.." popover in print mode */
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* TimeGrid Restyling
|
|
||||||
--------------------------------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
/* undo the min-height 100% trick used to fill the container's height */
|
|
||||||
.fc-time-grid {
|
|
||||||
min-height: 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* don't display the side axis at all ("all-day" and time cells) */
|
|
||||||
.fc-agenda-view .fc-axis {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* don't display the horizontal lines */
|
|
||||||
.fc-slats,
|
|
||||||
.fc-time-grid hr { /* this hr is used when height is underused and needs to be filled */
|
|
||||||
display: none !important; /* important overrides inline declaration */
|
|
||||||
}
|
|
||||||
|
|
||||||
/* let the container that holds the events be naturally positioned and create real height */
|
|
||||||
.fc-time-grid .fc-content-skeleton {
|
|
||||||
position: static;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* in case there are no events, we still want some height */
|
|
||||||
.fc-time-grid .fc-content-skeleton table {
|
|
||||||
height: 4em;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* kill the horizontal spacing made by the event container. event margins will be done below */
|
|
||||||
.fc-time-grid .fc-event-container {
|
|
||||||
margin: 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* TimeGrid *Event* Restyling
|
|
||||||
--------------------------------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
/* naturally position events, vertically stacking them */
|
|
||||||
.fc-time-grid .fc-event {
|
|
||||||
position: static !important;
|
|
||||||
margin: 3px 2px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* for events that continue to a future day, give the bottom border back */
|
|
||||||
.fc-time-grid .fc-event.fc-not-end {
|
|
||||||
border-bottom-width: 1px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* indicate the event continues via "..." text */
|
|
||||||
.fc-time-grid .fc-event.fc-not-end:after {
|
|
||||||
content: "...";
|
|
||||||
}
|
|
||||||
|
|
||||||
/* for events that are continuations from previous days, give the top border back */
|
|
||||||
.fc-time-grid .fc-event.fc-not-start {
|
|
||||||
border-top-width: 1px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* indicate the event is a continuation via "..." text */
|
|
||||||
.fc-time-grid .fc-event.fc-not-start:before {
|
|
||||||
content: "...";
|
|
||||||
}
|
|
||||||
|
|
||||||
/* time */
|
|
||||||
|
|
||||||
/* undo a previous declaration and let the time text span to a second line */
|
|
||||||
.fc-time-grid .fc-event .fc-time {
|
|
||||||
white-space: normal !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* hide the the time that is normally displayed... */
|
|
||||||
.fc-time-grid .fc-event .fc-time span {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ...replace it with a more verbose version (includes AM/PM) stored in an html attribute */
|
|
||||||
.fc-time-grid .fc-event .fc-time:after {
|
|
||||||
content: attr(data-full);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Vertical Scroller & Containers
|
|
||||||
--------------------------------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
/* kill the scrollbars and allow natural height */
|
|
||||||
.fc-scroller,
|
|
||||||
.fc-day-grid-container, /* these divs might be assigned height, which we need to cleared */
|
|
||||||
.fc-time-grid-container { /* */
|
|
||||||
overflow: visible !important;
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* kill the horizontal border/padding used to compensate for scrollbars */
|
|
||||||
.fc-row {
|
|
||||||
border: 0 !important;
|
|
||||||
margin: 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Button Controls
|
|
||||||
--------------------------------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
.fc-button-group,
|
|
||||||
.fc button {
|
|
||||||
display: none; /* don't display any button-related controls */
|
|
||||||
}
|
|
|
@ -1,9 +0,0 @@
|
||||||
/*!
|
|
||||||
* Bootstrap Colorpicker
|
|
||||||
* http://mjolnic.github.io/bootstrap-colorpicker/
|
|
||||||
*
|
|
||||||
* Originally written by (c) 2012 Stefan Petre
|
|
||||||
* Licensed under the Apache License v2.0
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0.txt
|
|
||||||
*
|
|
||||||
*/.colorpicker-saturation{float:left;width:100px;height:100px;cursor:crosshair;background-image:url("../colorpicker/img/bootstrap-colorpicker/saturation.png")}.colorpicker-saturation i{position:absolute;top:0;left:0;display:block;width:5px;height:5px;margin:-4px 0 0 -4px;border:1px solid #000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.colorpicker-saturation i b{display:block;width:5px;height:5px;border:1px solid #fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.colorpicker-hue,.colorpicker-alpha{float:left;width:15px;height:100px;margin-bottom:4px;margin-left:4px;cursor:row-resize}.colorpicker-hue i,.colorpicker-alpha i{position:absolute;top:0;left:0;display:block;width:100%;height:1px;margin-top:-1px;background:#000;border-top:1px solid #fff}.colorpicker-hue{background-image:url("../colorpicker/img/bootstrap-colorpicker/hue.png")}.colorpicker-alpha{display:none;background-image:url("../colorpicker/img/bootstrap-colorpicker/alpha.png")}.colorpicker-saturation,.colorpicker-hue,.colorpicker-alpha{background-size:contain}.colorpicker{top:0;left:0;z-index:2500;min-width:130px;padding:4px;margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*zoom:1}.colorpicker:before,.colorpicker:after{display:table;line-height:0;content:""}.colorpicker:after{clear:both}.colorpicker:before{position:absolute;top:-7px;left:6px;display:inline-block;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-left:7px solid transparent;border-bottom-color:rgba(0,0,0,0.2);content:''}.colorpicker:after{position:absolute;top:-6px;left:7px;display:inline-block;border-right:6px solid transparent;border-bottom:6px solid #fff;border-left:6px solid transparent;content:''}.colorpicker div{position:relative}.colorpicker.colorpicker-with-alpha{min-width:140px}.colorpicker.colorpicker-with-alpha .colorpicker-alpha{display:block}.colorpicker-color{height:10px;margin-top:5px;clear:both;background-image:url("../colorpicker/img/bootstrap-colorpicker/alpha.png");background-position:0 100%}.colorpicker-color div{height:10px}.colorpicker-selectors{display:none;height:10px;margin-top:5px;clear:both}.colorpicker-selectors i{float:left;width:10px;height:10px;cursor:pointer}.colorpicker-selectors i+i{margin-left:3px}.colorpicker-element .input-group-addon i,.colorpicker-element .add-on i{display:inline-block;width:16px;height:16px;vertical-align:text-top;cursor:pointer}.colorpicker.colorpicker-inline{position:relative;z-index:auto;display:inline-block;float:none}.colorpicker.colorpicker-horizontal{width:110px;height:auto;min-width:110px}.colorpicker.colorpicker-horizontal .colorpicker-saturation{margin-bottom:4px}.colorpicker.colorpicker-horizontal .colorpicker-color{width:100px}.colorpicker.colorpicker-horizontal .colorpicker-hue,.colorpicker.colorpicker-horizontal .colorpicker-alpha{float:left;width:100px;height:15px;margin-bottom:4px;margin-left:0;cursor:col-resize}.colorpicker.colorpicker-horizontal .colorpicker-hue i,.colorpicker.colorpicker-horizontal .colorpicker-alpha i{position:absolute;top:0;left:0;display:block;width:1px;height:15px;margin-top:0;background:#fff;border:0}.colorpicker.colorpicker-horizontal .colorpicker-hue{background-image:url("../colorpicker/img/bootstrap-colorpicker/hue-horizontal.png")}.colorpicker.colorpicker-horizontal .colorpicker-alpha{background-image:url("../colorpicker/img/bootstrap-colorpicker/alpha-horizontal.png")}.colorpicker.colorpicker-hidden{display:none}.colorpicker.colorpicker-visible{display:block}.colorpicker-inline.colorpicker-visible{display:inline-block}.colorpicker-right:before{right:6px;left:auto}.colorpicker-right:after{right:7px;left:auto}.colorpicker-no-arrow:before{border-right:0;border-left:0}.colorpicker-no-arrow:after{border-right:0;border-left:0}
|
|
Before Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 8.6 KiB |
|
@ -1,103 +0,0 @@
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
||||||
* General page setup
|
|
||||||
*/
|
|
||||||
|
|
||||||
#dt_example {
|
|
||||||
font: 80%/1.45em "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
color: #333;
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
#dt_example #container {
|
|
||||||
width: 800px;
|
|
||||||
margin: 30px auto;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
#dt_example #footer {
|
|
||||||
margin: 50px auto 0 auto;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
#dt_example #demo {
|
|
||||||
margin: 30px auto 0 auto;
|
|
||||||
}
|
|
||||||
#dt_example .demo_jui {
|
|
||||||
margin: 30px auto 0 auto;
|
|
||||||
}
|
|
||||||
#dt_example .big {
|
|
||||||
font-size: 1.3em;
|
|
||||||
font-weight: bold;
|
|
||||||
line-height: 1.6em;
|
|
||||||
color: #4E6CA3;
|
|
||||||
}
|
|
||||||
#dt_example .spacer {
|
|
||||||
height: 20px;
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
#dt_example .clear {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
#dt_example pre {
|
|
||||||
padding: 15px;
|
|
||||||
background-color: #F5F5F5;
|
|
||||||
border: 1px solid #CCCCCC;
|
|
||||||
}
|
|
||||||
#dt_example h1 {
|
|
||||||
margin-top: 2em;
|
|
||||||
font-size: 1.3em;
|
|
||||||
font-weight: normal;
|
|
||||||
line-height: 1.6em;
|
|
||||||
color: #4E6CA3;
|
|
||||||
border-bottom: 1px solid #B0BED9;
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
#dt_example h2 {
|
|
||||||
font-size: 1.2em;
|
|
||||||
font-weight: normal;
|
|
||||||
line-height: 1.6em;
|
|
||||||
color: #4E6CA3;
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
#dt_example a {
|
|
||||||
color: #0063DC;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
#dt_example a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
#dt_example ul {
|
|
||||||
color: #4E6CA3;
|
|
||||||
}
|
|
||||||
.css_right {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
.css_left {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
.demo_links {
|
|
||||||
float: left;
|
|
||||||
width: 50%;
|
|
||||||
margin-bottom: 1em;
|
|
||||||
}
|
|
||||||
#demo_info {
|
|
||||||
padding: 5px;
|
|
||||||
border: 1px solid #B0BED9;
|
|
||||||
height: 100px;
|
|
||||||
width: 100%;
|
|
||||||
overflow: auto;
|
|
||||||
}
|
|
||||||
#dt_example code {
|
|
||||||
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
|
||||||
padding: 2px 4px !important;
|
|
||||||
white-space: nowrap;
|
|
||||||
font-size: 0.9em;
|
|
||||||
color: #D14;
|
|
||||||
background-color: #F7F7F9;
|
|
||||||
border: 1px solid #E1E1E8;
|
|
||||||
-webkit-border-radius: 3px;
|
|
||||||
-moz-border-radius: 3px;
|
|
||||||
border-radius: 3px;
|
|
||||||
}
|
|
||||||
#dt_example div.syntaxhighlighter code {
|
|
||||||
padding: 0 !important;
|
|
||||||
}
|
|
|
@ -1,258 +0,0 @@
|
||||||
.dataTables_wrapper {
|
|
||||||
position: relative;
|
|
||||||
clear: both;
|
|
||||||
zoom: 1; /* Feeling sorry for IE */
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_processing {
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
width: 250px;
|
|
||||||
height: 30px;
|
|
||||||
margin-left: -125px;
|
|
||||||
margin-top: -15px;
|
|
||||||
padding: 14px 0 2px 0;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
text-align: center;
|
|
||||||
color: #999;
|
|
||||||
font-size: 14px;
|
|
||||||
background-color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_length {
|
|
||||||
width: 40%;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_filter {
|
|
||||||
width: 50%;
|
|
||||||
float: right;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_info {
|
|
||||||
width: 60%;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_paginate {
|
|
||||||
float: right;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Pagination nested */
|
|
||||||
.paginate_disabled_previous, .paginate_enabled_previous,
|
|
||||||
.paginate_disabled_next, .paginate_enabled_next {
|
|
||||||
height: 19px;
|
|
||||||
float: left;
|
|
||||||
cursor: pointer;
|
|
||||||
*cursor: hand;
|
|
||||||
color: #111 !important;
|
|
||||||
}
|
|
||||||
.paginate_disabled_previous:hover, .paginate_enabled_previous:hover,
|
|
||||||
.paginate_disabled_next:hover, .paginate_enabled_next:hover {
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
.paginate_disabled_previous:active, .paginate_enabled_previous:active,
|
|
||||||
.paginate_disabled_next:active, .paginate_enabled_next:active {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paginate_disabled_previous,
|
|
||||||
.paginate_disabled_next {
|
|
||||||
color: #666 !important;
|
|
||||||
}
|
|
||||||
.paginate_disabled_previous, .paginate_enabled_previous {
|
|
||||||
padding-left: 23px;
|
|
||||||
}
|
|
||||||
.paginate_disabled_next, .paginate_enabled_next {
|
|
||||||
padding-right: 23px;
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paginate_disabled_previous {
|
|
||||||
background: url('../images/back_disabled.png') no-repeat top left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paginate_enabled_previous {
|
|
||||||
background: url('../images/back_enabled.png') no-repeat top left;
|
|
||||||
}
|
|
||||||
.paginate_enabled_previous:hover {
|
|
||||||
background: url('../images/back_enabled_hover.png') no-repeat top left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paginate_disabled_next {
|
|
||||||
background: url('../images/forward_disabled.png') no-repeat top right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paginate_enabled_next {
|
|
||||||
background: url('../images/forward_enabled.png') no-repeat top right;
|
|
||||||
}
|
|
||||||
.paginate_enabled_next:hover {
|
|
||||||
background: url('../images/forward_enabled_hover.png') no-repeat top right;
|
|
||||||
}
|
|
||||||
table.display {
|
|
||||||
margin: 0 auto;
|
|
||||||
clear: both;
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display thead th {
|
|
||||||
padding: 8px 18px 8px 10px;
|
|
||||||
border-bottom: 1px solid black;
|
|
||||||
font-weight: bold;
|
|
||||||
cursor: pointer;
|
|
||||||
* cursor: hand;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display tfoot th {
|
|
||||||
padding: 3px 18px 3px 10px;
|
|
||||||
border-top: 1px solid black;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display tr.heading2 td {
|
|
||||||
border-bottom: 1px solid #aaa;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display td {
|
|
||||||
padding: 3px 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display td.center {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sorting_asc {
|
|
||||||
background: url('../images/sort_asc.png') no-repeat center right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sorting_desc {
|
|
||||||
background: url('../images/sort_desc.png') no-repeat center right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sorting {
|
|
||||||
background: url('../images/sort_both.png') no-repeat center right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sorting_asc_disabled {
|
|
||||||
background: url('../images/sort_asc_disabled.png') no-repeat center right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sorting_desc_disabled {
|
|
||||||
background: url('../images/sort_desc_disabled.png') no-repeat center right;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display thead th:active,
|
|
||||||
table.display thead td:active {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
.dataTables_scroll {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_scrollBody {
|
|
||||||
*margin-top: -1px;
|
|
||||||
-webkit-overflow-scrolling: touch;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top, .bottom {
|
|
||||||
background-color: #F5F5F5;
|
|
||||||
border: 1px solid #CCCCCC;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top .dataTables_info {
|
|
||||||
float: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.clear {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_empty {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
tfoot input {
|
|
||||||
margin: 0.5em 0;
|
|
||||||
width: 100%;
|
|
||||||
color: #444;
|
|
||||||
}
|
|
||||||
|
|
||||||
tfoot input.search_init {
|
|
||||||
color: #999;
|
|
||||||
}
|
|
||||||
|
|
||||||
td.group {
|
|
||||||
background-color: #d1cfd0;
|
|
||||||
border-bottom: 2px solid #A19B9E;
|
|
||||||
border-top: 2px solid #A19B9E;
|
|
||||||
}
|
|
||||||
|
|
||||||
td.details {
|
|
||||||
background-color: #d1cfd0;
|
|
||||||
border: 2px solid #A19B9E;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.example_alt_pagination div.dataTables_info {
|
|
||||||
width: 40%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers {
|
|
||||||
width: 400px;
|
|
||||||
height: 22px;
|
|
||||||
line-height: 22px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a:active {
|
|
||||||
outline: none
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a.paginate_button,
|
|
||||||
.paging_full_numbers a.paginate_active {
|
|
||||||
border: 1px solid #aaa;
|
|
||||||
-webkit-border-radius: 5px;
|
|
||||||
-moz-border-radius: 5px;
|
|
||||||
padding: 2px 5px;
|
|
||||||
margin: 0 3px;
|
|
||||||
cursor: pointer;
|
|
||||||
*cursor: hand;
|
|
||||||
color: #333 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a.paginate_button {
|
|
||||||
background-color: #ddd;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a.paginate_button:hover {
|
|
||||||
background-color: #ccc;
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a.paginate_active {
|
|
||||||
background-color: #99B3FF;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display tr.even.row_selected td {
|
|
||||||
background-color: #B0BED9;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display tr.odd.row_selected td {
|
|
||||||
background-color: #9FAFD1;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
div.box {
|
|
||||||
height: 100px;
|
|
||||||
padding: 10px;
|
|
||||||
overflow: auto;
|
|
||||||
border: 1px solid #8080FF;
|
|
||||||
background-color: #E5E5FF;
|
|
||||||
}
|
|
|
@ -1,501 +0,0 @@
|
||||||
/*
|
|
||||||
* File: demo_table_jui.css
|
|
||||||
* CVS: $Id$
|
|
||||||
* Description: CSS descriptions for DataTables demo pages
|
|
||||||
* Author: Allan Jardine
|
|
||||||
* Created: Tue May 12 06:47:22 BST 2009
|
|
||||||
* Modified: $Date$ by $Author$
|
|
||||||
* Language: CSS
|
|
||||||
* Project: DataTables
|
|
||||||
*
|
|
||||||
* Copyright 2009 Allan Jardine. All Rights Reserved.
|
|
||||||
*
|
|
||||||
* ***************************************************************************
|
|
||||||
* DESCRIPTION
|
|
||||||
*
|
|
||||||
* The styles given here are suitable for the demos that are used with the standard DataTables
|
|
||||||
* distribution (see www.datatables.net). You will most likely wish to modify these styles to
|
|
||||||
* meet the layout requirements of your site.
|
|
||||||
*
|
|
||||||
* Common issues:
|
|
||||||
* 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
|
|
||||||
* no conflict between the two pagination types. If you want to use full_numbers pagination
|
|
||||||
* ensure that you either have "example_alt_pagination" as a body class name, or better yet,
|
|
||||||
* modify that selector.
|
|
||||||
* Note that the path used for Images is relative. All images are by default located in
|
|
||||||
* ../images/ - relative to this CSS file.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* jQuery UI specific styling
|
|
||||||
*/
|
|
||||||
|
|
||||||
.paging_two_button .ui-button {
|
|
||||||
float: left;
|
|
||||||
cursor: pointer;
|
|
||||||
* cursor: hand;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers .ui-button {
|
|
||||||
padding: 2px 6px;
|
|
||||||
margin: 0;
|
|
||||||
cursor: pointer;
|
|
||||||
* cursor: hand;
|
|
||||||
color: #333 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_paginate .ui-button {
|
|
||||||
margin-right: -0.1em !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers {
|
|
||||||
width: 350px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_wrapper .ui-toolbar {
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_paginate {
|
|
||||||
width: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_info {
|
|
||||||
padding-top: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display thead th {
|
|
||||||
padding: 3px 0px 3px 10px;
|
|
||||||
cursor: pointer;
|
|
||||||
* cursor: hand;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.dataTables_wrapper .ui-widget-header {
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Sort arrow icon positioning
|
|
||||||
*/
|
|
||||||
table.display thead th div.DataTables_sort_wrapper {
|
|
||||||
position: relative;
|
|
||||||
padding-right: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display thead th div.DataTables_sort_wrapper span {
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
margin-top: -8px;
|
|
||||||
right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
||||||
*
|
|
||||||
* Everything below this line is the same as demo_table.css. This file is
|
|
||||||
* required for 'cleanliness' of the markup
|
|
||||||
*
|
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
||||||
* DataTables features
|
|
||||||
*/
|
|
||||||
|
|
||||||
.dataTables_wrapper {
|
|
||||||
position: relative;
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_processing {
|
|
||||||
position: absolute;
|
|
||||||
top: 0px;
|
|
||||||
left: 50%;
|
|
||||||
width: 250px;
|
|
||||||
margin-left: -125px;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
text-align: center;
|
|
||||||
color: #999;
|
|
||||||
font-size: 11px;
|
|
||||||
padding: 2px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_length {
|
|
||||||
width: 40%;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_filter {
|
|
||||||
width: 50%;
|
|
||||||
float: right;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_info {
|
|
||||||
width: 50%;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_paginate {
|
|
||||||
float: right;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
||||||
* DataTables display
|
|
||||||
*/
|
|
||||||
table.display {
|
|
||||||
margin: 0 auto;
|
|
||||||
width: 100%;
|
|
||||||
clear: both;
|
|
||||||
border-collapse: collapse;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display tfoot th {
|
|
||||||
padding: 3px 0px 3px 10px;
|
|
||||||
font-weight: bold;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display tr.heading2 td {
|
|
||||||
border-bottom: 1px solid #aaa;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display td {
|
|
||||||
padding: 3px 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display td.center {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
||||||
* DataTables sorting
|
|
||||||
*/
|
|
||||||
|
|
||||||
.sorting_asc {
|
|
||||||
background: url('../images/sort_asc.png') no-repeat center right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sorting_desc {
|
|
||||||
background: url('../images/sort_desc.png') no-repeat center right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sorting {
|
|
||||||
background: url('../images/sort_both.png') no-repeat center right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sorting_asc_disabled {
|
|
||||||
background: url('../images/sort_asc_disabled.png') no-repeat center right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sorting_desc_disabled {
|
|
||||||
background: url('../images/sort_desc_disabled.png') no-repeat center right;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
||||||
* DataTables row classes
|
|
||||||
*/
|
|
||||||
table.display tr.odd.gradeA {
|
|
||||||
background-color: #ddffdd;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display tr.even.gradeA {
|
|
||||||
background-color: #eeffee;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
table.display tr.odd.gradeA {
|
|
||||||
background-color: #ddffdd;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display tr.even.gradeA {
|
|
||||||
background-color: #eeffee;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display tr.odd.gradeC {
|
|
||||||
background-color: #ddddff;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display tr.even.gradeC {
|
|
||||||
background-color: #eeeeff;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display tr.odd.gradeX {
|
|
||||||
background-color: #ffdddd;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display tr.even.gradeX {
|
|
||||||
background-color: #ffeeee;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display tr.odd.gradeU {
|
|
||||||
background-color: #ddd;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display tr.even.gradeU {
|
|
||||||
background-color: #eee;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
tr.odd {
|
|
||||||
background-color: #E2E4FF;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.even {
|
|
||||||
background-color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
||||||
* Misc
|
|
||||||
*/
|
|
||||||
.dataTables_scroll {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_scrollBody {
|
|
||||||
-webkit-overflow-scrolling: touch;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top, .bottom {
|
|
||||||
padding: 15px;
|
|
||||||
background-color: #F5F5F5;
|
|
||||||
border: 1px solid #CCCCCC;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top .dataTables_info {
|
|
||||||
float: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.clear {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_empty {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
tfoot input {
|
|
||||||
margin: 0.5em 0;
|
|
||||||
width: 100%;
|
|
||||||
color: #444;
|
|
||||||
}
|
|
||||||
|
|
||||||
tfoot input.search_init {
|
|
||||||
color: #999;
|
|
||||||
}
|
|
||||||
|
|
||||||
td.group {
|
|
||||||
background-color: #d1cfd0;
|
|
||||||
border-bottom: 2px solid #A19B9E;
|
|
||||||
border-top: 2px solid #A19B9E;
|
|
||||||
}
|
|
||||||
|
|
||||||
td.details {
|
|
||||||
background-color: #d1cfd0;
|
|
||||||
border: 2px solid #A19B9E;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.example_alt_pagination div.dataTables_info {
|
|
||||||
width: 40%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a.paginate_button,
|
|
||||||
.paging_full_numbers a.paginate_active {
|
|
||||||
border: 1px solid #aaa;
|
|
||||||
-webkit-border-radius: 5px;
|
|
||||||
-moz-border-radius: 5px;
|
|
||||||
padding: 2px 5px;
|
|
||||||
margin: 0 3px;
|
|
||||||
cursor: pointer;
|
|
||||||
*cursor: hand;
|
|
||||||
color: #333 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a.paginate_button {
|
|
||||||
background-color: #ddd;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a.paginate_button:hover {
|
|
||||||
background-color: #ccc;
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a.paginate_active {
|
|
||||||
background-color: #99B3FF;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display tr.even.row_selected td {
|
|
||||||
background-color: #B0BED9;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.display tr.odd.row_selected td {
|
|
||||||
background-color: #9FAFD1;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Sorting classes for columns
|
|
||||||
*/
|
|
||||||
/* For the standard odd/even */
|
|
||||||
tr.odd td.sorting_1 {
|
|
||||||
background-color: #D3D6FF;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.odd td.sorting_2 {
|
|
||||||
background-color: #DADCFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.odd td.sorting_3 {
|
|
||||||
background-color: #E0E2FF;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.even td.sorting_1 {
|
|
||||||
background-color: #EAEBFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.even td.sorting_2 {
|
|
||||||
background-color: #F2F3FF;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.even td.sorting_3 {
|
|
||||||
background-color: #F9F9FF;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* For the Conditional-CSS grading rows */
|
|
||||||
/*
|
|
||||||
Colour calculations (based off the main row colours)
|
|
||||||
Level 1:
|
|
||||||
dd > c4
|
|
||||||
ee > d5
|
|
||||||
Level 2:
|
|
||||||
dd > d1
|
|
||||||
ee > e2
|
|
||||||
*/
|
|
||||||
tr.odd.gradeA td.sorting_1 {
|
|
||||||
background-color: #c4ffc4;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.odd.gradeA td.sorting_2 {
|
|
||||||
background-color: #d1ffd1;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.odd.gradeA td.sorting_3 {
|
|
||||||
background-color: #d1ffd1;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.even.gradeA td.sorting_1 {
|
|
||||||
background-color: #d5ffd5;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.even.gradeA td.sorting_2 {
|
|
||||||
background-color: #e2ffe2;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.even.gradeA td.sorting_3 {
|
|
||||||
background-color: #e2ffe2;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.odd.gradeC td.sorting_1 {
|
|
||||||
background-color: #c4c4ff;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.odd.gradeC td.sorting_2 {
|
|
||||||
background-color: #d1d1ff;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.odd.gradeC td.sorting_3 {
|
|
||||||
background-color: #d1d1ff;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.even.gradeC td.sorting_1 {
|
|
||||||
background-color: #d5d5ff;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.even.gradeC td.sorting_2 {
|
|
||||||
background-color: #e2e2ff;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.even.gradeC td.sorting_3 {
|
|
||||||
background-color: #e2e2ff;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.odd.gradeX td.sorting_1 {
|
|
||||||
background-color: #ffc4c4;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.odd.gradeX td.sorting_2 {
|
|
||||||
background-color: #ffd1d1;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.odd.gradeX td.sorting_3 {
|
|
||||||
background-color: #ffd1d1;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.even.gradeX td.sorting_1 {
|
|
||||||
background-color: #ffd5d5;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.even.gradeX td.sorting_2 {
|
|
||||||
background-color: #ffe2e2;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.even.gradeX td.sorting_3 {
|
|
||||||
background-color: #ffe2e2;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.odd.gradeU td.sorting_1 {
|
|
||||||
background-color: #c4c4c4;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.odd.gradeU td.sorting_2 {
|
|
||||||
background-color: #d1d1d1;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.odd.gradeU td.sorting_3 {
|
|
||||||
background-color: #d1d1d1;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.even.gradeU td.sorting_1 {
|
|
||||||
background-color: #d5d5d5;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.even.gradeU td.sorting_2 {
|
|
||||||
background-color: #e2e2e2;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.even.gradeU td.sorting_3 {
|
|
||||||
background-color: #e2e2e2;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Row highlighting example
|
|
||||||
*/
|
|
||||||
.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
|
|
||||||
background-color: #ECFFB3;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
|
|
||||||
background-color: #E6FF99;
|
|
||||||
}
|
|
|
@ -1,221 +0,0 @@
|
||||||
|
|
||||||
/*
|
|
||||||
* Table
|
|
||||||
*/
|
|
||||||
table.dataTable {
|
|
||||||
margin: 0 auto;
|
|
||||||
clear: both;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable thead th {
|
|
||||||
padding: 3px 18px 3px 10px;
|
|
||||||
border-bottom: 1px solid black;
|
|
||||||
font-weight: bold;
|
|
||||||
cursor: pointer;
|
|
||||||
*cursor: hand;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable tfoot th {
|
|
||||||
padding: 3px 18px 3px 10px;
|
|
||||||
border-top: 1px solid black;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable td {
|
|
||||||
padding: 3px 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable td.center,
|
|
||||||
table.dataTable td.dataTables_empty {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable tr.odd { background-color: #E2E4FF; }
|
|
||||||
table.dataTable tr.even { background-color: white; }
|
|
||||||
|
|
||||||
table.dataTable tr.odd td.sorting_1 { background-color: #D3D6FF; }
|
|
||||||
table.dataTable tr.odd td.sorting_2 { background-color: #DADCFF; }
|
|
||||||
table.dataTable tr.odd td.sorting_3 { background-color: #E0E2FF; }
|
|
||||||
table.dataTable tr.even td.sorting_1 { background-color: #EAEBFF; }
|
|
||||||
table.dataTable tr.even td.sorting_2 { background-color: #F2F3FF; }
|
|
||||||
table.dataTable tr.even td.sorting_3 { background-color: #F9F9FF; }
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Table wrapper
|
|
||||||
*/
|
|
||||||
.dataTables_wrapper {
|
|
||||||
position: relative;
|
|
||||||
clear: both;
|
|
||||||
*zoom: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Page length menu
|
|
||||||
*/
|
|
||||||
.dataTables_length {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Filter
|
|
||||||
*/
|
|
||||||
.dataTables_filter {
|
|
||||||
float: right;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Table information
|
|
||||||
*/
|
|
||||||
.dataTables_info {
|
|
||||||
clear: both;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Pagination
|
|
||||||
*/
|
|
||||||
.dataTables_paginate {
|
|
||||||
float: right;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Two button pagination - previous / next */
|
|
||||||
.paginate_disabled_previous,
|
|
||||||
.paginate_enabled_previous,
|
|
||||||
.paginate_disabled_next,
|
|
||||||
.paginate_enabled_next {
|
|
||||||
height: 19px;
|
|
||||||
float: left;
|
|
||||||
cursor: pointer;
|
|
||||||
*cursor: hand;
|
|
||||||
color: #111 !important;
|
|
||||||
}
|
|
||||||
.paginate_disabled_previous:hover,
|
|
||||||
.paginate_enabled_previous:hover,
|
|
||||||
.paginate_disabled_next:hover,
|
|
||||||
.paginate_enabled_next:hover {
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
.paginate_disabled_previous:active,
|
|
||||||
.paginate_enabled_previous:active,
|
|
||||||
.paginate_disabled_next:active,
|
|
||||||
.paginate_enabled_next:active {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paginate_disabled_previous,
|
|
||||||
.paginate_disabled_next {
|
|
||||||
color: #666 !important;
|
|
||||||
}
|
|
||||||
.paginate_disabled_previous,
|
|
||||||
.paginate_enabled_previous {
|
|
||||||
padding-left: 23px;
|
|
||||||
}
|
|
||||||
.paginate_disabled_next,
|
|
||||||
.paginate_enabled_next {
|
|
||||||
padding-right: 23px;
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paginate_enabled_previous { background: url('../images/back_enabled.png') no-repeat top left; }
|
|
||||||
.paginate_enabled_previous:hover { background: url('../images/back_enabled_hover.png') no-repeat top left; }
|
|
||||||
.paginate_disabled_previous { background: url('../images/back_disabled.png') no-repeat top left; }
|
|
||||||
|
|
||||||
.paginate_enabled_next { background: url('../images/forward_enabled.png') no-repeat top right; }
|
|
||||||
.paginate_enabled_next:hover { background: url('../images/forward_enabled_hover.png') no-repeat top right; }
|
|
||||||
.paginate_disabled_next { background: url('../images/forward_disabled.png') no-repeat top right; }
|
|
||||||
|
|
||||||
/* Full number pagination */
|
|
||||||
.paging_full_numbers {
|
|
||||||
height: 22px;
|
|
||||||
line-height: 22px;
|
|
||||||
}
|
|
||||||
.paging_full_numbers a:active {
|
|
||||||
outline: none
|
|
||||||
}
|
|
||||||
.paging_full_numbers a:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a.paginate_button,
|
|
||||||
.paging_full_numbers a.paginate_active {
|
|
||||||
border: 1px solid #aaa;
|
|
||||||
-webkit-border-radius: 5px;
|
|
||||||
-moz-border-radius: 5px;
|
|
||||||
border-radius: 5px;
|
|
||||||
padding: 2px 5px;
|
|
||||||
margin: 0 3px;
|
|
||||||
cursor: pointer;
|
|
||||||
*cursor: hand;
|
|
||||||
color: #333 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a.paginate_button {
|
|
||||||
background-color: #ddd;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a.paginate_button:hover {
|
|
||||||
background-color: #ccc;
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a.paginate_active {
|
|
||||||
background-color: #99B3FF;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Processing indicator
|
|
||||||
*/
|
|
||||||
.dataTables_processing {
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
width: 250px;
|
|
||||||
height: 30px;
|
|
||||||
margin-left: -125px;
|
|
||||||
margin-top: -15px;
|
|
||||||
padding: 14px 0 2px 0;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
text-align: center;
|
|
||||||
color: #999;
|
|
||||||
font-size: 14px;
|
|
||||||
background-color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Sorting
|
|
||||||
*/
|
|
||||||
.sorting { background: url('../images/sort_both.png') no-repeat center right; }
|
|
||||||
.sorting_asc { background: url('../images/sort_asc.png') no-repeat center right; }
|
|
||||||
.sorting_desc { background: url('../images/sort_desc.png') no-repeat center right; }
|
|
||||||
|
|
||||||
.sorting_asc_disabled { background: url('../images/sort_asc_disabled.png') no-repeat center right; }
|
|
||||||
.sorting_desc_disabled { background: url('../images/sort_desc_disabled.png') no-repeat center right; }
|
|
||||||
|
|
||||||
table.dataTable thead th:active,
|
|
||||||
table.dataTable thead td:active {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Scrolling
|
|
||||||
*/
|
|
||||||
.dataTables_scroll {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_scrollBody {
|
|
||||||
*margin-top: -1px;
|
|
||||||
-webkit-overflow-scrolling: touch;
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,244 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Table
|
|
||||||
*/
|
|
||||||
table.dataTable {
|
|
||||||
margin: 0 auto;
|
|
||||||
clear: both;
|
|
||||||
width: 100%;
|
|
||||||
border-collapse: collapse;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable thead th {
|
|
||||||
padding: 3px 0px 3px 10px;
|
|
||||||
cursor: pointer;
|
|
||||||
*cursor: hand;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable tfoot th {
|
|
||||||
padding: 3px 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable td {
|
|
||||||
padding: 3px 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable td.center,
|
|
||||||
table.dataTable td.dataTables_empty {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable tr.odd { background-color: #E2E4FF; }
|
|
||||||
table.dataTable tr.even { background-color: white; }
|
|
||||||
|
|
||||||
table.dataTable tr.odd td.sorting_1 { background-color: #D3D6FF; }
|
|
||||||
table.dataTable tr.odd td.sorting_2 { background-color: #DADCFF; }
|
|
||||||
table.dataTable tr.odd td.sorting_3 { background-color: #E0E2FF; }
|
|
||||||
table.dataTable tr.even td.sorting_1 { background-color: #EAEBFF; }
|
|
||||||
table.dataTable tr.even td.sorting_2 { background-color: #F2F3FF; }
|
|
||||||
table.dataTable tr.even td.sorting_3 { background-color: #F9F9FF; }
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Table wrapper
|
|
||||||
*/
|
|
||||||
.dataTables_wrapper {
|
|
||||||
position: relative;
|
|
||||||
clear: both;
|
|
||||||
*zoom: 1;
|
|
||||||
}
|
|
||||||
.dataTables_wrapper .ui-widget-header {
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
.dataTables_wrapper .ui-toolbar {
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Page length menu
|
|
||||||
*/
|
|
||||||
.dataTables_length {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Filter
|
|
||||||
*/
|
|
||||||
.dataTables_filter {
|
|
||||||
float: right;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Table information
|
|
||||||
*/
|
|
||||||
.dataTables_info {
|
|
||||||
padding-top: 3px;
|
|
||||||
clear: both;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Pagination
|
|
||||||
*/
|
|
||||||
.dataTables_paginate {
|
|
||||||
float: right;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_paginate .ui-button {
|
|
||||||
margin-right: -0.1em !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_two_button .ui-button {
|
|
||||||
float: left;
|
|
||||||
cursor: pointer;
|
|
||||||
* cursor: hand;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers .ui-button {
|
|
||||||
padding: 2px 6px;
|
|
||||||
margin: 0;
|
|
||||||
cursor: pointer;
|
|
||||||
* cursor: hand;
|
|
||||||
color: #333 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Two button pagination - previous / next */
|
|
||||||
.paginate_disabled_previous,
|
|
||||||
.paginate_enabled_previous,
|
|
||||||
.paginate_disabled_next,
|
|
||||||
.paginate_enabled_next {
|
|
||||||
height: 19px;
|
|
||||||
float: left;
|
|
||||||
cursor: pointer;
|
|
||||||
*cursor: hand;
|
|
||||||
color: #111 !important;
|
|
||||||
}
|
|
||||||
.paginate_disabled_previous:hover,
|
|
||||||
.paginate_enabled_previous:hover,
|
|
||||||
.paginate_disabled_next:hover,
|
|
||||||
.paginate_enabled_next:hover {
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
.paginate_disabled_previous:active,
|
|
||||||
.paginate_enabled_previous:active,
|
|
||||||
.paginate_disabled_next:active,
|
|
||||||
.paginate_enabled_next:active {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paginate_disabled_previous,
|
|
||||||
.paginate_disabled_next {
|
|
||||||
color: #666 !important;
|
|
||||||
}
|
|
||||||
.paginate_disabled_previous,
|
|
||||||
.paginate_enabled_previous {
|
|
||||||
padding-left: 23px;
|
|
||||||
}
|
|
||||||
.paginate_disabled_next,
|
|
||||||
.paginate_enabled_next {
|
|
||||||
padding-right: 23px;
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paginate_enabled_previous { background: url('../images/back_enabled.png') no-repeat top left; }
|
|
||||||
.paginate_enabled_previous:hover { background: url('../images/back_enabled_hover.png') no-repeat top left; }
|
|
||||||
.paginate_disabled_previous { background: url('../images/back_disabled.png') no-repeat top left; }
|
|
||||||
|
|
||||||
.paginate_enabled_next { background: url('../images/forward_enabled.png') no-repeat top right; }
|
|
||||||
.paginate_enabled_next:hover { background: url('../images/forward_enabled_hover.png') no-repeat top right; }
|
|
||||||
.paginate_disabled_next { background: url('../images/forward_disabled.png') no-repeat top right; }
|
|
||||||
|
|
||||||
/* Full number pagination */
|
|
||||||
.paging_full_numbers a:active {
|
|
||||||
outline: none
|
|
||||||
}
|
|
||||||
.paging_full_numbers a:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a.paginate_button,
|
|
||||||
.paging_full_numbers a.paginate_active {
|
|
||||||
border: 1px solid #aaa;
|
|
||||||
-webkit-border-radius: 5px;
|
|
||||||
-moz-border-radius: 5px;
|
|
||||||
border-radius: 5px;
|
|
||||||
padding: 2px 5px;
|
|
||||||
margin: 0 3px;
|
|
||||||
cursor: pointer;
|
|
||||||
*cursor: hand;
|
|
||||||
color: #333 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a.paginate_button {
|
|
||||||
background-color: #ddd;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a.paginate_button:hover {
|
|
||||||
background-color: #ccc;
|
|
||||||
text-decoration: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.paging_full_numbers a.paginate_active {
|
|
||||||
background-color: #99B3FF;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Processing indicator
|
|
||||||
*/
|
|
||||||
.dataTables_processing {
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
width: 250px;
|
|
||||||
height: 30px;
|
|
||||||
margin-left: -125px;
|
|
||||||
margin-top: -15px;
|
|
||||||
padding: 14px 0 2px 0;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
text-align: center;
|
|
||||||
color: #999;
|
|
||||||
font-size: 14px;
|
|
||||||
background-color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Sorting
|
|
||||||
*/
|
|
||||||
table.dataTable thead th div.DataTables_sort_wrapper {
|
|
||||||
position: relative;
|
|
||||||
padding-right: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable thead th div.DataTables_sort_wrapper span {
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
margin-top: -8px;
|
|
||||||
right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable th:active {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Scrolling
|
|
||||||
*/
|
|
||||||
.dataTables_scroll {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_scrollBody {
|
|
||||||
*margin-top: -1px;
|
|
||||||
-webkit-overflow-scrolling: touch;
|
|
||||||
}
|
|
||||||
|
|
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 894 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.0 KiB |
|
@ -1,336 +0,0 @@
|
||||||
/*
|
|
||||||
* File: TableTools.css
|
|
||||||
* Description: Styles for TableTools 2
|
|
||||||
* Author: Allan Jardine (www.sprymedia.co.uk)
|
|
||||||
* Language: Javascript
|
|
||||||
* License: GPL v2 / 3 point BSD
|
|
||||||
* Project: DataTables
|
|
||||||
*
|
|
||||||
* Copyright 2009-2012 Allan Jardine, all rights reserved.
|
|
||||||
*
|
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
||||||
*
|
|
||||||
* CSS name space:
|
|
||||||
* DTTT DataTables TableTools
|
|
||||||
*
|
|
||||||
* Style sheet provides:
|
|
||||||
* CONTAINER TableTools container element and styles applying to all components
|
|
||||||
* BUTTON_STYLES Action specific button styles
|
|
||||||
* SELECTING Row selection styles
|
|
||||||
* COLLECTIONS Drop down list (collection) styles
|
|
||||||
* PRINTING Print display styles
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* CONTAINER
|
|
||||||
* TableTools container element and styles applying to all components
|
|
||||||
*/
|
|
||||||
div.DTTT_container {
|
|
||||||
position: relative;
|
|
||||||
float: right;
|
|
||||||
margin-bottom: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 640px) {
|
|
||||||
div.DTTT_container {
|
|
||||||
float: none !important;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.DTTT_container:after {
|
|
||||||
visibility: hidden;
|
|
||||||
display: block;
|
|
||||||
content: "";
|
|
||||||
clear: both;
|
|
||||||
height: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
button.DTTT_button,
|
|
||||||
div.DTTT_button,
|
|
||||||
a.DTTT_button {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
margin-right: 3px;
|
|
||||||
padding: 5px 8px;
|
|
||||||
border: 1px solid #999;
|
|
||||||
cursor: pointer;
|
|
||||||
*cursor: hand;
|
|
||||||
font-size: 0.88em;
|
|
||||||
|
|
||||||
-webkit-border-radius: 2px;
|
|
||||||
-moz-border-radius: 2px;
|
|
||||||
-ms-border-radius: 2px;
|
|
||||||
-o-border-radius: 2px;
|
|
||||||
border-radius: 2px;
|
|
||||||
|
|
||||||
-webkit-box-shadow: 1px 1px 3px #ccc;
|
|
||||||
-moz-box-shadow: 1px 1px 3px #ccc;
|
|
||||||
-ms-box-shadow: 1px 1px 3px #ccc;
|
|
||||||
-o-box-shadow: 1px 1px 3px #ccc;
|
|
||||||
box-shadow: 1px 1px 3px #ccc;
|
|
||||||
|
|
||||||
/* Generated by http://www.colorzilla.com/gradient-editor/ */
|
|
||||||
background: #ffffff; /* Old browsers */
|
|
||||||
background: -webkit-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Chrome10+,Safari5.1+ */
|
|
||||||
background: -moz-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* FF3.6+ */
|
|
||||||
background: -ms-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* IE10+ */
|
|
||||||
background: -o-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Opera 11.10+ */
|
|
||||||
background: linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* W3C */
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f9f9f9',GradientType=0 ); /* IE6-9 */
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Buttons are cunning border-box sizing - we can't just use that for A and DIV due to IE6/7 */
|
|
||||||
button.DTTT_button {
|
|
||||||
height: 30px;
|
|
||||||
padding: 3px 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.DTTT_button embed {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.DTTT_button:hover,
|
|
||||||
div.DTTT_button:hover,
|
|
||||||
a.DTTT_button:hover {
|
|
||||||
border: 1px solid #666;
|
|
||||||
text-decoration: none !important;
|
|
||||||
|
|
||||||
-webkit-box-shadow: 1px 1px 3px #999;
|
|
||||||
-moz-box-shadow: 1px 1px 3px #999;
|
|
||||||
-ms-box-shadow: 1px 1px 3px #999;
|
|
||||||
-o-box-shadow: 1px 1px 3px #999;
|
|
||||||
box-shadow: 1px 1px 3px #999;
|
|
||||||
|
|
||||||
background: #f3f3f3; /* Old browsers */
|
|
||||||
background: -webkit-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* Chrome10+,Safari5.1+ */
|
|
||||||
background: -moz-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* FF3.6+ */
|
|
||||||
background: -ms-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* IE10+ */
|
|
||||||
background: -o-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* Opera 11.10+ */
|
|
||||||
background: linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* W3C */
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#f4f4f4',GradientType=0 ); /* IE6-9 */
|
|
||||||
}
|
|
||||||
|
|
||||||
button.DTTT_disabled,
|
|
||||||
div.DTTT_disabled,
|
|
||||||
a.DTTT_disabled {
|
|
||||||
color: #999;
|
|
||||||
border: 1px solid #d0d0d0;
|
|
||||||
|
|
||||||
background: #ffffff; /* Old browsers */
|
|
||||||
background: -webkit-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* Chrome10+,Safari5.1+ */
|
|
||||||
background: -moz-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* FF3.6+ */
|
|
||||||
background: -ms-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* IE10+ */
|
|
||||||
background: -o-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* Opera 11.10+ */
|
|
||||||
background: linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* W3C */
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fafafa',GradientType=0 ); /* IE6-9 */
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* BUTTON_STYLES
|
|
||||||
* Action specific button styles
|
|
||||||
* If you want images - comment this back in
|
|
||||||
|
|
||||||
a.DTTT_button_csv,
|
|
||||||
a.DTTT_button_xls,
|
|
||||||
a.DTTT_button_copy,
|
|
||||||
a.DTTT_button_pdf,
|
|
||||||
a.DTTT_button_print {
|
|
||||||
padding-right: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.DTTT_button_csv span,
|
|
||||||
a.DTTT_button_xls span,
|
|
||||||
a.DTTT_button_copy span,
|
|
||||||
a.DTTT_button_pdf span,
|
|
||||||
a.DTTT_button_print span {
|
|
||||||
display: inline-block;
|
|
||||||
height: 24px;
|
|
||||||
line-height: 24px;
|
|
||||||
padding-right: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
a.DTTT_button_csv span { background: url(../images/csv.png) no-repeat bottom right; }
|
|
||||||
a.DTTT_button_csv:hover span { background: url(../images/csv_hover.png) no-repeat center right; }
|
|
||||||
|
|
||||||
a.DTTT_button_xls span { background: url(../images/xls.png) no-repeat center right; }
|
|
||||||
a.DTTT_button_xls:hover span { background: #f0f0f0 url(../images/xls_hover.png) no-repeat center right; }
|
|
||||||
|
|
||||||
a.DTTT_button_copy span { background: url(../images/copy.png) no-repeat center right; }
|
|
||||||
a.DTTT_button_copy:hover span { background: #f0f0f0 url(../images/copy_hover.png) no-repeat center right; }
|
|
||||||
|
|
||||||
a.DTTT_button_pdf span { background: url(../images/pdf.png) no-repeat center right; }
|
|
||||||
a.DTTT_button_pdf:hover span { background: #f0f0f0 url(../images/pdf_hover.png) no-repeat center right; }
|
|
||||||
|
|
||||||
a.DTTT_button_print span { background: url(../images/print.png) no-repeat center right; }
|
|
||||||
a.DTTT_button_print:hover span { background: #f0f0f0 url(../images/print_hover.png) no-repeat center right; }
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
button.DTTT_button_collection span {
|
|
||||||
padding-right: 17px;
|
|
||||||
background: url(../images/collection.png) no-repeat center right;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.DTTT_button_collection:hover span {
|
|
||||||
padding-right: 17px;
|
|
||||||
background: #f0f0f0 url(../images/collection_hover.png) no-repeat center right;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* SELECTING
|
|
||||||
* Row selection styles
|
|
||||||
*/
|
|
||||||
table.DTTT_selectable tbody tr {
|
|
||||||
cursor: pointer;
|
|
||||||
*cursor: hand;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable tr.DTTT_selected.odd {
|
|
||||||
background-color: #9FAFD1;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable tr.DTTT_selected.odd td.sorting_1 {
|
|
||||||
background-color: #9FAFD1;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable tr.DTTT_selected.odd td.sorting_2 {
|
|
||||||
background-color: #9FAFD1;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable tr.DTTT_selected.odd td.sorting_3 {
|
|
||||||
background-color: #9FAFD1;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
table.dataTable tr.DTTT_selected.even {
|
|
||||||
background-color: #B0BED9;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable tr.DTTT_selected.even td.sorting_1 {
|
|
||||||
background-color: #B0BED9;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable tr.DTTT_selected.even td.sorting_2 {
|
|
||||||
background-color: #B0BED9;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.dataTable tr.DTTT_selected.even td.sorting_3 {
|
|
||||||
background-color: #B0BED9;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* COLLECTIONS
|
|
||||||
* Drop down list (collection) styles
|
|
||||||
*/
|
|
||||||
|
|
||||||
div.DTTT_collection {
|
|
||||||
width: 150px;
|
|
||||||
padding: 8px 8px 4px 8px;
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
border: 1px solid rgba( 0, 0, 0, 0.4 );
|
|
||||||
background-color: #f3f3f3;
|
|
||||||
background-color: rgba( 255, 255, 255, 0.3 );
|
|
||||||
overflow: hidden;
|
|
||||||
z-index: 2002;
|
|
||||||
|
|
||||||
-webkit-border-radius: 5px;
|
|
||||||
-moz-border-radius: 5px;
|
|
||||||
-ms-border-radius: 5px;
|
|
||||||
-o-border-radius: 5px;
|
|
||||||
border-radius: 5px;
|
|
||||||
|
|
||||||
-webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
|
|
||||||
-moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
|
|
||||||
-ms-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
|
|
||||||
-o-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
|
|
||||||
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
div.DTTT_collection_background {
|
|
||||||
background: transparent url(../images/background.png) repeat top left;
|
|
||||||
z-index: 2001;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.DTTT_collection button.DTTT_button,
|
|
||||||
div.DTTT_collection div.DTTT_button,
|
|
||||||
div.DTTT_collection a.DTTT_button {
|
|
||||||
position: relative;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
|
|
||||||
display: block;
|
|
||||||
float: none;
|
|
||||||
margin-bottom: 4px;
|
|
||||||
|
|
||||||
-webkit-box-shadow: 1px 1px 3px #999;
|
|
||||||
-moz-box-shadow: 1px 1px 3px #999;
|
|
||||||
-ms-box-shadow: 1px 1px 3px #999;
|
|
||||||
-o-box-shadow: 1px 1px 3px #999;
|
|
||||||
box-shadow: 1px 1px 3px #999;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* PRINTING
|
|
||||||
* Print display styles
|
|
||||||
*/
|
|
||||||
|
|
||||||
.DTTT_print_info {
|
|
||||||
position: fixed;
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
width: 400px;
|
|
||||||
height: 150px;
|
|
||||||
margin-left: -200px;
|
|
||||||
margin-top: -75px;
|
|
||||||
text-align: center;
|
|
||||||
color: #333;
|
|
||||||
padding: 10px 30px;
|
|
||||||
|
|
||||||
background: #ffffff; /* Old browsers */
|
|
||||||
background: -webkit-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Chrome10+,Safari5.1+ */
|
|
||||||
background: -moz-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* FF3.6+ */
|
|
||||||
background: -ms-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* IE10+ */
|
|
||||||
background: -o-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Opera 11.10+ */
|
|
||||||
background: linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* W3C */
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f9f9f9',GradientType=0 ); /* IE6-9 */
|
|
||||||
|
|
||||||
opacity: 0.95;
|
|
||||||
|
|
||||||
border: 1px solid black;
|
|
||||||
border: 1px solid rgba(0, 0, 0, 0.5);
|
|
||||||
|
|
||||||
-webkit-border-radius: 6px;
|
|
||||||
-moz-border-radius: 6px;
|
|
||||||
-ms-border-radius: 6px;
|
|
||||||
-o-border-radius: 6px;
|
|
||||||
border-radius: 6px;
|
|
||||||
|
|
||||||
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
|
|
||||||
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
|
|
||||||
-ms-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
|
|
||||||
-o-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
|
|
||||||
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.DTTT_print_info h6 {
|
|
||||||
font-weight: normal;
|
|
||||||
font-size: 28px;
|
|
||||||
line-height: 28px;
|
|
||||||
margin: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.DTTT_print_info p {
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}
|
|
|
@ -1,42 +0,0 @@
|
||||||
/* this CSS is not part of the widget, it is here just as an example of the demo page styling.... Don't copy this one, roll your own. One
|
|
||||||
* of the key things about the widget is that it allows you to do your own styling!
|
|
||||||
*/
|
|
||||||
|
|
||||||
#editor {
|
|
||||||
max-height: 250px;
|
|
||||||
height: 250px;
|
|
||||||
background-color: white;
|
|
||||||
border-collapse: separate;
|
|
||||||
border: 1px solid rgb(204, 204, 204);
|
|
||||||
padding: 4px;
|
|
||||||
box-sizing: content-box;
|
|
||||||
-webkit-box-shadow: rgba(0, 0, 0, 0.0745098) 0px 1px 1px 0px inset;
|
|
||||||
box-shadow: rgba(0, 0, 0, 0.0745098) 0px 1px 1px 0px inset;
|
|
||||||
border-top-right-radius: 3px; border-bottom-right-radius: 3px;
|
|
||||||
border-bottom-left-radius: 3px; border-top-left-radius: 3px;
|
|
||||||
overflow: scroll;
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
#voiceBtn {
|
|
||||||
width: 20px;
|
|
||||||
color: transparent;
|
|
||||||
background-color: transparent;
|
|
||||||
transform: scale(2.0, 2.0);
|
|
||||||
-webkit-transform: scale(2.0, 2.0);
|
|
||||||
-moz-transform: scale(2.0, 2.0);
|
|
||||||
border: transparent;
|
|
||||||
cursor: pointer;
|
|
||||||
box-shadow: none;
|
|
||||||
-webkit-box-shadow: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
div[data-role="editor-toolbar"] {
|
|
||||||
-webkit-user-select: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-ms-user-select: none;
|
|
||||||
user-select: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dropdown-menu a {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
|
@ -1,22 +0,0 @@
|
||||||
|
|
||||||
.demo-container {
|
|
||||||
box-sizing: border-box;
|
|
||||||
width: 100%;
|
|
||||||
height: 350px; display: block; margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.demo-placeholder {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 1.2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.legend table {
|
|
||||||
border-spacing: 5px;
|
|
||||||
}
|
|
||||||
.pieLabel {
|
|
||||||
border: 1px solid #CAC9C9;
|
|
||||||
border-radius: 4px;
|
|
||||||
padding: 1px 1px;
|
|
||||||
}
|
|
|
@ -1,530 +0,0 @@
|
||||||
/* iCheck plugin Flat skin
|
|
||||||
----------------------------------- */
|
|
||||||
.icheckbox_flat,
|
|
||||||
.iradio_flat {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(flat.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat,
|
|
||||||
.iradio_flat {
|
|
||||||
background-image: url(flat@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* red */
|
|
||||||
.icheckbox_flat-red,
|
|
||||||
.iradio_flat-red {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(red.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-red {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-red.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-red.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-red.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-red {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-red.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-red.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-red.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-red,
|
|
||||||
.iradio_flat-red {
|
|
||||||
background-image: url(red@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* green */
|
|
||||||
.icheckbox_flat-green,
|
|
||||||
.iradio_flat-green {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(green.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-green {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-green.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-green.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-green.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-green {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-green.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-green.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-green.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-green,
|
|
||||||
.iradio_flat-green {
|
|
||||||
background-image: url(green@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* blue */
|
|
||||||
.icheckbox_flat-blue,
|
|
||||||
.iradio_flat-blue {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(blue.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-blue {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-blue.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-blue.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-blue.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-blue {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-blue.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-blue.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-blue.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-blue,
|
|
||||||
.iradio_flat-blue {
|
|
||||||
background-image: url(blue@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* aero */
|
|
||||||
.icheckbox_flat-aero,
|
|
||||||
.iradio_flat-aero {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(aero.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-aero {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-aero.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-aero.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-aero.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-aero {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-aero.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-aero.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-aero.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-aero,
|
|
||||||
.iradio_flat-aero {
|
|
||||||
background-image: url(aero@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* grey */
|
|
||||||
.icheckbox_flat-grey,
|
|
||||||
.iradio_flat-grey {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(grey.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-grey {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-grey.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-grey.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-grey.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-grey {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-grey.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-grey.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-grey.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-grey,
|
|
||||||
.iradio_flat-grey {
|
|
||||||
background-image: url(grey@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* orange */
|
|
||||||
.icheckbox_flat-orange,
|
|
||||||
.iradio_flat-orange {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(orange.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-orange {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-orange.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-orange.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-orange.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-orange {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-orange.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-orange.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-orange.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-orange,
|
|
||||||
.iradio_flat-orange {
|
|
||||||
background-image: url(orange@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* yellow */
|
|
||||||
.icheckbox_flat-yellow,
|
|
||||||
.iradio_flat-yellow {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(yellow.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-yellow {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-yellow.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-yellow.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-yellow.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-yellow {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-yellow.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-yellow.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-yellow.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-yellow,
|
|
||||||
.iradio_flat-yellow {
|
|
||||||
background-image: url(yellow@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* pink */
|
|
||||||
.icheckbox_flat-pink,
|
|
||||||
.iradio_flat-pink {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(pink.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-pink {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-pink.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-pink.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-pink.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-pink {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-pink.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-pink.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-pink.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-pink,
|
|
||||||
.iradio_flat-pink {
|
|
||||||
background-image: url(pink@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* purple */
|
|
||||||
.icheckbox_flat-purple,
|
|
||||||
.iradio_flat-purple {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(purple.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-purple {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-purple.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-purple.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-purple.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-purple {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-purple.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-purple.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-purple.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-purple,
|
|
||||||
.iradio_flat-purple {
|
|
||||||
background-image: url(purple@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,53 +0,0 @@
|
||||||
/* iCheck plugin Flat skin, aero
|
|
||||||
----------------------------------- */
|
|
||||||
.icheckbox_flat-aero,
|
|
||||||
.iradio_flat-aero {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(aero.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-aero {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-aero.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-aero.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-aero.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-aero {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-aero.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-aero.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-aero.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-aero,
|
|
||||||
.iradio_flat-aero {
|
|
||||||
background-image: url(aero@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 3.1 KiB |
|
@ -1,53 +0,0 @@
|
||||||
/* iCheck plugin Flat skin, blue
|
|
||||||
----------------------------------- */
|
|
||||||
.icheckbox_flat-blue,
|
|
||||||
.iradio_flat-blue {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(blue.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-blue {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-blue.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-blue.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-blue.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-blue {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-blue.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-blue.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-blue.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-blue,
|
|
||||||
.iradio_flat-blue {
|
|
||||||
background-image: url(blue@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 3.1 KiB |
|
@ -1,53 +0,0 @@
|
||||||
/* iCheck plugin flat skin, black
|
|
||||||
----------------------------------- */
|
|
||||||
.icheckbox_flat,
|
|
||||||
.iradio_flat {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(flat.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat,
|
|
||||||
.iradio_flat {
|
|
||||||
background-image: url(flat@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 3.1 KiB |
|
@ -1,53 +0,0 @@
|
||||||
/* iCheck plugin Flat skin, green
|
|
||||||
----------------------------------- */
|
|
||||||
.icheckbox_flat-green,
|
|
||||||
.iradio_flat-green {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(green.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-green {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-green.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-green.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-green.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-green {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-green.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-green.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-green.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-green,
|
|
||||||
.iradio_flat-green {
|
|
||||||
background-image: url(green@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 3.0 KiB |
|
@ -1,53 +0,0 @@
|
||||||
/* iCheck plugin Flat skin, grey
|
|
||||||
----------------------------------- */
|
|
||||||
.icheckbox_flat-grey,
|
|
||||||
.iradio_flat-grey {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(grey.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-grey {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-grey.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-grey.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-grey.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-grey {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-grey.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-grey.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-grey.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-grey,
|
|
||||||
.iradio_flat-grey {
|
|
||||||
background-image: url(grey@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 3.1 KiB |
|
@ -1,53 +0,0 @@
|
||||||
/* iCheck plugin Flat skin, orange
|
|
||||||
----------------------------------- */
|
|
||||||
.icheckbox_flat-orange,
|
|
||||||
.iradio_flat-orange {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(orange.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-orange {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-orange.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-orange.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-orange.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-orange {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-orange.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-orange.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-orange.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-orange,
|
|
||||||
.iradio_flat-orange {
|
|
||||||
background-image: url(orange@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 3.2 KiB |
|
@ -1,53 +0,0 @@
|
||||||
/* iCheck plugin Flat skin, pink
|
|
||||||
----------------------------------- */
|
|
||||||
.icheckbox_flat-pink,
|
|
||||||
.iradio_flat-pink {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(pink.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-pink {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-pink.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-pink.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-pink.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-pink {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-pink.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-pink.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-pink.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-pink,
|
|
||||||
.iradio_flat-pink {
|
|
||||||
background-image: url(pink@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 3.1 KiB |
|
@ -1,53 +0,0 @@
|
||||||
/* iCheck plugin Flat skin, purple
|
|
||||||
----------------------------------- */
|
|
||||||
.icheckbox_flat-purple,
|
|
||||||
.iradio_flat-purple {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(purple.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-purple {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-purple.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-purple.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-purple.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-purple {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-purple.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-purple.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-purple.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-purple,
|
|
||||||
.iradio_flat-purple {
|
|
||||||
background-image: url(purple@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 3.1 KiB |
|
@ -1,53 +0,0 @@
|
||||||
/* iCheck plugin Flat skin, red
|
|
||||||
----------------------------------- */
|
|
||||||
.icheckbox_flat-red,
|
|
||||||
.iradio_flat-red {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(red.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-red {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-red.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-red.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-red.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-red {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-red.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-red.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-red.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-red,
|
|
||||||
.iradio_flat-red {
|
|
||||||
background-image: url(red@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 3.2 KiB |
|
@ -1,53 +0,0 @@
|
||||||
/* iCheck plugin Flat skin, yellow
|
|
||||||
----------------------------------- */
|
|
||||||
.icheckbox_flat-yellow,
|
|
||||||
.iradio_flat-yellow {
|
|
||||||
display: inline-block;
|
|
||||||
*display: inline;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(yellow.png) no-repeat;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icheckbox_flat-yellow {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-yellow.checked {
|
|
||||||
background-position: -22px 0;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-yellow.disabled {
|
|
||||||
background-position: -44px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.icheckbox_flat-yellow.checked.disabled {
|
|
||||||
background-position: -66px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iradio_flat-yellow {
|
|
||||||
background-position: -88px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-yellow.checked {
|
|
||||||
background-position: -110px 0;
|
|
||||||
}
|
|
||||||
.iradio_flat-yellow.disabled {
|
|
||||||
background-position: -132px 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.iradio_flat-yellow.checked.disabled {
|
|
||||||
background-position: -154px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HiDPI support */
|
|
||||||
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
|
|
||||||
.icheckbox_flat-yellow,
|
|
||||||
.iradio_flat-yellow {
|
|
||||||
background-image: url(yellow@2x.png);
|
|
||||||
-webkit-background-size: 176px 22px;
|
|
||||||
background-size: 176px 22px;
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 3.1 KiB |
|
@ -1,146 +0,0 @@
|
||||||
/* Ion.RangeSlider
|
|
||||||
// css version 2.0.3
|
|
||||||
// © 2013-2014 Denis Ineshin | IonDen.com
|
|
||||||
// ===================================================================================================================*/
|
|
||||||
|
|
||||||
/* =====================================================================================================================
|
|
||||||
// RangeSlider */
|
|
||||||
|
|
||||||
.irs {
|
|
||||||
position: relative; display: block;
|
|
||||||
-webkit-touch-callout: none;
|
|
||||||
-webkit-user-select: none;
|
|
||||||
-khtml-user-select: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-ms-user-select: none;
|
|
||||||
user-select: none;
|
|
||||||
}
|
|
||||||
.irs-line {
|
|
||||||
position: relative; display: block;
|
|
||||||
overflow: hidden;
|
|
||||||
outline: none !important;
|
|
||||||
}
|
|
||||||
.irs-line-left, .irs-line-mid, .irs-line-right {
|
|
||||||
position: absolute; display: block;
|
|
||||||
top: 0;
|
|
||||||
}
|
|
||||||
.irs-line-left {
|
|
||||||
left: 0; width: 11%;
|
|
||||||
}
|
|
||||||
.irs-line-mid {
|
|
||||||
left: 9%; width: 82%;
|
|
||||||
}
|
|
||||||
.irs-line-right {
|
|
||||||
right: 0; width: 11%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.irs-bar {
|
|
||||||
position: absolute; display: block;
|
|
||||||
left: 0; width: 0;
|
|
||||||
}
|
|
||||||
.irs-bar-edge {
|
|
||||||
position: absolute; display: block;
|
|
||||||
top: 0; left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.irs-shadow {
|
|
||||||
position: absolute; display: none;
|
|
||||||
left: 0; width: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.irs-slider {
|
|
||||||
position: absolute; display: block;
|
|
||||||
cursor: default;
|
|
||||||
z-index: 1;
|
|
||||||
}
|
|
||||||
.irs-slider.single {
|
|
||||||
|
|
||||||
}
|
|
||||||
.irs-slider.from {
|
|
||||||
|
|
||||||
}
|
|
||||||
.irs-slider.to {
|
|
||||||
|
|
||||||
}
|
|
||||||
.irs-slider.type_last {
|
|
||||||
z-index: 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.irs-min {
|
|
||||||
position: absolute; display: block;
|
|
||||||
left: 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.irs-max {
|
|
||||||
position: absolute; display: block;
|
|
||||||
right: 0;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
|
|
||||||
.irs-from, .irs-to, .irs-single {
|
|
||||||
position: absolute; display: block;
|
|
||||||
top: 0; left: 0;
|
|
||||||
cursor: default;
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
.irs-grid {
|
|
||||||
position: absolute; display: none;
|
|
||||||
bottom: 0; left: 0;
|
|
||||||
width: 100%; height: 20px;
|
|
||||||
}
|
|
||||||
.irs-with-grid .irs-grid {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
.irs-grid-pol {
|
|
||||||
position: absolute;
|
|
||||||
top: 0; left: 0;
|
|
||||||
width: 1px; height: 8px;
|
|
||||||
background: #000;
|
|
||||||
}
|
|
||||||
.irs-grid-pol.small {
|
|
||||||
height: 4px;
|
|
||||||
}
|
|
||||||
.irs-grid-text {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0; left: 0;
|
|
||||||
white-space: nowrap;
|
|
||||||
text-align: center;
|
|
||||||
font-size: 9px; line-height: 9px;
|
|
||||||
padding: 0 3px;
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.irs-disable-mask {
|
|
||||||
position: absolute; display: block;
|
|
||||||
top: 0; left: -1%;
|
|
||||||
width: 102%; height: 100%;
|
|
||||||
cursor: default;
|
|
||||||
background: rgba(0,0,0,0.0);
|
|
||||||
z-index: 2;
|
|
||||||
}
|
|
||||||
.irs-disabled {
|
|
||||||
opacity: 0.4;
|
|
||||||
}
|
|
||||||
.lt-ie9 .irs-disabled {
|
|
||||||
filter: alpha(opacity=40);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.irs-hidden-input {
|
|
||||||
position: absolute !important;
|
|
||||||
display: block !important;
|
|
||||||
top: 0 !important;
|
|
||||||
left: 0 !important;
|
|
||||||
width: 0 !important;
|
|
||||||
height: 0 !important;
|
|
||||||
font-size: 0 !important;
|
|
||||||
line-height: 0 !important;
|
|
||||||
padding: 0 !important;
|
|
||||||
margin: 0 !important;
|
|
||||||
outline: none !important;
|
|
||||||
z-index: -9999 !important;
|
|
||||||
background: none !important;
|
|
||||||
border-style: solid !important;
|
|
||||||
border-color: transparent !important;
|
|
||||||
}
|
|
|
@ -1,106 +0,0 @@
|
||||||
/* Ion.RangeSlider, Flat UI Skin
|
|
||||||
// css version 2.0.3
|
|
||||||
// © Denis Ineshin, 2014 https://github.com/IonDen
|
|
||||||
// ===================================================================================================================*/
|
|
||||||
|
|
||||||
/* =====================================================================================================================
|
|
||||||
// Skin details */
|
|
||||||
|
|
||||||
.irs-line-mid,
|
|
||||||
.irs-line-left,
|
|
||||||
.irs-line-right,
|
|
||||||
.irs-bar,
|
|
||||||
.irs-bar-edge,
|
|
||||||
.irs-slider {
|
|
||||||
background: url(../images/sprite-skin-flat.png) repeat-x;
|
|
||||||
}
|
|
||||||
|
|
||||||
.irs {
|
|
||||||
height: 40px;
|
|
||||||
}
|
|
||||||
.irs-with-grid {
|
|
||||||
height: 60px;
|
|
||||||
}
|
|
||||||
.irs-line {
|
|
||||||
height: 12px; top: 25px;
|
|
||||||
}
|
|
||||||
.irs-line-left {
|
|
||||||
height: 12px;
|
|
||||||
background-position: 0 -30px;
|
|
||||||
}
|
|
||||||
.irs-line-mid {
|
|
||||||
height: 12px;
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
.irs-line-right {
|
|
||||||
height: 12px;
|
|
||||||
background-position: 100% -30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.irs-bar {
|
|
||||||
height: 12px; top: 25px;
|
|
||||||
background-position: 0 -60px;
|
|
||||||
}
|
|
||||||
.irs-bar-edge {
|
|
||||||
top: 25px;
|
|
||||||
height: 12px; width: 9px;
|
|
||||||
background-position: 0 -90px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.irs-shadow {
|
|
||||||
height: 3px; top: 34px;
|
|
||||||
background: #000;
|
|
||||||
opacity: 0.25;
|
|
||||||
}
|
|
||||||
.lt-ie9 .irs-shadow {
|
|
||||||
filter: alpha(opacity=25);
|
|
||||||
}
|
|
||||||
|
|
||||||
.irs-slider {
|
|
||||||
width: 16px; height: 18px;
|
|
||||||
top: 22px;
|
|
||||||
background-position: 0 -120px;
|
|
||||||
}
|
|
||||||
.irs-slider.state_hover, .irs-slider:hover {
|
|
||||||
background-position: 0 -150px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.irs-min, .irs-max {
|
|
||||||
color: #999;
|
|
||||||
font-size: 10px; line-height: 1.333;
|
|
||||||
text-shadow: none;
|
|
||||||
top: 0; padding: 1px 3px;
|
|
||||||
background: #e1e4e9;
|
|
||||||
-moz-border-radius: 4px;
|
|
||||||
border-radius: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.irs-from, .irs-to, .irs-single {
|
|
||||||
color: #fff;
|
|
||||||
font-size: 10px; line-height: 1.333;
|
|
||||||
text-shadow: none;
|
|
||||||
padding: 1px 5px;
|
|
||||||
background: #ed5565;
|
|
||||||
-moz-border-radius: 4px;
|
|
||||||
border-radius: 4px;
|
|
||||||
}
|
|
||||||
.irs-from:after, .irs-to:after, .irs-single:after {
|
|
||||||
position: absolute; display: block; content: "";
|
|
||||||
bottom: -6px; left: 50%;
|
|
||||||
width: 0; height: 0;
|
|
||||||
margin-left: -3px;
|
|
||||||
overflow: hidden;
|
|
||||||
border: 3px solid transparent;
|
|
||||||
border-top-color: #ed5565;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.irs-grid-pol {
|
|
||||||
background: #e1e4e9;
|
|
||||||
}
|
|
||||||
.irs-grid-text {
|
|
||||||
color: #999;
|
|
||||||
}
|
|
||||||
|
|
||||||
.irs-disabled {
|
|
||||||
}
|
|
|
@ -1,135 +0,0 @@
|
||||||
svg {
|
|
||||||
touch-action: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-container {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
position: relative;
|
|
||||||
overflow: hidden;
|
|
||||||
touch-action: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-tip {
|
|
||||||
position: absolute;
|
|
||||||
display: none;
|
|
||||||
border: solid 1px #CDCDCD;
|
|
||||||
border-radius: 3px;
|
|
||||||
background: #292929;
|
|
||||||
color: white;
|
|
||||||
font-family: sans-serif, Verdana;
|
|
||||||
font-size: smaller;
|
|
||||||
padding: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-zoomin, .jvectormap-zoomout, .jvectormap-goback {
|
|
||||||
position: absolute;
|
|
||||||
left: 10px;
|
|
||||||
border-radius: 3px;
|
|
||||||
background: #292929;
|
|
||||||
padding: 3px;
|
|
||||||
color: white;
|
|
||||||
cursor: pointer;
|
|
||||||
line-height: 10px;
|
|
||||||
text-align: center;
|
|
||||||
box-sizing: content-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-zoomin, .jvectormap-zoomout {
|
|
||||||
width: 10px;
|
|
||||||
height: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-zoomin {
|
|
||||||
top: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-zoomout {
|
|
||||||
top: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-goback {
|
|
||||||
bottom: 10px;
|
|
||||||
z-index: 1000;
|
|
||||||
padding: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-spinner {
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
background: center no-repeat url(data:image/gif;base64,R0lGODlhIAAgAPMAAP///wAAAMbGxoSEhLa2tpqamjY2NlZWVtjY2OTk5Ly8vB4eHgQEBAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==);
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-legend-title {
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 14px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-legend-cnt {
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-legend-cnt-h {
|
|
||||||
bottom: 0;
|
|
||||||
right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-legend-cnt-v {
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-legend {
|
|
||||||
background: black;
|
|
||||||
color: white;
|
|
||||||
border-radius: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-legend-cnt-h .jvectormap-legend {
|
|
||||||
float: left;
|
|
||||||
margin: 0 10px 10px 0;
|
|
||||||
padding: 3px 3px 1px 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-legend-cnt-h .jvectormap-legend .jvectormap-legend-tick {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-legend-cnt-v .jvectormap-legend {
|
|
||||||
margin: 10px 10px 0 0;
|
|
||||||
padding: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-legend-cnt-h .jvectormap-legend-tick {
|
|
||||||
width: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-legend-cnt-h .jvectormap-legend-tick-sample {
|
|
||||||
height: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-legend-cnt-v .jvectormap-legend-tick-sample {
|
|
||||||
height: 20px;
|
|
||||||
width: 20px;
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-legend-tick-text {
|
|
||||||
font-size: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-legend-cnt-h .jvectormap-legend-tick-text {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jvectormap-legend-cnt-v .jvectormap-legend-tick-text {
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: middle;
|
|
||||||
line-height: 20px;
|
|
||||||
padding-left: 3px;
|
|
||||||
}
|
|
|
@ -1,161 +0,0 @@
|
||||||
/*! bootstrap-progressbar v0.8.4 | Copyright (c) 2012-2014 Stephan Groß | MIT license | http://www.minddust.com */
|
|
||||||
@-webkit-keyframes progress-bar-stripes {
|
|
||||||
from {
|
|
||||||
background-position: 40px 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@keyframes progress-bar-stripes {
|
|
||||||
from {
|
|
||||||
background-position: 40px 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
background-position: 0 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.progress{border-radius:0; margin-bottom: 18px; }
|
|
||||||
.progress.right .progress-bar{
|
|
||||||
float:right; right:0;
|
|
||||||
}
|
|
||||||
.progress.vertical {
|
|
||||||
width: 40px;
|
|
||||||
}
|
|
||||||
.progress.progress_sm{border-radius:0; margin-bottom: 18px; height: 10px !important; }
|
|
||||||
.progress.progress_sm .progress-bar{height: 10px !important; }
|
|
||||||
.dashboard_graph p {margin: 0 0 4px; }
|
|
||||||
ul.verticle_bars{
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
ul.verticle_bars li{
|
|
||||||
width: 23%; height:200px; margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.progress {
|
|
||||||
overflow: hidden;
|
|
||||||
height: 20px;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
background-color: #f5f5f5;
|
|
||||||
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
||||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
||||||
.progress-bar {
|
|
||||||
float: left;
|
|
||||||
width: 0%;
|
|
||||||
height: 100%;
|
|
||||||
font-size: 12px;
|
|
||||||
line-height: 20px;
|
|
||||||
color: #ffffff;
|
|
||||||
text-align: center;
|
|
||||||
background-color: #428bca;
|
|
||||||
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
|
||||||
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
|
||||||
-webkit-transition: width 0.6s ease;
|
|
||||||
-o-transition: width 0.6s ease;
|
|
||||||
transition: width 0.6s ease;
|
|
||||||
}
|
|
||||||
.progress-striped .progress-bar,
|
|
||||||
.progress-bar-striped {
|
|
||||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
background-size: 40px 40px;
|
|
||||||
}
|
|
||||||
.progress.active .progress-bar,
|
|
||||||
.progress-bar.active {
|
|
||||||
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
|
||||||
-o-animation: progress-bar-stripes 2s linear infinite;
|
|
||||||
animation: progress-bar-stripes 2s linear infinite;
|
|
||||||
}
|
|
||||||
.progress-bar-success {
|
|
||||||
background-color: #26B99A;
|
|
||||||
}
|
|
||||||
.progress-striped .progress-bar-success {
|
|
||||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
}
|
|
||||||
.progress-bar-info {
|
|
||||||
background-color: #3498DB;
|
|
||||||
}
|
|
||||||
.progress-striped .progress-bar-info {
|
|
||||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
}
|
|
||||||
.progress-bar-warning {
|
|
||||||
background-color: #F39C12;
|
|
||||||
}
|
|
||||||
.progress-striped .progress-bar-warning {
|
|
||||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
}
|
|
||||||
.progress-bar-danger {
|
|
||||||
background-color: #d9534f;
|
|
||||||
}
|
|
||||||
.progress-striped .progress-bar-danger {
|
|
||||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
||||||
}
|
|
||||||
.progress {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.progress .progress-bar {
|
|
||||||
position: absolute;
|
|
||||||
overflow: hidden;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
.progress .progressbar-back-text {
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
font-size: 12px;
|
|
||||||
line-height: 20px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.progress .progressbar-front-text {
|
|
||||||
display: block;
|
|
||||||
width: 100%;
|
|
||||||
font-size: 12px;
|
|
||||||
line-height: 20px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.progress.right .progress-bar {
|
|
||||||
right: 0;
|
|
||||||
}
|
|
||||||
.progress.right .progressbar-front-text {
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
}
|
|
||||||
.progress.vertical {
|
|
||||||
width: 20px;
|
|
||||||
height: 100%;
|
|
||||||
float: left;
|
|
||||||
margin-right: 10px;
|
|
||||||
}
|
|
||||||
.progress.vertical.progress_wide{
|
|
||||||
width: 35px;
|
|
||||||
}
|
|
||||||
.progress.vertical.bottom {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.progress.vertical.bottom .progressbar-front-text {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
.progress.vertical .progress-bar {
|
|
||||||
width: 100%;
|
|
||||||
height: 0;
|
|
||||||
-webkit-transition: height 0.6s ease;
|
|
||||||
-o-transition: height 0.6s ease;
|
|
||||||
transition: height 0.6s ease;
|
|
||||||
}
|
|
||||||
.progress.vertical.bottom .progress-bar {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
|
@ -1,404 +0,0 @@
|
||||||
.select2-container {
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 0;
|
|
||||||
position: relative;
|
|
||||||
vertical-align: middle; }
|
|
||||||
.select2-container .select2-selection--single {
|
|
||||||
box-sizing: border-box;
|
|
||||||
cursor: pointer;
|
|
||||||
display: block;
|
|
||||||
user-select: none;
|
|
||||||
-webkit-user-select: none; }
|
|
||||||
.select2-container .select2-selection--single .select2-selection__rendered {
|
|
||||||
display: block;
|
|
||||||
overflow: hidden;
|
|
||||||
padding-left: 8px;
|
|
||||||
padding-right: 20px;
|
|
||||||
text-overflow: ellipsis; }
|
|
||||||
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
|
|
||||||
padding-right: 8px;
|
|
||||||
padding-left: 20px; }
|
|
||||||
.select2-container .select2-selection--multiple {
|
|
||||||
box-sizing: border-box;
|
|
||||||
cursor: pointer;
|
|
||||||
display: block;
|
|
||||||
min-height: 38px;
|
|
||||||
user-select: none;
|
|
||||||
-webkit-user-select: none; }
|
|
||||||
.select2-container .select2-selection--multiple .select2-selection__rendered {
|
|
||||||
display: inline-block;
|
|
||||||
overflow: hidden;
|
|
||||||
padding-left: 8px;
|
|
||||||
text-overflow: ellipsis; }
|
|
||||||
.select2-container .select2-search--inline {
|
|
||||||
float: left; }
|
|
||||||
.select2-container .select2-search--inline .select2-search__field {
|
|
||||||
border: none;
|
|
||||||
font-size: 100%;
|
|
||||||
margin-top: 10px; }
|
|
||||||
|
|
||||||
.select2-dropdown {
|
|
||||||
background-color: white;
|
|
||||||
border: 1px solid #aaa;
|
|
||||||
border-radius: 4px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
left: -100000px;
|
|
||||||
width: 100%;
|
|
||||||
z-index: 1051; }
|
|
||||||
|
|
||||||
.select2-results {
|
|
||||||
display: block; }
|
|
||||||
|
|
||||||
.select2-results__options {
|
|
||||||
list-style: none;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0; }
|
|
||||||
|
|
||||||
.select2-results__option {
|
|
||||||
padding: 6px;
|
|
||||||
user-select: none;
|
|
||||||
-webkit-user-select: none; }
|
|
||||||
.select2-results__option[aria-selected] {
|
|
||||||
cursor: pointer; }
|
|
||||||
|
|
||||||
.select2-container--open .select2-dropdown {
|
|
||||||
left: 0; }
|
|
||||||
|
|
||||||
.select2-container--open .select2-dropdown--above {
|
|
||||||
border-bottom: none;
|
|
||||||
border-bottom-left-radius: 0;
|
|
||||||
border-bottom-right-radius: 0; }
|
|
||||||
|
|
||||||
.select2-container--open .select2-dropdown--below {
|
|
||||||
border-top: none;
|
|
||||||
border-top-left-radius: 0;
|
|
||||||
border-top-right-radius: 0; }
|
|
||||||
|
|
||||||
.select2-search--dropdown {
|
|
||||||
display: block;
|
|
||||||
padding: 4px; }
|
|
||||||
.select2-search--dropdown .select2-search__field {
|
|
||||||
padding: 4px;
|
|
||||||
width: 100%;
|
|
||||||
box-sizing: border-box; }
|
|
||||||
.select2-search--dropdown.select2-search--hide {
|
|
||||||
display: none; }
|
|
||||||
|
|
||||||
.select2-close-mask {
|
|
||||||
border: 0;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
display: block;
|
|
||||||
position: fixed;
|
|
||||||
left: 0;
|
|
||||||
top: 0;
|
|
||||||
min-height: 100%;
|
|
||||||
min-width: 100%;
|
|
||||||
height: auto;
|
|
||||||
width: auto;
|
|
||||||
opacity: 0;
|
|
||||||
z-index: 99;
|
|
||||||
background-color: #fff;
|
|
||||||
filter: alpha(opacity=0); }
|
|
||||||
|
|
||||||
.select2-container--default .select2-selection--single {
|
|
||||||
background-color: #fff;
|
|
||||||
border: 1px solid #ccc;}
|
|
||||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
|
||||||
line-height: 38px; }
|
|
||||||
.select2-container--default .select2-selection--single .select2-selection__clear {
|
|
||||||
cursor: pointer;
|
|
||||||
float: right;
|
|
||||||
font-weight: bold; }
|
|
||||||
.select2-container--default .select2-selection--single .select2-selection__placeholder {
|
|
||||||
color: #999; }
|
|
||||||
.select2-container--default .select2-selection--single .select2-selection__arrow {
|
|
||||||
height: 26px;
|
|
||||||
position: absolute;
|
|
||||||
top: 1px;
|
|
||||||
right: 1px;
|
|
||||||
width: 20px; }
|
|
||||||
.select2-container--default .select2-selection--single .select2-selection__arrow b {
|
|
||||||
border-color: #888 transparent transparent transparent;
|
|
||||||
border-style: solid;
|
|
||||||
border-width: 5px 4px 0 4px;
|
|
||||||
height: 0;
|
|
||||||
left: 50%;
|
|
||||||
margin-left: -4px;
|
|
||||||
margin-top: -2px;
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
width: 0; }
|
|
||||||
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
|
|
||||||
float: left; }
|
|
||||||
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
|
||||||
left: 1px;
|
|
||||||
right: auto; }
|
|
||||||
.select2-container--default.select2-container--disabled .select2-selection--single {
|
|
||||||
background-color: #eee;
|
|
||||||
cursor: default; }
|
|
||||||
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
|
|
||||||
display: none; }
|
|
||||||
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
|
||||||
border-color: transparent transparent #888 transparent;
|
|
||||||
border-width: 0 4px 5px 4px; }
|
|
||||||
.select2-container--default .select2-selection--multiple {
|
|
||||||
background-color: white;
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
cursor: text; }
|
|
||||||
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
|
|
||||||
list-style: none;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0 5px;
|
|
||||||
width: 100%; }
|
|
||||||
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
|
|
||||||
color: #999;
|
|
||||||
margin-top: 5px;
|
|
||||||
float: left; }
|
|
||||||
.select2-container--default .select2-selection--multiple .select2-selection__clear {
|
|
||||||
cursor: pointer;
|
|
||||||
float: right;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-top: 5px;
|
|
||||||
margin-right: 10px; }
|
|
||||||
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
|
||||||
background-color: #e4e4e4;
|
|
||||||
cursor: default;
|
|
||||||
float: left;
|
|
||||||
margin-right: 5px;
|
|
||||||
margin-top: 5px;
|
|
||||||
padding: 3px 5px; }
|
|
||||||
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
|
||||||
color: #999;
|
|
||||||
cursor: pointer;
|
|
||||||
display: inline-block;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-right: 2px; }
|
|
||||||
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
|
|
||||||
color: #333; }
|
|
||||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder {
|
|
||||||
float: right; }
|
|
||||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
|
||||||
margin-left: 5px;
|
|
||||||
margin-right: auto; }
|
|
||||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
|
|
||||||
margin-left: 2px;
|
|
||||||
margin-right: auto; }
|
|
||||||
.select2-container--default.select2-container--disabled .select2-selection--multiple {
|
|
||||||
background-color: #eee;
|
|
||||||
cursor: default; }
|
|
||||||
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
|
|
||||||
display: none; }
|
|
||||||
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
|
|
||||||
border-top-left-radius: 0;
|
|
||||||
border-top-right-radius: 0; }
|
|
||||||
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
|
|
||||||
border-bottom-left-radius: 0;
|
|
||||||
border-bottom-right-radius: 0; }
|
|
||||||
.select2-container--default .select2-search--dropdown .select2-search__field {
|
|
||||||
border: 1px solid #aaa; }
|
|
||||||
.select2-container--default .select2-search--inline .select2-search__field {
|
|
||||||
background: transparent;
|
|
||||||
border: none;
|
|
||||||
outline: 0; }
|
|
||||||
.select2-container--default .select2-results > .select2-results__options {
|
|
||||||
max-height: 200px;
|
|
||||||
overflow-y: auto; }
|
|
||||||
.select2-container--default .select2-results__option[role=group] {
|
|
||||||
padding: 0; }
|
|
||||||
.select2-container--default .select2-results__option[aria-disabled=true] {
|
|
||||||
color: #999; }
|
|
||||||
.select2-container--default .select2-results__option[aria-selected=true] {
|
|
||||||
background-color: #ddd; }
|
|
||||||
.select2-container--default .select2-results__option .select2-results__option {
|
|
||||||
padding-left: 1em; }
|
|
||||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
|
|
||||||
padding-left: 0; }
|
|
||||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
|
|
||||||
margin-left: -1em;
|
|
||||||
padding-left: 2em; }
|
|
||||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
|
||||||
margin-left: -2em;
|
|
||||||
padding-left: 3em; }
|
|
||||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
|
||||||
margin-left: -3em;
|
|
||||||
padding-left: 4em; }
|
|
||||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
|
||||||
margin-left: -4em;
|
|
||||||
padding-left: 5em; }
|
|
||||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
|
||||||
margin-left: -5em;
|
|
||||||
padding-left: 6em; }
|
|
||||||
.select2-container--default .select2-results__option--highlighted[aria-selected] {
|
|
||||||
background-color: #5897fb;
|
|
||||||
color: white; }
|
|
||||||
.select2-container--default .select2-results__group {
|
|
||||||
cursor: default;
|
|
||||||
display: block;
|
|
||||||
padding: 6px; }
|
|
||||||
|
|
||||||
.select2-container--classic .select2-selection--single {
|
|
||||||
background-color: #f6f6f6;
|
|
||||||
border: 1px solid #aaa;
|
|
||||||
border-radius: 4px;
|
|
||||||
outline: 0;
|
|
||||||
background-image: -webkit-linear-gradient(top, #ffffff 50%, #eeeeee 100%);
|
|
||||||
background-image: -o-linear-gradient(top, #ffffff 50%, #eeeeee 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #ffffff 50%, #eeeeee 100%);
|
|
||||||
background-repeat: repeat-x;
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0); }
|
|
||||||
.select2-container--classic .select2-selection--single:focus {
|
|
||||||
border: 1px solid #5897fb; }
|
|
||||||
.select2-container--classic .select2-selection--single .select2-selection__rendered {
|
|
||||||
color: #444;
|
|
||||||
line-height: 28px; }
|
|
||||||
.select2-container--classic .select2-selection--single .select2-selection__clear {
|
|
||||||
cursor: pointer;
|
|
||||||
float: right;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-right: 10px; }
|
|
||||||
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
|
|
||||||
color: #999; }
|
|
||||||
.select2-container--classic .select2-selection--single .select2-selection__arrow {
|
|
||||||
background-color: #ddd;
|
|
||||||
border: none;
|
|
||||||
border-left: 1px solid #aaa;
|
|
||||||
border-top-right-radius: 4px;
|
|
||||||
border-bottom-right-radius: 4px;
|
|
||||||
height: 26px;
|
|
||||||
position: absolute;
|
|
||||||
top: 1px;
|
|
||||||
right: 1px;
|
|
||||||
width: 20px;
|
|
||||||
background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
|
|
||||||
background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
|
|
||||||
background-repeat: repeat-x;
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0); }
|
|
||||||
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
|
|
||||||
border-color: #888 transparent transparent transparent;
|
|
||||||
border-style: solid;
|
|
||||||
border-width: 5px 4px 0 4px;
|
|
||||||
height: 0;
|
|
||||||
left: 50%;
|
|
||||||
margin-left: -4px;
|
|
||||||
margin-top: -2px;
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
width: 0; }
|
|
||||||
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
|
|
||||||
float: left; }
|
|
||||||
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
|
||||||
border: none;
|
|
||||||
border-right: 1px solid #aaa;
|
|
||||||
border-radius: 0;
|
|
||||||
border-top-left-radius: 4px;
|
|
||||||
border-bottom-left-radius: 4px;
|
|
||||||
left: 1px;
|
|
||||||
right: auto; }
|
|
||||||
.select2-container--classic.select2-container--open .select2-selection--single {
|
|
||||||
border: 1px solid #5897fb; }
|
|
||||||
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
|
|
||||||
background: transparent;
|
|
||||||
border: none; }
|
|
||||||
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
|
||||||
border-color: transparent transparent #888 transparent;
|
|
||||||
border-width: 0 4px 5px 4px; }
|
|
||||||
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
|
|
||||||
border-top: none;
|
|
||||||
border-top-left-radius: 0;
|
|
||||||
border-top-right-radius: 0;
|
|
||||||
background-image: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
|
|
||||||
background-image: -o-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
|
|
||||||
background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 50%);
|
|
||||||
background-repeat: repeat-x;
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0); }
|
|
||||||
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
|
|
||||||
border-bottom: none;
|
|
||||||
border-bottom-left-radius: 0;
|
|
||||||
border-bottom-right-radius: 0;
|
|
||||||
background-image: -webkit-linear-gradient(top, #eeeeee 50%, #ffffff 100%);
|
|
||||||
background-image: -o-linear-gradient(top, #eeeeee 50%, #ffffff 100%);
|
|
||||||
background-image: linear-gradient(to bottom, #eeeeee 50%, #ffffff 100%);
|
|
||||||
background-repeat: repeat-x;
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0); }
|
|
||||||
.select2-container--classic .select2-selection--multiple {
|
|
||||||
background-color: white;
|
|
||||||
border: 1px solid #aaa;
|
|
||||||
border-radius: 4px;
|
|
||||||
cursor: text;
|
|
||||||
outline: 0; }
|
|
||||||
.select2-container--classic .select2-selection--multiple:focus {
|
|
||||||
border: 1px solid #5897fb; }
|
|
||||||
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
|
|
||||||
list-style: none;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0 5px; }
|
|
||||||
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
|
|
||||||
display: none; }
|
|
||||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
|
|
||||||
background-color: #e4e4e4;
|
|
||||||
border: 1px solid #aaa;
|
|
||||||
border-radius: 4px;
|
|
||||||
cursor: default;
|
|
||||||
float: left;
|
|
||||||
margin-right: 5px;
|
|
||||||
margin-top: 5px;
|
|
||||||
padding: 0 5px; }
|
|
||||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
|
|
||||||
color: #888;
|
|
||||||
cursor: pointer;
|
|
||||||
display: inline-block;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-right: 2px; }
|
|
||||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
|
|
||||||
color: #555; }
|
|
||||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
|
||||||
float: right; }
|
|
||||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
|
||||||
margin-left: 5px;
|
|
||||||
margin-right: auto; }
|
|
||||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
|
|
||||||
margin-left: 2px;
|
|
||||||
margin-right: auto; }
|
|
||||||
.select2-container--classic.select2-container--open .select2-selection--multiple {
|
|
||||||
border: 1px solid #5897fb; }
|
|
||||||
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
|
|
||||||
border-top: none;
|
|
||||||
border-top-left-radius: 0;
|
|
||||||
border-top-right-radius: 0; }
|
|
||||||
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
|
|
||||||
border-bottom: none;
|
|
||||||
border-bottom-left-radius: 0;
|
|
||||||
border-bottom-right-radius: 0; }
|
|
||||||
.select2-container--classic .select2-search--dropdown .select2-search__field {
|
|
||||||
border: 1px solid #aaa;
|
|
||||||
outline: 0; }
|
|
||||||
.select2-container--classic .select2-search--inline .select2-search__field {
|
|
||||||
outline: 0; }
|
|
||||||
.select2-container--classic .select2-dropdown {
|
|
||||||
background-color: white;
|
|
||||||
border: 1px solid transparent; }
|
|
||||||
.select2-container--classic .select2-dropdown--above {
|
|
||||||
border-bottom: none; }
|
|
||||||
.select2-container--classic .select2-dropdown--below {
|
|
||||||
border-top: none; }
|
|
||||||
.select2-container--classic .select2-results > .select2-results__options {
|
|
||||||
max-height: 200px;
|
|
||||||
overflow-y: auto; }
|
|
||||||
.select2-container--classic .select2-results__option[role=group] {
|
|
||||||
padding: 0; }
|
|
||||||
.select2-container--classic .select2-results__option[aria-disabled=true] {
|
|
||||||
color: grey; }
|
|
||||||
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
|
|
||||||
background-color: #3875d7;
|
|
||||||
color: white; }
|
|
||||||
.select2-container--classic .select2-results__group {
|
|
||||||
cursor: default;
|
|
||||||
display: block;
|
|
||||||
padding: 6px; }
|
|
||||||
.select2-container--classic.select2-container--open .select2-dropdown {
|
|
||||||
border-color: #5897fb; }
|
|
|
@ -1 +0,0 @@
|
||||||
.switchery{background-color:#fff;border:1px solid #dfdfdf;border-radius:20px;cursor:pointer;display:inline-block;height:20px;position:relative;vertical-align:middle;width:32px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.switchery>small{background:#fff;border-radius:100%;box-shadow:0 1px 3px rgba(0,0,0,0.4);height:20px;position:absolute;top:0;width:20px}
|
|
|
@ -0,0 +1,69 @@
|
||||||
|
a:link {
|
||||||
|
color: #dbdbdb;
|
||||||
|
text-decoration: none
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: #dbdbdb;
|
||||||
|
text-decoration: none
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #dbdbdb;
|
||||||
|
text-decoration: none
|
||||||
|
}
|
||||||
|
|
||||||
|
a:active {
|
||||||
|
color: #dbdbdb;
|
||||||
|
text-decoration: none
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
/*font-family: 'Lobster', cursive;*/
|
||||||
|
color: #fff;
|
||||||
|
margin-left: 45px;
|
||||||
|
margin-top: 300px;
|
||||||
|
font-size: 75px;
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.inner {
|
||||||
|
/*font-family: 'Ubuntu', sans-serif;*/
|
||||||
|
font-weight: 300;
|
||||||
|
color: #6d6d6d;
|
||||||
|
margin-left: 45px;
|
||||||
|
font-size: 20px;
|
||||||
|
font-style: normal;
|
||||||
|
margin-top: -40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.backtomain {
|
||||||
|
/*font-family:'Ubuntu',sans-serif;*/
|
||||||
|
font-weight:300;
|
||||||
|
margin-left:50px;
|
||||||
|
margin-top: 30px;
|
||||||
|
padding-left: 20px;
|
||||||
|
font-size:20px;
|
||||||
|
font-style:normal;
|
||||||
|
width: 260px;
|
||||||
|
height: 45px;
|
||||||
|
border: 1px solid #fff;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.backtomain > p {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
/*font-family: 'Ubuntu', sans-serif;*/
|
||||||
|
font-weight: 300;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
background-color: transparent;
|
||||||
|
width: 100%;
|
||||||
|
bottom: 0;
|
||||||
|
position: fixed
|
||||||
|
}
|
After Width: | Height: | Size: 217 KiB |
|
@ -0,0 +1,5 @@
|
||||||
|
|
||||||
|
jQuery(document).ready(function () {
|
||||||
|
var pageImage = "/static/error/404.jpg";
|
||||||
|
jQuery.backstretch(pageImage);
|
||||||
|
});
|
After Width: | Height: | Size: 841 KiB |
|
@ -0,0 +1,39 @@
|
||||||
|
{
|
||||||
|
"root": true,
|
||||||
|
|
||||||
|
"extends": "@ljharb",
|
||||||
|
|
||||||
|
"rules": {
|
||||||
|
"camelcase": [0],
|
||||||
|
"complexity": [0, 10],
|
||||||
|
"dot-notation": [2, { "allowKeywords": false }],
|
||||||
|
"eqeqeq": [2, "allow-null"],
|
||||||
|
"id-length": [2, { "min": 1, "max": 40 }],
|
||||||
|
"max-nested-callbacks": [2, 5],
|
||||||
|
"max-params": [2, 7],
|
||||||
|
"max-statements": [1, 30],
|
||||||
|
"new-cap": [2, { "capIsNewExceptions": ["ToInteger", "ToObject", "ToPrimitive", "ToUint32"] }],
|
||||||
|
"no-constant-condition": [1],
|
||||||
|
"no-extend-native": [2, {"exceptions": ["Date", "Error", "RegExp"]}],
|
||||||
|
"no-extra-parens": [0],
|
||||||
|
"no-extra-semi": [1],
|
||||||
|
"no-func-assign": [1],
|
||||||
|
"no-implicit-coercion": [2, {
|
||||||
|
"boolean": false,
|
||||||
|
"number": false,
|
||||||
|
"string": true
|
||||||
|
}],
|
||||||
|
"no-invalid-this": [0],
|
||||||
|
"no-magic-numbers": [0],
|
||||||
|
"no-native-reassign": [2, {"exceptions": ["Date", "parseInt"]}],
|
||||||
|
"no-new-func": [1],
|
||||||
|
"no-plusplus": [1],
|
||||||
|
"no-restricted-syntax": [2, "ContinueStatement", "DebuggerStatement", "LabeledStatement", "WithStatement"],
|
||||||
|
"no-shadow": [1],
|
||||||
|
"no-unused-vars": [1, { "vars": "all", "args": "after-used" }],
|
||||||
|
"operator-linebreak": [2, "after"],
|
||||||
|
"quote-props": [1, "as-needed", { "keywords": true }],
|
||||||
|
"spaced-comment": [0],
|
||||||
|
"strict": [0]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,2 @@
|
||||||
|
node_modules
|
||||||
|
.DS_Store
|
|
@ -0,0 +1,162 @@
|
||||||
|
{
|
||||||
|
"es3": true,
|
||||||
|
|
||||||
|
"additionalRules": [],
|
||||||
|
|
||||||
|
"requireSemicolons": true,
|
||||||
|
|
||||||
|
"disallowMultipleSpaces": true,
|
||||||
|
|
||||||
|
"disallowIdentifierNames": [],
|
||||||
|
|
||||||
|
"requireCurlyBraces": {
|
||||||
|
"allExcept": [],
|
||||||
|
"keywords": ["if", "else", "for", "while", "do", "try", "catch"]
|
||||||
|
},
|
||||||
|
|
||||||
|
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch", "function"],
|
||||||
|
|
||||||
|
"disallowSpaceAfterKeywords": [],
|
||||||
|
|
||||||
|
"disallowSpaceBeforeComma": true,
|
||||||
|
"disallowSpaceAfterComma": false,
|
||||||
|
"disallowSpaceBeforeSemicolon": true,
|
||||||
|
|
||||||
|
"disallowNodeTypes": [
|
||||||
|
"DebuggerStatement",
|
||||||
|
"LabeledStatement",
|
||||||
|
"SwitchCase",
|
||||||
|
"SwitchStatement",
|
||||||
|
"WithStatement"
|
||||||
|
],
|
||||||
|
|
||||||
|
"requireObjectKeysOnNewLine": { "allExcept": ["sameLine"] },
|
||||||
|
|
||||||
|
"requireSpacesInAnonymousFunctionExpression": { "beforeOpeningRoundBrace": true, "beforeOpeningCurlyBrace": true },
|
||||||
|
"requireSpacesInNamedFunctionExpression": { "beforeOpeningCurlyBrace": true },
|
||||||
|
"disallowSpacesInNamedFunctionExpression": { "beforeOpeningRoundBrace": true },
|
||||||
|
"requireSpacesInFunctionDeclaration": { "beforeOpeningCurlyBrace": true },
|
||||||
|
"disallowSpacesInFunctionDeclaration": { "beforeOpeningRoundBrace": true },
|
||||||
|
|
||||||
|
"requireSpaceBetweenArguments": true,
|
||||||
|
|
||||||
|
"disallowSpacesInsideParentheses": true,
|
||||||
|
|
||||||
|
"disallowSpacesInsideArrayBrackets": true,
|
||||||
|
|
||||||
|
"disallowQuotedKeysInObjects": "allButReserved",
|
||||||
|
|
||||||
|
"disallowSpaceAfterObjectKeys": true,
|
||||||
|
|
||||||
|
"requireCommaBeforeLineBreak": true,
|
||||||
|
|
||||||
|
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
|
||||||
|
"requireSpaceAfterPrefixUnaryOperators": [],
|
||||||
|
|
||||||
|
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
|
||||||
|
"requireSpaceBeforePostfixUnaryOperators": [],
|
||||||
|
|
||||||
|
"disallowSpaceBeforeBinaryOperators": [],
|
||||||
|
"requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
|
||||||
|
|
||||||
|
"requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
|
||||||
|
"disallowSpaceAfterBinaryOperators": [],
|
||||||
|
|
||||||
|
"disallowImplicitTypeConversion": ["binary", "string"],
|
||||||
|
|
||||||
|
"disallowKeywords": ["with", "eval"],
|
||||||
|
|
||||||
|
"requireKeywordsOnNewLine": [],
|
||||||
|
"disallowKeywordsOnNewLine": ["else"],
|
||||||
|
|
||||||
|
"requireLineFeedAtFileEnd": true,
|
||||||
|
|
||||||
|
"disallowTrailingWhitespace": true,
|
||||||
|
|
||||||
|
"disallowTrailingComma": true,
|
||||||
|
|
||||||
|
"excludeFiles": ["node_modules/**", "vendor/**"],
|
||||||
|
|
||||||
|
"disallowMultipleLineStrings": true,
|
||||||
|
|
||||||
|
"requireDotNotation": { "allExcept": ["keywords"] },
|
||||||
|
|
||||||
|
"requireParenthesesAroundIIFE": true,
|
||||||
|
|
||||||
|
"validateLineBreaks": "LF",
|
||||||
|
|
||||||
|
"validateQuoteMarks": {
|
||||||
|
"escape": true,
|
||||||
|
"mark": "'"
|
||||||
|
},
|
||||||
|
|
||||||
|
"disallowOperatorBeforeLineBreak": [],
|
||||||
|
|
||||||
|
"requireSpaceBeforeKeywords": [
|
||||||
|
"do",
|
||||||
|
"for",
|
||||||
|
"if",
|
||||||
|
"else",
|
||||||
|
"switch",
|
||||||
|
"case",
|
||||||
|
"try",
|
||||||
|
"catch",
|
||||||
|
"finally",
|
||||||
|
"while",
|
||||||
|
"with",
|
||||||
|
"return"
|
||||||
|
],
|
||||||
|
|
||||||
|
"validateAlignedFunctionParameters": {
|
||||||
|
"lineBreakAfterOpeningBraces": true,
|
||||||
|
"lineBreakBeforeClosingBraces": true
|
||||||
|
},
|
||||||
|
|
||||||
|
"requirePaddingNewLinesBeforeExport": true,
|
||||||
|
|
||||||
|
"validateNewlineAfterArrayElements": {
|
||||||
|
"maximum": 200
|
||||||
|
},
|
||||||
|
|
||||||
|
"requirePaddingNewLinesAfterUseStrict": true,
|
||||||
|
|
||||||
|
"disallowArrowFunctions": true,
|
||||||
|
|
||||||
|
"disallowMultiLineTernary": false,
|
||||||
|
|
||||||
|
"validateOrderInObjectKeys": false,
|
||||||
|
|
||||||
|
"disallowIdenticalDestructuringNames": true,
|
||||||
|
|
||||||
|
"disallowNestedTernaries": { "maxLevel": 7 },
|
||||||
|
|
||||||
|
"requireSpaceAfterComma": { "allExcept": ["trailing"] },
|
||||||
|
"requireAlignedMultilineParams": false,
|
||||||
|
|
||||||
|
"requireSpacesInGenerator": {
|
||||||
|
"afterStar": true
|
||||||
|
},
|
||||||
|
|
||||||
|
"disallowSpacesInGenerator": {
|
||||||
|
"beforeStar": true
|
||||||
|
},
|
||||||
|
|
||||||
|
"disallowVar": false,
|
||||||
|
|
||||||
|
"requireArrayDestructuring": false,
|
||||||
|
|
||||||
|
"requireEnhancedObjectLiterals": false,
|
||||||
|
|
||||||
|
"requireObjectDestructuring": false,
|
||||||
|
|
||||||
|
"requireEarlyReturn": false,
|
||||||
|
|
||||||
|
"requireCapitalizedConstructorsNew": {
|
||||||
|
"allExcept": ["Function", "String", "Object", "Symbol", "Number", "Date", "RegExp", "Error", "Boolean", "Array"]
|
||||||
|
},
|
||||||
|
|
||||||
|
"requireImportAlphabetized": false,
|
||||||
|
|
||||||
|
"disallowSpacesInsideTemplateStringPlaceholders": true
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,79 @@
|
||||||
|
language: node_js
|
||||||
|
node_js:
|
||||||
|
- "5.7"
|
||||||
|
- "5.6"
|
||||||
|
- "5.5"
|
||||||
|
- "5.4"
|
||||||
|
- "5.3"
|
||||||
|
- "5.2"
|
||||||
|
- "5.1"
|
||||||
|
- "5.0"
|
||||||
|
- "4.3"
|
||||||
|
- "4.2"
|
||||||
|
- "4.1"
|
||||||
|
- "4.0"
|
||||||
|
- "iojs-v3.3"
|
||||||
|
- "iojs-v3.2"
|
||||||
|
- "iojs-v3.1"
|
||||||
|
- "iojs-v3.0"
|
||||||
|
- "iojs-v2.5"
|
||||||
|
- "iojs-v2.4"
|
||||||
|
- "iojs-v2.3"
|
||||||
|
- "iojs-v2.2"
|
||||||
|
- "iojs-v2.1"
|
||||||
|
- "iojs-v2.0"
|
||||||
|
- "iojs-v1.8"
|
||||||
|
- "iojs-v1.7"
|
||||||
|
- "iojs-v1.6"
|
||||||
|
- "iojs-v1.5"
|
||||||
|
- "iojs-v1.4"
|
||||||
|
- "iojs-v1.3"
|
||||||
|
- "iojs-v1.2"
|
||||||
|
- "iojs-v1.1"
|
||||||
|
- "iojs-v1.0"
|
||||||
|
- "0.12"
|
||||||
|
- "0.11"
|
||||||
|
- "0.10"
|
||||||
|
- "0.9"
|
||||||
|
- "0.8"
|
||||||
|
- "0.6"
|
||||||
|
- "0.4"
|
||||||
|
before_install:
|
||||||
|
- 'if [ "${TRAVIS_NODE_VERSION}" != "0.9" ]; then case "$(npm --version)" in 1.*) npm install -g npm@1.4.28 ;; 2.*) npm install -g npm@2 ;; esac ; fi'
|
||||||
|
- 'if [ "${TRAVIS_NODE_VERSION}" != "0.6" ] && [ "${TRAVIS_NODE_VERSION}" != "0.9" ]; then npm install -g npm; fi'
|
||||||
|
script:
|
||||||
|
- 'if [ "${TRAVIS_NODE_VERSION}" != "4.3" ]; then npm run tests-only ; else npm test ; fi'
|
||||||
|
sudo: false
|
||||||
|
matrix:
|
||||||
|
fast_finish: true
|
||||||
|
allow_failures:
|
||||||
|
- node_js: "5.6"
|
||||||
|
- node_js: "5.5"
|
||||||
|
- node_js: "5.4"
|
||||||
|
- node_js: "5.3"
|
||||||
|
- node_js: "5.2"
|
||||||
|
- node_js: "5.1"
|
||||||
|
- node_js: "5.0"
|
||||||
|
- node_js: "4.2"
|
||||||
|
- node_js: "4.1"
|
||||||
|
- node_js: "4.0"
|
||||||
|
- node_js: "iojs-v3.2"
|
||||||
|
- node_js: "iojs-v3.1"
|
||||||
|
- node_js: "iojs-v3.0"
|
||||||
|
- node_js: "iojs-v2.4"
|
||||||
|
- node_js: "iojs-v2.3"
|
||||||
|
- node_js: "iojs-v2.2"
|
||||||
|
- node_js: "iojs-v2.1"
|
||||||
|
- node_js: "iojs-v2.0"
|
||||||
|
- node_js: "iojs-v1.7"
|
||||||
|
- node_js: "iojs-v1.6"
|
||||||
|
- node_js: "iojs-v1.5"
|
||||||
|
- node_js: "iojs-v1.4"
|
||||||
|
- node_js: "iojs-v1.3"
|
||||||
|
- node_js: "iojs-v1.2"
|
||||||
|
- node_js: "iojs-v1.1"
|
||||||
|
- node_js: "iojs-v1.0"
|
||||||
|
- node_js: "0.11"
|
||||||
|
- node_js: "0.9"
|
||||||
|
- node_js: "0.6"
|
||||||
|
- node_js: "0.4"
|
|
@ -0,0 +1,27 @@
|
||||||
|
|
||||||
|
- kriskowal Kris Kowal Copyright (C) 2009-2011 MIT License
|
||||||
|
- tlrobinson Tom Robinson Copyright (C) 2009-2010 MIT License (Narwhal
|
||||||
|
Project)
|
||||||
|
- dantman Daniel Friesen Copyright (C) 2010 XXX TODO License or CLA
|
||||||
|
- fschaefer Florian Schäfer Copyright (C) 2010 MIT License
|
||||||
|
- Gozala Irakli Gozalishvili Copyright (C) 2010 MIT License
|
||||||
|
- kitcambridge Kit Cambridge Copyright (C) 2011 MIT License
|
||||||
|
- kossnocorp Sasha Koss XXX TODO License or CLA
|
||||||
|
- bryanforbes Bryan Forbes XXX TODO License or CLA
|
||||||
|
- killdream Quildreen Motta Copyright (C) 2011 MIT Licence
|
||||||
|
- michaelficarra Michael Ficarra Copyright (C) 2011 3-clause BSD
|
||||||
|
License
|
||||||
|
- sharkbrainguy Gerard Paapu Copyright (C) 2011 MIT License
|
||||||
|
- bbqsrc Brendan Molloy (C) 2011 Creative Commons Zero (public domain)
|
||||||
|
- iwyg XXX TODO License or CLA
|
||||||
|
- DomenicDenicola Domenic Denicola Copyright (C) 2011 MIT License
|
||||||
|
- xavierm02 Montillet Xavier Copyright (C) 2011 MIT License
|
||||||
|
- Raynos Jake Verbaten Copyright (C) 2011 MIT Licence
|
||||||
|
- samsonjs Sami Samhuri Copyright (C) 2010 MIT License
|
||||||
|
- rwldrn Rick Waldron Copyright (C) 2011 MIT License
|
||||||
|
- lexer Alexey Zakharov XXX TODO License or CLA
|
||||||
|
- 280 North Inc. (Now Motorola LLC, a subsidiary of Google Inc.)
|
||||||
|
Copyright (C) 2009 MIT License
|
||||||
|
- Steven Levithan Copyright (C) 2012 MIT License
|
||||||
|
- Jordan Harband (C) 2013 MIT License
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (C) 2009-2016 Kristopher Michael Kowal and contributors
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
||||||
|
|
|
@ -0,0 +1,556 @@
|
||||||
|
/*!
|
||||||
|
* https://github.com/es-shims/es5-shim
|
||||||
|
* @license es5-shim Copyright 2009-2015 by contributors, MIT License
|
||||||
|
* see https://github.com/es-shims/es5-shim/blob/master/LICENSE
|
||||||
|
*/
|
||||||
|
|
||||||
|
// vim: ts=4 sts=4 sw=4 expandtab
|
||||||
|
|
||||||
|
// Add semicolon to prevent IIFE from being passed as argument to concatenated code.
|
||||||
|
;
|
||||||
|
|
||||||
|
// UMD (Universal Module Definition)
|
||||||
|
// see https://github.com/umdjs/umd/blob/master/templates/returnExports.js
|
||||||
|
(function (root, factory) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
/* global define, exports, module */
|
||||||
|
if (typeof define === 'function' && define.amd) {
|
||||||
|
// AMD. Register as an anonymous module.
|
||||||
|
define(factory);
|
||||||
|
} else if (typeof exports === 'object') {
|
||||||
|
// Node. Does not work with strict CommonJS, but
|
||||||
|
// only CommonJS-like enviroments that support module.exports,
|
||||||
|
// like Node.
|
||||||
|
module.exports = factory();
|
||||||
|
} else {
|
||||||
|
// Browser globals (root is window)
|
||||||
|
root.returnExports = factory();
|
||||||
|
}
|
||||||
|
}(this, function () {
|
||||||
|
|
||||||
|
var call = Function.call;
|
||||||
|
var prototypeOfObject = Object.prototype;
|
||||||
|
var owns = call.bind(prototypeOfObject.hasOwnProperty);
|
||||||
|
var isEnumerable = call.bind(prototypeOfObject.propertyIsEnumerable);
|
||||||
|
var toStr = call.bind(prototypeOfObject.toString);
|
||||||
|
|
||||||
|
// If JS engine supports accessors creating shortcuts.
|
||||||
|
var defineGetter;
|
||||||
|
var defineSetter;
|
||||||
|
var lookupGetter;
|
||||||
|
var lookupSetter;
|
||||||
|
var supportsAccessors = owns(prototypeOfObject, '__defineGetter__');
|
||||||
|
if (supportsAccessors) {
|
||||||
|
/* eslint-disable no-underscore-dangle */
|
||||||
|
defineGetter = call.bind(prototypeOfObject.__defineGetter__);
|
||||||
|
defineSetter = call.bind(prototypeOfObject.__defineSetter__);
|
||||||
|
lookupGetter = call.bind(prototypeOfObject.__lookupGetter__);
|
||||||
|
lookupSetter = call.bind(prototypeOfObject.__lookupSetter__);
|
||||||
|
/* eslint-enable no-underscore-dangle */
|
||||||
|
}
|
||||||
|
|
||||||
|
// ES5 15.2.3.2
|
||||||
|
// http://es5.github.com/#x15.2.3.2
|
||||||
|
if (!Object.getPrototypeOf) {
|
||||||
|
// https://github.com/es-shims/es5-shim/issues#issue/2
|
||||||
|
// http://ejohn.org/blog/objectgetprototypeof/
|
||||||
|
// recommended by fschaefer on github
|
||||||
|
//
|
||||||
|
// sure, and webreflection says ^_^
|
||||||
|
// ... this will nerever possibly return null
|
||||||
|
// ... Opera Mini breaks here with infinite loops
|
||||||
|
Object.getPrototypeOf = function getPrototypeOf(object) {
|
||||||
|
/* eslint-disable no-proto */
|
||||||
|
var proto = object.__proto__;
|
||||||
|
/* eslint-enable no-proto */
|
||||||
|
if (proto || proto === null) {
|
||||||
|
return proto;
|
||||||
|
} else if (toStr(object.constructor) === '[object Function]') {
|
||||||
|
return object.constructor.prototype;
|
||||||
|
} else if (object instanceof Object) {
|
||||||
|
return prototypeOfObject;
|
||||||
|
} else {
|
||||||
|
// Correctly return null for Objects created with `Object.create(null)`
|
||||||
|
// (shammed or native) or `{ __proto__: null}`. Also returns null for
|
||||||
|
// cross-realm objects on browsers that lack `__proto__` support (like
|
||||||
|
// IE <11), but that's the best we can do.
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// ES5 15.2.3.3
|
||||||
|
// http://es5.github.com/#x15.2.3.3
|
||||||
|
|
||||||
|
var doesGetOwnPropertyDescriptorWork = function doesGetOwnPropertyDescriptorWork(object) {
|
||||||
|
try {
|
||||||
|
object.sentinel = 0;
|
||||||
|
return Object.getOwnPropertyDescriptor(object, 'sentinel').value === 0;
|
||||||
|
} catch (exception) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// check whether getOwnPropertyDescriptor works if it's given. Otherwise, shim partially.
|
||||||
|
if (Object.defineProperty) {
|
||||||
|
var getOwnPropertyDescriptorWorksOnObject = doesGetOwnPropertyDescriptorWork({});
|
||||||
|
var getOwnPropertyDescriptorWorksOnDom = typeof document === 'undefined' ||
|
||||||
|
doesGetOwnPropertyDescriptorWork(document.createElement('div'));
|
||||||
|
if (!getOwnPropertyDescriptorWorksOnDom || !getOwnPropertyDescriptorWorksOnObject) {
|
||||||
|
var getOwnPropertyDescriptorFallback = Object.getOwnPropertyDescriptor;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!Object.getOwnPropertyDescriptor || getOwnPropertyDescriptorFallback) {
|
||||||
|
var ERR_NON_OBJECT = 'Object.getOwnPropertyDescriptor called on a non-object: ';
|
||||||
|
|
||||||
|
/* eslint-disable no-proto */
|
||||||
|
Object.getOwnPropertyDescriptor = function getOwnPropertyDescriptor(object, property) {
|
||||||
|
if ((typeof object !== 'object' && typeof object !== 'function') || object === null) {
|
||||||
|
throw new TypeError(ERR_NON_OBJECT + object);
|
||||||
|
}
|
||||||
|
|
||||||
|
// make a valiant attempt to use the real getOwnPropertyDescriptor
|
||||||
|
// for I8's DOM elements.
|
||||||
|
if (getOwnPropertyDescriptorFallback) {
|
||||||
|
try {
|
||||||
|
return getOwnPropertyDescriptorFallback.call(Object, object, property);
|
||||||
|
} catch (exception) {
|
||||||
|
// try the shim if the real one doesn't work
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var descriptor;
|
||||||
|
|
||||||
|
// If object does not owns property return undefined immediately.
|
||||||
|
if (!owns(object, property)) {
|
||||||
|
return descriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If object has a property then it's for sure `configurable`, and
|
||||||
|
// probably `enumerable`. Detect enumerability though.
|
||||||
|
descriptor = {
|
||||||
|
enumerable: isEnumerable(object, property),
|
||||||
|
configurable: true
|
||||||
|
};
|
||||||
|
|
||||||
|
// If JS engine supports accessor properties then property may be a
|
||||||
|
// getter or setter.
|
||||||
|
if (supportsAccessors) {
|
||||||
|
// Unfortunately `__lookupGetter__` will return a getter even
|
||||||
|
// if object has own non getter property along with a same named
|
||||||
|
// inherited getter. To avoid misbehavior we temporary remove
|
||||||
|
// `__proto__` so that `__lookupGetter__` will return getter only
|
||||||
|
// if it's owned by an object.
|
||||||
|
var prototype = object.__proto__;
|
||||||
|
var notPrototypeOfObject = object !== prototypeOfObject;
|
||||||
|
// avoid recursion problem, breaking in Opera Mini when
|
||||||
|
// Object.getOwnPropertyDescriptor(Object.prototype, 'toString')
|
||||||
|
// or any other Object.prototype accessor
|
||||||
|
if (notPrototypeOfObject) {
|
||||||
|
object.__proto__ = prototypeOfObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
var getter = lookupGetter(object, property);
|
||||||
|
var setter = lookupSetter(object, property);
|
||||||
|
|
||||||
|
if (notPrototypeOfObject) {
|
||||||
|
// Once we have getter and setter we can put values back.
|
||||||
|
object.__proto__ = prototype;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (getter || setter) {
|
||||||
|
if (getter) {
|
||||||
|
descriptor.get = getter;
|
||||||
|
}
|
||||||
|
if (setter) {
|
||||||
|
descriptor.set = setter;
|
||||||
|
}
|
||||||
|
// If it was accessor property we're done and return here
|
||||||
|
// in order to avoid adding `value` to the descriptor.
|
||||||
|
return descriptor;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we got this far we know that object has an own property that is
|
||||||
|
// not an accessor so we set it as a value and return descriptor.
|
||||||
|
descriptor.value = object[property];
|
||||||
|
descriptor.writable = true;
|
||||||
|
return descriptor;
|
||||||
|
};
|
||||||
|
/* eslint-enable no-proto */
|
||||||
|
}
|
||||||
|
|
||||||
|
// ES5 15.2.3.4
|
||||||
|
// http://es5.github.com/#x15.2.3.4
|
||||||
|
if (!Object.getOwnPropertyNames) {
|
||||||
|
Object.getOwnPropertyNames = function getOwnPropertyNames(object) {
|
||||||
|
return Object.keys(object);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// ES5 15.2.3.5
|
||||||
|
// http://es5.github.com/#x15.2.3.5
|
||||||
|
if (!Object.create) {
|
||||||
|
|
||||||
|
// Contributed by Brandon Benvie, October, 2012
|
||||||
|
var createEmpty;
|
||||||
|
var supportsProto = !({ __proto__: null } instanceof Object);
|
||||||
|
// the following produces false positives
|
||||||
|
// in Opera Mini => not a reliable check
|
||||||
|
// Object.prototype.__proto__ === null
|
||||||
|
|
||||||
|
// Check for document.domain and active x support
|
||||||
|
// No need to use active x approach when document.domain is not set
|
||||||
|
// see https://github.com/es-shims/es5-shim/issues/150
|
||||||
|
// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
|
||||||
|
/* global ActiveXObject */
|
||||||
|
var shouldUseActiveX = function shouldUseActiveX() {
|
||||||
|
// return early if document.domain not set
|
||||||
|
if (!document.domain) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
return !!new ActiveXObject('htmlfile');
|
||||||
|
} catch (exception) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// This supports IE8 when document.domain is used
|
||||||
|
// see https://github.com/es-shims/es5-shim/issues/150
|
||||||
|
// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
|
||||||
|
var getEmptyViaActiveX = function getEmptyViaActiveX() {
|
||||||
|
var empty;
|
||||||
|
var xDoc;
|
||||||
|
|
||||||
|
xDoc = new ActiveXObject('htmlfile');
|
||||||
|
|
||||||
|
xDoc.write('<script><\/script>');
|
||||||
|
xDoc.close();
|
||||||
|
|
||||||
|
empty = xDoc.parentWindow.Object.prototype;
|
||||||
|
xDoc = null;
|
||||||
|
|
||||||
|
return empty;
|
||||||
|
};
|
||||||
|
|
||||||
|
// The original implementation using an iframe
|
||||||
|
// before the activex approach was added
|
||||||
|
// see https://github.com/es-shims/es5-shim/issues/150
|
||||||
|
var getEmptyViaIFrame = function getEmptyViaIFrame() {
|
||||||
|
var iframe = document.createElement('iframe');
|
||||||
|
var parent = document.body || document.documentElement;
|
||||||
|
var empty;
|
||||||
|
|
||||||
|
iframe.style.display = 'none';
|
||||||
|
parent.appendChild(iframe);
|
||||||
|
/* eslint-disable no-script-url */
|
||||||
|
iframe.src = 'javascript:';
|
||||||
|
/* eslint-enable no-script-url */
|
||||||
|
|
||||||
|
empty = iframe.contentWindow.Object.prototype;
|
||||||
|
parent.removeChild(iframe);
|
||||||
|
iframe = null;
|
||||||
|
|
||||||
|
return empty;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* global document */
|
||||||
|
if (supportsProto || typeof document === 'undefined') {
|
||||||
|
createEmpty = function () {
|
||||||
|
return { __proto__: null };
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
// In old IE __proto__ can't be used to manually set `null`, nor does
|
||||||
|
// any other method exist to make an object that inherits from nothing,
|
||||||
|
// aside from Object.prototype itself. Instead, create a new global
|
||||||
|
// object and *steal* its Object.prototype and strip it bare. This is
|
||||||
|
// used as the prototype to create nullary objects.
|
||||||
|
createEmpty = function () {
|
||||||
|
// Determine which approach to use
|
||||||
|
// see https://github.com/es-shims/es5-shim/issues/150
|
||||||
|
var empty = shouldUseActiveX() ? getEmptyViaActiveX() : getEmptyViaIFrame();
|
||||||
|
|
||||||
|
delete empty.constructor;
|
||||||
|
delete empty.hasOwnProperty;
|
||||||
|
delete empty.propertyIsEnumerable;
|
||||||
|
delete empty.isPrototypeOf;
|
||||||
|
delete empty.toLocaleString;
|
||||||
|
delete empty.toString;
|
||||||
|
delete empty.valueOf;
|
||||||
|
|
||||||
|
var Empty = function Empty() {};
|
||||||
|
Empty.prototype = empty;
|
||||||
|
// short-circuit future calls
|
||||||
|
createEmpty = function () {
|
||||||
|
return new Empty();
|
||||||
|
};
|
||||||
|
return new Empty();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
Object.create = function create(prototype, properties) {
|
||||||
|
|
||||||
|
var object;
|
||||||
|
var Type = function Type() {}; // An empty constructor.
|
||||||
|
|
||||||
|
if (prototype === null) {
|
||||||
|
object = createEmpty();
|
||||||
|
} else {
|
||||||
|
if (typeof prototype !== 'object' && typeof prototype !== 'function') {
|
||||||
|
// In the native implementation `parent` can be `null`
|
||||||
|
// OR *any* `instanceof Object` (Object|Function|Array|RegExp|etc)
|
||||||
|
// Use `typeof` tho, b/c in old IE, DOM elements are not `instanceof Object`
|
||||||
|
// like they are in modern browsers. Using `Object.create` on DOM elements
|
||||||
|
// is...err...probably inappropriate, but the native version allows for it.
|
||||||
|
throw new TypeError('Object prototype may only be an Object or null'); // same msg as Chrome
|
||||||
|
}
|
||||||
|
Type.prototype = prototype;
|
||||||
|
object = new Type();
|
||||||
|
// IE has no built-in implementation of `Object.getPrototypeOf`
|
||||||
|
// neither `__proto__`, but this manually setting `__proto__` will
|
||||||
|
// guarantee that `Object.getPrototypeOf` will work as expected with
|
||||||
|
// objects created using `Object.create`
|
||||||
|
/* eslint-disable no-proto */
|
||||||
|
object.__proto__ = prototype;
|
||||||
|
/* eslint-enable no-proto */
|
||||||
|
}
|
||||||
|
|
||||||
|
if (properties !== void 0) {
|
||||||
|
Object.defineProperties(object, properties);
|
||||||
|
}
|
||||||
|
|
||||||
|
return object;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// ES5 15.2.3.6
|
||||||
|
// http://es5.github.com/#x15.2.3.6
|
||||||
|
|
||||||
|
// Patch for WebKit and IE8 standard mode
|
||||||
|
// Designed by hax <hax.github.com>
|
||||||
|
// related issue: https://github.com/es-shims/es5-shim/issues#issue/5
|
||||||
|
// IE8 Reference:
|
||||||
|
// http://msdn.microsoft.com/en-us/library/dd282900.aspx
|
||||||
|
// http://msdn.microsoft.com/en-us/library/dd229916.aspx
|
||||||
|
// WebKit Bugs:
|
||||||
|
// https://bugs.webkit.org/show_bug.cgi?id=36423
|
||||||
|
|
||||||
|
var doesDefinePropertyWork = function doesDefinePropertyWork(object) {
|
||||||
|
try {
|
||||||
|
Object.defineProperty(object, 'sentinel', {});
|
||||||
|
return 'sentinel' in object;
|
||||||
|
} catch (exception) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// check whether defineProperty works if it's given. Otherwise,
|
||||||
|
// shim partially.
|
||||||
|
if (Object.defineProperty) {
|
||||||
|
var definePropertyWorksOnObject = doesDefinePropertyWork({});
|
||||||
|
var definePropertyWorksOnDom = typeof document === 'undefined' ||
|
||||||
|
doesDefinePropertyWork(document.createElement('div'));
|
||||||
|
if (!definePropertyWorksOnObject || !definePropertyWorksOnDom) {
|
||||||
|
var definePropertyFallback = Object.defineProperty,
|
||||||
|
definePropertiesFallback = Object.defineProperties;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!Object.defineProperty || definePropertyFallback) {
|
||||||
|
var ERR_NON_OBJECT_DESCRIPTOR = 'Property description must be an object: ';
|
||||||
|
var ERR_NON_OBJECT_TARGET = 'Object.defineProperty called on non-object: ';
|
||||||
|
var ERR_ACCESSORS_NOT_SUPPORTED = 'getters & setters can not be defined on this javascript engine';
|
||||||
|
|
||||||
|
Object.defineProperty = function defineProperty(object, property, descriptor) {
|
||||||
|
if ((typeof object !== 'object' && typeof object !== 'function') || object === null) {
|
||||||
|
throw new TypeError(ERR_NON_OBJECT_TARGET + object);
|
||||||
|
}
|
||||||
|
if ((typeof descriptor !== 'object' && typeof descriptor !== 'function') || descriptor === null) {
|
||||||
|
throw new TypeError(ERR_NON_OBJECT_DESCRIPTOR + descriptor);
|
||||||
|
}
|
||||||
|
// make a valiant attempt to use the real defineProperty
|
||||||
|
// for I8's DOM elements.
|
||||||
|
if (definePropertyFallback) {
|
||||||
|
try {
|
||||||
|
return definePropertyFallback.call(Object, object, property, descriptor);
|
||||||
|
} catch (exception) {
|
||||||
|
// try the shim if the real one doesn't work
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// If it's a data property.
|
||||||
|
if ('value' in descriptor) {
|
||||||
|
// fail silently if 'writable', 'enumerable', or 'configurable'
|
||||||
|
// are requested but not supported
|
||||||
|
/*
|
||||||
|
// alternate approach:
|
||||||
|
if ( // can't implement these features; allow false but not true
|
||||||
|
('writable' in descriptor && !descriptor.writable) ||
|
||||||
|
('enumerable' in descriptor && !descriptor.enumerable) ||
|
||||||
|
('configurable' in descriptor && !descriptor.configurable)
|
||||||
|
))
|
||||||
|
throw new RangeError(
|
||||||
|
'This implementation of Object.defineProperty does not support configurable, enumerable, or writable.'
|
||||||
|
);
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (supportsAccessors && (lookupGetter(object, property) || lookupSetter(object, property))) {
|
||||||
|
// As accessors are supported only on engines implementing
|
||||||
|
// `__proto__` we can safely override `__proto__` while defining
|
||||||
|
// a property to make sure that we don't hit an inherited
|
||||||
|
// accessor.
|
||||||
|
/* eslint-disable no-proto */
|
||||||
|
var prototype = object.__proto__;
|
||||||
|
object.__proto__ = prototypeOfObject;
|
||||||
|
// Deleting a property anyway since getter / setter may be
|
||||||
|
// defined on object itself.
|
||||||
|
delete object[property];
|
||||||
|
object[property] = descriptor.value;
|
||||||
|
// Setting original `__proto__` back now.
|
||||||
|
object.__proto__ = prototype;
|
||||||
|
/* eslint-enable no-proto */
|
||||||
|
} else {
|
||||||
|
object[property] = descriptor.value;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (!supportsAccessors && (('get' in descriptor) || ('set' in descriptor))) {
|
||||||
|
throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);
|
||||||
|
}
|
||||||
|
// If we got that far then getters and setters can be defined !!
|
||||||
|
if ('get' in descriptor) {
|
||||||
|
defineGetter(object, property, descriptor.get);
|
||||||
|
}
|
||||||
|
if ('set' in descriptor) {
|
||||||
|
defineSetter(object, property, descriptor.set);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return object;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// ES5 15.2.3.7
|
||||||
|
// http://es5.github.com/#x15.2.3.7
|
||||||
|
if (!Object.defineProperties || definePropertiesFallback) {
|
||||||
|
Object.defineProperties = function defineProperties(object, properties) {
|
||||||
|
// make a valiant attempt to use the real defineProperties
|
||||||
|
if (definePropertiesFallback) {
|
||||||
|
try {
|
||||||
|
return definePropertiesFallback.call(Object, object, properties);
|
||||||
|
} catch (exception) {
|
||||||
|
// try the shim if the real one doesn't work
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Object.keys(properties).forEach(function (property) {
|
||||||
|
if (property !== '__proto__') {
|
||||||
|
Object.defineProperty(object, property, properties[property]);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return object;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// ES5 15.2.3.8
|
||||||
|
// http://es5.github.com/#x15.2.3.8
|
||||||
|
if (!Object.seal) {
|
||||||
|
Object.seal = function seal(object) {
|
||||||
|
if (Object(object) !== object) {
|
||||||
|
throw new TypeError('Object.seal can only be called on Objects.');
|
||||||
|
}
|
||||||
|
// this is misleading and breaks feature-detection, but
|
||||||
|
// allows "securable" code to "gracefully" degrade to working
|
||||||
|
// but insecure code.
|
||||||
|
return object;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// ES5 15.2.3.9
|
||||||
|
// http://es5.github.com/#x15.2.3.9
|
||||||
|
if (!Object.freeze) {
|
||||||
|
Object.freeze = function freeze(object) {
|
||||||
|
if (Object(object) !== object) {
|
||||||
|
throw new TypeError('Object.freeze can only be called on Objects.');
|
||||||
|
}
|
||||||
|
// this is misleading and breaks feature-detection, but
|
||||||
|
// allows "securable" code to "gracefully" degrade to working
|
||||||
|
// but insecure code.
|
||||||
|
return object;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// detect a Rhino bug and patch it
|
||||||
|
try {
|
||||||
|
Object.freeze(function () {});
|
||||||
|
} catch (exception) {
|
||||||
|
Object.freeze = (function (freezeObject) {
|
||||||
|
return function freeze(object) {
|
||||||
|
if (typeof object === 'function') {
|
||||||
|
return object;
|
||||||
|
} else {
|
||||||
|
return freezeObject(object);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}(Object.freeze));
|
||||||
|
}
|
||||||
|
|
||||||
|
// ES5 15.2.3.10
|
||||||
|
// http://es5.github.com/#x15.2.3.10
|
||||||
|
if (!Object.preventExtensions) {
|
||||||
|
Object.preventExtensions = function preventExtensions(object) {
|
||||||
|
if (Object(object) !== object) {
|
||||||
|
throw new TypeError('Object.preventExtensions can only be called on Objects.');
|
||||||
|
}
|
||||||
|
// this is misleading and breaks feature-detection, but
|
||||||
|
// allows "securable" code to "gracefully" degrade to working
|
||||||
|
// but insecure code.
|
||||||
|
return object;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// ES5 15.2.3.11
|
||||||
|
// http://es5.github.com/#x15.2.3.11
|
||||||
|
if (!Object.isSealed) {
|
||||||
|
Object.isSealed = function isSealed(object) {
|
||||||
|
if (Object(object) !== object) {
|
||||||
|
throw new TypeError('Object.isSealed can only be called on Objects.');
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// ES5 15.2.3.12
|
||||||
|
// http://es5.github.com/#x15.2.3.12
|
||||||
|
if (!Object.isFrozen) {
|
||||||
|
Object.isFrozen = function isFrozen(object) {
|
||||||
|
if (Object(object) !== object) {
|
||||||
|
throw new TypeError('Object.isFrozen can only be called on Objects.');
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// ES5 15.2.3.13
|
||||||
|
// http://es5.github.com/#x15.2.3.13
|
||||||
|
if (!Object.isExtensible) {
|
||||||
|
Object.isExtensible = function isExtensible(object) {
|
||||||
|
// 1. If Type(O) is not Object throw a TypeError exception.
|
||||||
|
if (Object(object) !== object) {
|
||||||
|
throw new TypeError('Object.isExtensible can only be called on Objects.');
|
||||||
|
}
|
||||||
|
// 2. Return the Boolean value of the [[Extensible]] internal property of O.
|
||||||
|
var name = '';
|
||||||
|
while (owns(object, name)) {
|
||||||
|
name += '?';
|
||||||
|
}
|
||||||
|
object[name] = true;
|
||||||
|
var returnValue = owns(object, name);
|
||||||
|
delete object[name];
|
||||||
|
return returnValue;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
}));
|
|
@ -0,0 +1,2 @@
|
||||||
|
Gruntfile.js
|
||||||
|
*.min.js
|
|
@ -0,0 +1,49 @@
|
||||||
|
{
|
||||||
|
"root": true,
|
||||||
|
|
||||||
|
"extends": "@ljharb",
|
||||||
|
|
||||||
|
"ecmaFeatures": {
|
||||||
|
"regexYFlag": true,
|
||||||
|
"regexUFlag": true
|
||||||
|
},
|
||||||
|
|
||||||
|
"rules": {
|
||||||
|
"callback-return": [0],
|
||||||
|
"complexity": [1],
|
||||||
|
"consistent-return": [1],
|
||||||
|
"dot-notation": [2, { "allowKeywords": false }],
|
||||||
|
"eqeqeq": [2, "allow-null"],
|
||||||
|
"global-require": [0],
|
||||||
|
"id-length": [2, { "min": 1, "max": 40 }],
|
||||||
|
"max-depth": [2, 5],
|
||||||
|
"max-params": [2, 4],
|
||||||
|
"max-nested-callbacks": [2, 5],
|
||||||
|
"max-statements": [1, 25],
|
||||||
|
"new-cap": [2, { "capIsNewExceptions": ["Call", "Construct", "CreateHTML", "GetIterator", "GetMethod", "IsCallable", "IsConstructor", "IsPromise", "IsRegExp", "IteratorClose", "IteratorComplete", "IteratorNext", "IteratorStep", "Map", "OrigNumber", "RequireObjectCoercible", "SameValue", "SameValueZero", "Set", "SpeciesConstructor", "ToInteger", "ToLength", "ToNumber", "ToObject", "ToString", "ToUint32", "TypeIsObject"] }],
|
||||||
|
"no-constant-condition": [1],
|
||||||
|
"no-continue": [1],
|
||||||
|
"no-extend-native": [2, { "exceptions": ["Set"] }],
|
||||||
|
"no-extra-parens": [0],
|
||||||
|
"no-func-assign": [1],
|
||||||
|
"no-implicit-coercion": [2, {
|
||||||
|
"boolean": false,
|
||||||
|
"number": false,
|
||||||
|
"string": true
|
||||||
|
}],
|
||||||
|
"no-invalid-this": [0],
|
||||||
|
"no-magic-numbers": [0],
|
||||||
|
"no-native-reassign": [2, { "exceptions": ["Number", "Promise", "RegExp"] }],
|
||||||
|
"no-negated-condition": [1],
|
||||||
|
"no-plusplus": [1],
|
||||||
|
"no-restricted-syntax": [2, "DebuggerStatement", "LabeledStatement", "WithStatement"],
|
||||||
|
"no-shadow": [1],
|
||||||
|
"no-underscore-dangle": [0],
|
||||||
|
"no-unused-vars": [1, { "vars": "all", "args": "after-used" }],
|
||||||
|
"no-use-before-define": [1],
|
||||||
|
"no-useless-call": [0],
|
||||||
|
"operator-linebreak": [2, "after"],
|
||||||
|
"spaced-comment": [0],
|
||||||
|
"strict": [0]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,2 @@
|
||||||
|
.DS_Store
|
||||||
|
node_modules/
|
|
@ -0,0 +1,162 @@
|
||||||
|
{
|
||||||
|
"es3": true,
|
||||||
|
|
||||||
|
"additionalRules": [],
|
||||||
|
|
||||||
|
"requireSemicolons": true,
|
||||||
|
|
||||||
|
"disallowMultipleSpaces": true,
|
||||||
|
|
||||||
|
"disallowIdentifierNames": [],
|
||||||
|
|
||||||
|
"requireCurlyBraces": {
|
||||||
|
"allExcept": [],
|
||||||
|
"keywords": ["if", "else", "for", "while", "do", "try", "catch"]
|
||||||
|
},
|
||||||
|
|
||||||
|
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch", "function"],
|
||||||
|
|
||||||
|
"disallowSpaceAfterKeywords": [],
|
||||||
|
|
||||||
|
"disallowSpaceBeforeComma": true,
|
||||||
|
"disallowSpaceAfterComma": false,
|
||||||
|
"disallowSpaceBeforeSemicolon": true,
|
||||||
|
|
||||||
|
"disallowNodeTypes": [
|
||||||
|
"DebuggerStatement",
|
||||||
|
"LabeledStatement",
|
||||||
|
"SwitchCase",
|
||||||
|
"SwitchStatement",
|
||||||
|
"WithStatement"
|
||||||
|
],
|
||||||
|
|
||||||
|
"requireObjectKeysOnNewLine": { "allExcept": ["sameLine"] },
|
||||||
|
|
||||||
|
"requireSpacesInAnonymousFunctionExpression": { "beforeOpeningRoundBrace": true, "beforeOpeningCurlyBrace": true },
|
||||||
|
"requireSpacesInNamedFunctionExpression": { "beforeOpeningCurlyBrace": true },
|
||||||
|
"disallowSpacesInNamedFunctionExpression": { "beforeOpeningRoundBrace": true },
|
||||||
|
"requireSpacesInFunctionDeclaration": { "beforeOpeningCurlyBrace": true },
|
||||||
|
"disallowSpacesInFunctionDeclaration": { "beforeOpeningRoundBrace": true },
|
||||||
|
|
||||||
|
"requireSpaceBetweenArguments": true,
|
||||||
|
|
||||||
|
"disallowSpacesInsideParentheses": true,
|
||||||
|
|
||||||
|
"disallowSpacesInsideArrayBrackets": true,
|
||||||
|
|
||||||
|
"disallowQuotedKeysInObjects": "allButReserved",
|
||||||
|
|
||||||
|
"disallowSpaceAfterObjectKeys": true,
|
||||||
|
|
||||||
|
"requireCommaBeforeLineBreak": true,
|
||||||
|
|
||||||
|
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
|
||||||
|
"requireSpaceAfterPrefixUnaryOperators": [],
|
||||||
|
|
||||||
|
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
|
||||||
|
"requireSpaceBeforePostfixUnaryOperators": [],
|
||||||
|
|
||||||
|
"disallowSpaceBeforeBinaryOperators": [],
|
||||||
|
"requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
|
||||||
|
|
||||||
|
"requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
|
||||||
|
"disallowSpaceAfterBinaryOperators": [],
|
||||||
|
|
||||||
|
"disallowImplicitTypeConversion": ["binary", "string"],
|
||||||
|
|
||||||
|
"disallowKeywords": ["with", "eval"],
|
||||||
|
|
||||||
|
"requireKeywordsOnNewLine": [],
|
||||||
|
"disallowKeywordsOnNewLine": ["else"],
|
||||||
|
|
||||||
|
"requireLineFeedAtFileEnd": true,
|
||||||
|
|
||||||
|
"disallowTrailingWhitespace": true,
|
||||||
|
|
||||||
|
"disallowTrailingComma": true,
|
||||||
|
|
||||||
|
"excludeFiles": ["node_modules/**", "vendor/**"],
|
||||||
|
|
||||||
|
"disallowMultipleLineStrings": true,
|
||||||
|
|
||||||
|
"requireDotNotation": { "allExcept": ["keywords"] },
|
||||||
|
|
||||||
|
"requireParenthesesAroundIIFE": true,
|
||||||
|
|
||||||
|
"validateLineBreaks": "LF",
|
||||||
|
|
||||||
|
"validateQuoteMarks": {
|
||||||
|
"escape": true,
|
||||||
|
"mark": "'"
|
||||||
|
},
|
||||||
|
|
||||||
|
"disallowOperatorBeforeLineBreak": [],
|
||||||
|
|
||||||
|
"requireSpaceBeforeKeywords": [
|
||||||
|
"do",
|
||||||
|
"for",
|
||||||
|
"if",
|
||||||
|
"else",
|
||||||
|
"switch",
|
||||||
|
"case",
|
||||||
|
"try",
|
||||||
|
"catch",
|
||||||
|
"finally",
|
||||||
|
"while",
|
||||||
|
"with",
|
||||||
|
"return"
|
||||||
|
],
|
||||||
|
|
||||||
|
"validateAlignedFunctionParameters": {
|
||||||
|
"lineBreakAfterOpeningBraces": true,
|
||||||
|
"lineBreakBeforeClosingBraces": true
|
||||||
|
},
|
||||||
|
|
||||||
|
"requirePaddingNewLinesBeforeExport": true,
|
||||||
|
|
||||||
|
"validateNewlineAfterArrayElements": {
|
||||||
|
"maximum": 10
|
||||||
|
},
|
||||||
|
|
||||||
|
"requirePaddingNewLinesAfterUseStrict": true,
|
||||||
|
|
||||||
|
"disallowArrowFunctions": true,
|
||||||
|
|
||||||
|
"disallowMultiLineTernary": true,
|
||||||
|
|
||||||
|
"validateOrderInObjectKeys": false,
|
||||||
|
|
||||||
|
"disallowIdenticalDestructuringNames": true,
|
||||||
|
|
||||||
|
"disallowNestedTernaries": { "maxLevel": 1 },
|
||||||
|
|
||||||
|
"requireSpaceAfterComma": { "allExcept": ["trailing"] },
|
||||||
|
"requireAlignedMultilineParams": false,
|
||||||
|
|
||||||
|
"requireSpacesInGenerator": {
|
||||||
|
"afterStar": true
|
||||||
|
},
|
||||||
|
|
||||||
|
"disallowSpacesInGenerator": {
|
||||||
|
"beforeStar": true
|
||||||
|
},
|
||||||
|
|
||||||
|
"disallowVar": false,
|
||||||
|
|
||||||
|
"requireArrayDestructuring": false,
|
||||||
|
|
||||||
|
"requireEnhancedObjectLiterals": false,
|
||||||
|
|
||||||
|
"requireObjectDestructuring": false,
|
||||||
|
|
||||||
|
"requireEarlyReturn": false,
|
||||||
|
|
||||||
|
"requireCapitalizedConstructorsNew": {
|
||||||
|
"allExcept": ["Function", "String", "Object", "Symbol", "Number", "Date", "RegExp", "Error", "Boolean", "Array", "OrigNumber"]
|
||||||
|
},
|
||||||
|
|
||||||
|
"requireImportAlphabetized": false,
|
||||||
|
|
||||||
|
"disallowSpacesInsideTemplateStringPlaceholders": true
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"es3": true,
|
||||||
|
"esnext": true,
|
||||||
|
"sub": true,
|
||||||
|
"newcap": false,
|
||||||
|
"notypeof": true
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
.DS_Store
|
||||||
|
node_modules/
|
||||||
|
.travis.yml
|
||||||
|
testling.html
|
|
@ -0,0 +1,98 @@
|
||||||
|
language: node_js
|
||||||
|
node_js:
|
||||||
|
- "5.7"
|
||||||
|
- "5.6"
|
||||||
|
- "5.5"
|
||||||
|
- "5.4"
|
||||||
|
- "5.3"
|
||||||
|
- "5.2"
|
||||||
|
- "5.1"
|
||||||
|
- "5.0"
|
||||||
|
- "4.3"
|
||||||
|
- "4.2"
|
||||||
|
- "4.1"
|
||||||
|
- "4.0"
|
||||||
|
- "iojs-v3.3"
|
||||||
|
- "iojs-v3.2"
|
||||||
|
- "iojs-v3.1"
|
||||||
|
- "iojs-v3.0"
|
||||||
|
- "iojs-v2.5"
|
||||||
|
- "iojs-v2.4"
|
||||||
|
- "iojs-v2.3"
|
||||||
|
- "iojs-v2.2"
|
||||||
|
- "iojs-v2.1"
|
||||||
|
- "iojs-v2.0"
|
||||||
|
- "iojs-v1.8"
|
||||||
|
- "iojs-v1.7"
|
||||||
|
- "iojs-v1.6"
|
||||||
|
- "iojs-v1.5"
|
||||||
|
- "iojs-v1.4"
|
||||||
|
- "iojs-v1.3"
|
||||||
|
- "iojs-v1.2"
|
||||||
|
- "iojs-v1.1"
|
||||||
|
- "iojs-v1.0"
|
||||||
|
- "0.11"
|
||||||
|
- "0.10"
|
||||||
|
- "0.9"
|
||||||
|
- "0.8"
|
||||||
|
- "0.6"
|
||||||
|
- "0.4"
|
||||||
|
before_install:
|
||||||
|
- 'if [ "${TRAVIS_NODE_VERSION}" != "0.9" ]; then case "$(npm --version)" in 1.*) npm install -g npm@1.4.28 ;; 2.*) npm install -g npm@2 ;; esac ; fi'
|
||||||
|
- 'if [ "${TRAVIS_NODE_VERSION}" != "0.6" ] && [ "${TRAVIS_NODE_VERSION}" != "0.9" ]; then npm install -g npm; fi'
|
||||||
|
- '[ "${TRAVIS_RUN_SAUCE}" != "true" ] || npm install -g grunt-cli'
|
||||||
|
script:
|
||||||
|
- 'if [ "${TRAVIS_RUN_SAUCE}" == "true" ]; then npm run sauce ; elif [ "${TRAVIS_NODE_VERSION}" != "0.11" ] && [ "${TRAVIS_RUN_LINT_ONLY}" != "true" ]; then npm run tests-only ; else npm test ; fi'
|
||||||
|
# NOTE: sauce_connect is disabled, because it applies to every test and we only need it on one of them.
|
||||||
|
# It's available inside `npm run sauce`
|
||||||
|
# addons:
|
||||||
|
# sauce_connect: true
|
||||||
|
sudo: false
|
||||||
|
matrix:
|
||||||
|
fast_finish: true
|
||||||
|
include:
|
||||||
|
- node_js: "0.12"
|
||||||
|
env: TRAVIS_RUN_SAUCE=false TRAVIS_RUN_LINT_ONLY=true
|
||||||
|
- node_js: "0.12"
|
||||||
|
env: TRAVIS_RUN_SAUCE=true TRAVIS_RUN_LINT_ONLY=false
|
||||||
|
- node_js: "0.12"
|
||||||
|
env: TRAVIS_RUN_SAUCE=false TRAVIS_RUN_LINT_ONLY=false
|
||||||
|
allow_failures:
|
||||||
|
- node_js: "5.6"
|
||||||
|
- node_js: "5.5"
|
||||||
|
- node_js: "5.4"
|
||||||
|
- node_js: "5.3"
|
||||||
|
- node_js: "5.2"
|
||||||
|
- node_js: "5.1"
|
||||||
|
- node_js: "5.0"
|
||||||
|
- node_js: "4.2"
|
||||||
|
- node_js: "4.1"
|
||||||
|
- node_js: "4.0"
|
||||||
|
- node_js: "iojs-v3.2"
|
||||||
|
- node_js: "iojs-v3.1"
|
||||||
|
- node_js: "iojs-v3.0"
|
||||||
|
- node_js: "iojs-v2.4"
|
||||||
|
- node_js: "iojs-v2.3"
|
||||||
|
- node_js: "iojs-v2.2"
|
||||||
|
- node_js: "iojs-v2.1"
|
||||||
|
- node_js: "iojs-v2.0"
|
||||||
|
- node_js: "iojs-v1.7"
|
||||||
|
- node_js: "iojs-v1.6"
|
||||||
|
- node_js: "iojs-v1.5"
|
||||||
|
- node_js: "iojs-v1.4"
|
||||||
|
- node_js: "iojs-v1.3"
|
||||||
|
- node_js: "iojs-v1.2"
|
||||||
|
- node_js: "iojs-v1.1"
|
||||||
|
- node_js: "iojs-v1.0"
|
||||||
|
- node_js: "0.11"
|
||||||
|
- node_js: "0.9"
|
||||||
|
- node_js: "0.8"
|
||||||
|
- node_js: "0.6"
|
||||||
|
- node_js: "0.4"
|
||||||
|
- node_js: "0.12"
|
||||||
|
env: TRAVIS_RUN_SAUCE=true TRAVIS_RUN_LINT_ONLY=false
|
||||||
|
env:
|
||||||
|
global:
|
||||||
|
- secure: YD4HLTE93NhSxa+64MYHhnbJ2ZkREp/HGiFGE4q+AWShqAiehtqE/K3hQUe7p0+1/2/34avhm2bz31j508ayCobm6SSUhpleJH58IK3v4LI2o9qtM+2N/MPJFOIvbziHqOM6fPluowU0k3OSdEAp4U+6S23wKSuXzcUSK8upAiM=
|
||||||
|
- secure: k7+PgLcGJL1zyMMxZ8DSRxRrmLr5sb9i4M1kCdUvw2kRGacqoI3UhdvO2AyrAD0TAjIQoRM4dL37WsgJijhTNOu1gTb5lMUXWSQU47T7tFTvpM6OlGvQ54I7iAgv5NABZ/0gDGlQDrVdb9hQPLG1FDrMxsxcdXfgXqzqbhNsv7I=
|
||||||
|
- SAUCE_HAS_TUNNEL=true
|
|
@ -0,0 +1,98 @@
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
module.exports = function (grunt) {
|
||||||
|
var browsers = [
|
||||||
|
{ browserName: 'firefox', version: '19', platform: 'XP' },
|
||||||
|
{ browserName: 'firefox', platform: 'linux' },
|
||||||
|
{ browserName: 'firefox', platform: 'OS X 10.10' },
|
||||||
|
{ browserName: 'chrome', platform: 'linux' },
|
||||||
|
{ browserName: 'chrome', platform: 'OS X 10.9' },
|
||||||
|
{ browserName: 'chrome', platform: 'XP' },
|
||||||
|
{ browserName: 'internet explorer', platform: 'Windows 8.1', version: '11' },
|
||||||
|
{ browserName: 'internet explorer', platform: 'WIN8', version: '10' },
|
||||||
|
{ browserName: 'internet explorer', platform: 'VISTA', version: '9' },
|
||||||
|
{ browserName: 'safari', platform: 'OS X 10.6' },
|
||||||
|
{ browserName: 'safari', platform: 'OS X 10.8' },
|
||||||
|
{ browserName: 'safari', platform: 'OS X 10.9' },
|
||||||
|
{ browserName: 'safari', platform: 'OS X 10.10' },
|
||||||
|
{ browserName: 'iphone', platform: 'OS X 10.9', version: '7.1' },
|
||||||
|
{ browserName: 'android', platform: 'Linux', version: '4.4' },
|
||||||
|
];
|
||||||
|
var extraBrowsers = [
|
||||||
|
{ browserName: 'firefox', platform: 'linux', version: '30' },
|
||||||
|
{ browserName: 'firefox', platform: 'linux', version: '25' },
|
||||||
|
{ browserName: 'iphone', platform: 'OS X 10.8', version: '6.1' },
|
||||||
|
{ browserName: 'iphone', platform: 'OS X 10.8', version: '5.1' },
|
||||||
|
{ browserName: 'android', platform: 'Linux', version: '4.2' },
|
||||||
|
// XXX haven't investigated these:
|
||||||
|
// { browserName: 'opera', platform: 'Windows 7', version: '12' },
|
||||||
|
// { browserName: 'opera', platform: 'Windows 2008', version: '12' }
|
||||||
|
// { browserName: 'iphone', platform: 'OS X 10.6', version: '4.3' },
|
||||||
|
// { browserName: 'android', platform: 'Linux', version: '4.0' },
|
||||||
|
];
|
||||||
|
if (grunt.option('extra')) {
|
||||||
|
browsers = browsers.concat(extraBrowsers);
|
||||||
|
}
|
||||||
|
grunt.initConfig({
|
||||||
|
connect: {
|
||||||
|
server: {
|
||||||
|
options: {
|
||||||
|
base: '',
|
||||||
|
port: 9999,
|
||||||
|
useAvailablePort: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
'saucelabs-mocha': {
|
||||||
|
all: {
|
||||||
|
options: {
|
||||||
|
urls: (function () {
|
||||||
|
var urls = ['http://localhost:9999/test/'];
|
||||||
|
if (grunt.option('extra')) {
|
||||||
|
urls.push('http://localhost:9999/test-sham/');
|
||||||
|
}
|
||||||
|
return urls;
|
||||||
|
}()),
|
||||||
|
// tunnelTimeout: 5,
|
||||||
|
build: process.env.TRAVIS_BUILD_NUMBER,
|
||||||
|
tunneled: !process.env.SAUCE_HAS_TUNNEL,
|
||||||
|
identifier: process.env.TRAVIS_JOB_NUMBER,
|
||||||
|
sauceConfig: {
|
||||||
|
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER
|
||||||
|
},
|
||||||
|
// concurrency: 3,
|
||||||
|
browsers: browsers,
|
||||||
|
testname: (function () {
|
||||||
|
var testname = 'mocha';
|
||||||
|
if (process.env.TRAVIS_PULL_REQUEST && process.env.TRAVIS_PULL_REQUEST !== 'false') {
|
||||||
|
testname += ' (PR ' + process.env.TRAVIS_PULL_REQUEST + ')';
|
||||||
|
}
|
||||||
|
if (process.env.TRAVIS_BRANCH && process.env.TRAVIS_BRANCH !== 'false') {
|
||||||
|
testname += ' (branch ' + process.env.TRAVIS_BRANCH + ')';
|
||||||
|
}
|
||||||
|
return testname;
|
||||||
|
}()),
|
||||||
|
tags: (function () {
|
||||||
|
var tags = [];
|
||||||
|
if (process.env.TRAVIS_PULL_REQUEST && process.env.TRAVIS_PULL_REQUEST !== 'false') {
|
||||||
|
tags.push('PR-' + process.env.TRAVIS_PULL_REQUEST);
|
||||||
|
}
|
||||||
|
if (process.env.TRAVIS_BRANCH && process.env.TRAVIS_BRANCH !== 'false') {
|
||||||
|
tags.push(process.env.TRAVIS_BRANCH);
|
||||||
|
}
|
||||||
|
return tags;
|
||||||
|
}())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
watch: {}
|
||||||
|
});
|
||||||
|
// Loading dependencies
|
||||||
|
for (var key in grunt.file.readJSON('package.json').devDependencies) {
|
||||||
|
if (key !== 'grunt' && key.indexOf('grunt') === 0) {
|
||||||
|
grunt.loadNpmTasks(key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
grunt.registerTask('dev', ['connect', 'watch']);
|
||||||
|
grunt.registerTask('sauce', ['connect', 'saucelabs-mocha']);
|
||||||
|
};
|
|
@ -0,0 +1,26 @@
|
||||||
|
The project was initially based on [es6-shim by Axel Rauschmayer](https://github.com/rauschma/es6-shim).
|
||||||
|
|
||||||
|
Current maintainers are: [Paul Miller](http://paulmillr.com), [Jordan Harband](https://github.com/ljharb), and [C. Scott Ananian](http://cscott.net).
|
||||||
|
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2013-2016 Paul Miller (http://paulmillr.com) and contributors
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
||||||
|
|
|
@ -0,0 +1,269 @@
|
||||||
|
# ES6 Shim
|
||||||
|
Provides compatibility shims so that legacy JavaScript engines behave as
|
||||||
|
closely as possible to ECMAScript 6 (Harmony).
|
||||||
|
|
||||||
|
[![Build Status][1]][2] [![dependency status][3]][4] [![dev dependency status][5]][6]
|
||||||
|
|
||||||
|
[![browser support](https://ci.testling.com/paulmillr/es6-shim.png)](https://ci.testling.com/paulmillr/es6-shim)
|
||||||
|
|
||||||
|
[![Sauce Test Status](https://saucelabs.com/browser-matrix/es6-shim.svg)](https://saucelabs.com/u/es6-shim)
|
||||||
|
|
||||||
|
[HTML version of the final ECMAScript 6 spec][spec-html-url]
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
If you want to use it in browser:
|
||||||
|
|
||||||
|
* Just include es6-shim before your scripts.
|
||||||
|
* Include [es5-shim][es5-shim-url] especially if your browser doesn't support ECMAScript 5 - but every JS engine requires the `es5-shim` to correct broken implementations, so it's strongly recommended to always include it.
|
||||||
|
|
||||||
|
For `node.js`, `io.js`, or any `npm`-managed workflow (this is the recommended method):
|
||||||
|
|
||||||
|
npm install es6-shim
|
||||||
|
|
||||||
|
Alternative methods:
|
||||||
|
* `component install paulmillr/es6-shim` if you’re using [component(1)](https://github.com/componentjs/component).
|
||||||
|
* `bower install es6-shim` if you’re using [Bower](http://bower.io/).
|
||||||
|
|
||||||
|
In both browser and node you may also want to include `unorm`; see the [`String.prototype.normalize`](#stringprototypenormalize) section for details.
|
||||||
|
|
||||||
|
## Safe shims
|
||||||
|
|
||||||
|
* `Map`, `Set` (requires ES5 property descriptor support)
|
||||||
|
* `Promise`
|
||||||
|
* `String`:
|
||||||
|
* `fromCodePoint()` ([a standalone shim is also available](http://mths.be/fromcodepoint))
|
||||||
|
* `raw()`
|
||||||
|
* `String.prototype`:
|
||||||
|
* `codePointAt()` ([a standalone shim is also available](http://mths.be/codepointat))
|
||||||
|
* `endsWith()` ([a standalone shim is also available](http://mths.be/endswith))
|
||||||
|
* `includes()` ([a standalone shim is also available](http://mths.be/includes))
|
||||||
|
* `repeat()` ([a standalone shim is also available](http://mths.be/repeat))
|
||||||
|
* `startsWith()` ([a standalone shim is also available](http://mths.be/startswith))
|
||||||
|
* `RegExp`:
|
||||||
|
* `new RegExp`, when given a RegExp as the pattern, will no longer throw when given a "flags" string argument. (requires ES5)
|
||||||
|
* `RegExp.prototype`:
|
||||||
|
* `flags` (requires ES5) ([a standalone shim is also available](https://github.com/es-shims/RegExp.prototype.flags))
|
||||||
|
* `[Symbol.match]` (requires native `Symbol`s)
|
||||||
|
* `[Symbol.replace]` (requires native `Symbol`s)
|
||||||
|
* `[Symbol.search]` (requires native `Symbol`s)
|
||||||
|
* `[Symbol.split]` (requires native `Symbol`s)
|
||||||
|
* `toString`
|
||||||
|
* `Number`:
|
||||||
|
* binary and octal literals: `Number('0b1')` and `Number('0o7')`
|
||||||
|
* `EPSILON`
|
||||||
|
* `MAX_SAFE_INTEGER`
|
||||||
|
* `MIN_SAFE_INTEGER`
|
||||||
|
* `isNaN()`([a standalone shim is also available](https://www.npmjs.com/package/is-nan))
|
||||||
|
* `isInteger()`
|
||||||
|
* `isSafeInteger()`
|
||||||
|
* `isFinite()`
|
||||||
|
* `parseInt()`
|
||||||
|
* `parseFloat()`
|
||||||
|
* `Array`:
|
||||||
|
* `from()` ([a standalone shim is also available](https://www.npmjs.com/package/array.from))
|
||||||
|
* `of()` ([a standalone shim is also available](https://www.npmjs.com/package/array.of))
|
||||||
|
* `Array.prototype`:
|
||||||
|
* `copyWithin()`
|
||||||
|
* `entries()`
|
||||||
|
* `fill()`
|
||||||
|
* `find()` ([a standalone shim is also available](https://github.com/paulmillr/Array.prototype.find))
|
||||||
|
* `findIndex()` ([a standalone shim is also available](https://github.com/paulmillr/Array.prototype.findIndex))
|
||||||
|
* `keys()` (note: keys/values/entries return an `ArrayIterator` object)
|
||||||
|
* `values()`
|
||||||
|
* `indexOf()` (ES6 errata)
|
||||||
|
* `Object`:
|
||||||
|
* `assign()` ([a standalone shim is also available](https://github.com/ljharb/object.assign))
|
||||||
|
* `is()` ([a standalone shim is also available](https://github.com/ljharb/object-is))
|
||||||
|
* `keys()` (in ES5, but no longer throws on non-object non-null/undefined values in ES6)
|
||||||
|
* `setPrototypeOf()` (IE >= 11)
|
||||||
|
* `Function.prototype`:
|
||||||
|
* `name` (es6-sham, covers IE 9-11)
|
||||||
|
* `Math`:
|
||||||
|
* `acosh()`
|
||||||
|
* `asinh()`
|
||||||
|
* `atanh()`
|
||||||
|
* `cbrt()`
|
||||||
|
* `clz32()`
|
||||||
|
* `cosh()`
|
||||||
|
* `expm1()`
|
||||||
|
* `fround()`
|
||||||
|
* `hypot()`
|
||||||
|
* `imul()`
|
||||||
|
* `log10()`
|
||||||
|
* `log1p()`
|
||||||
|
* `log2()`
|
||||||
|
* `sign()`
|
||||||
|
* `sinh()`
|
||||||
|
* `tanh()`
|
||||||
|
* `trunc()`
|
||||||
|
|
||||||
|
Math functions’ accuracy is 1e-11.
|
||||||
|
|
||||||
|
* `Reflect`
|
||||||
|
* `apply()`
|
||||||
|
* `construct()`
|
||||||
|
* `defineProperty()`
|
||||||
|
* `deleteProperty()`
|
||||||
|
* `get()`
|
||||||
|
* `getOwnPropertyDescriptor()`
|
||||||
|
* `getPrototypeOf()`
|
||||||
|
* `has()`
|
||||||
|
* `isExtensible()`
|
||||||
|
* `ownKeys()`
|
||||||
|
* `preventExtensions()`
|
||||||
|
* `set()`
|
||||||
|
* `setPrototypeOf()`
|
||||||
|
|
||||||
|
* `Symbol` (only if it already exists)
|
||||||
|
* `match` (and corresponding `String#match`, `String#startsWith`, `String#endsWith`, `String#includes`, `RegExp` support)
|
||||||
|
* `replace` (and corresponding `String#replace` support)
|
||||||
|
* `search` (and corresponding `String#search` support)
|
||||||
|
* `split` (and corresponding `String#split` support)
|
||||||
|
|
||||||
|
Well-known symbols will only be provided if the engine already has `Symbol` support.
|
||||||
|
|
||||||
|
* `String.prototype` Annex B HTML methods
|
||||||
|
* `anchor()`
|
||||||
|
* `big()`
|
||||||
|
* `blink()`
|
||||||
|
* `bold()`
|
||||||
|
* `fixed()`
|
||||||
|
* `fontcolor()`
|
||||||
|
* `fontsize()`
|
||||||
|
* `italics()`
|
||||||
|
* `link()`
|
||||||
|
* `small()`
|
||||||
|
* `strike()`
|
||||||
|
* `sub()`
|
||||||
|
* `sup()`
|
||||||
|
|
||||||
|
These methods are part of "Annex B", which means that although they are a defacto standard, you shouldn't use them. None the less, the `es6-shim` provides them and normalizes their behavior across browsers.
|
||||||
|
|
||||||
|
## Subclassing
|
||||||
|
The `Map`, `Set`, and `Promise` implementations are subclassable.
|
||||||
|
You should use the following pattern to create a subclass in ES5 which will continue to work in ES6:
|
||||||
|
```javascript
|
||||||
|
require('es6-shim');
|
||||||
|
|
||||||
|
function MyPromise(exec) {
|
||||||
|
var promise = new Promise(exec);
|
||||||
|
Object.setPrototypeOf(promise, MyPromise.prototype);
|
||||||
|
// ...
|
||||||
|
return promise;
|
||||||
|
}
|
||||||
|
Object.setPrototypeOf(MyPromise, Promise);
|
||||||
|
MyPromise.prototype = Object.create(Promise.prototype, {
|
||||||
|
constructor: { value: MyPromise }
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
## String.prototype.normalize
|
||||||
|
Including a proper shim for `String.prototype.normalize` would increase the size of this library by a factor of more than 4.
|
||||||
|
So instead we recommend that you install the [`unorm`](https://github.com/walling/unorm) package alongside `es6-shim` if you need `String.prototype.normalize`.
|
||||||
|
See https://github.com/paulmillr/es6-shim/issues/134 for more discussion.
|
||||||
|
|
||||||
|
|
||||||
|
## WeakMap shim
|
||||||
|
It is not possible to implement WeakMap in pure javascript.
|
||||||
|
The [es6-collections](https://github.com/WebReflection/es6-collections) implementation doesn't hold values strongly, which is critical for the collection. `es6-shim` decided to not include an incorrect shim.
|
||||||
|
|
||||||
|
`WeakMap` has very unusual use-cases, so you probably won't need it at all (use simple `Map` instead).
|
||||||
|
|
||||||
|
## Getting started
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
require('es6-shim');
|
||||||
|
var assert = require('assert');
|
||||||
|
|
||||||
|
assert.equal(true, 'abc'.startsWith('a'));
|
||||||
|
assert.equal(false, 'abc'.endsWith('a'));
|
||||||
|
assert.equal(true, 'john alice'.includes('john'));
|
||||||
|
assert.equal('123'.repeat(2), '123123');
|
||||||
|
|
||||||
|
assert.equal(false, NaN === NaN);
|
||||||
|
assert.equal(true, Object.is(NaN, NaN));
|
||||||
|
assert.equal(true, -0 === 0);
|
||||||
|
assert.equal(false, Object.is(-0, 0));
|
||||||
|
|
||||||
|
var result = Object.assign({ a: 1 }, { b: 2 });
|
||||||
|
assert.deepEqual(result, { a: 1, b: 2 });
|
||||||
|
|
||||||
|
assert.equal(true, isNaN('a'));
|
||||||
|
assert.equal(false, Number.isNaN('a'));
|
||||||
|
assert.equal(true, Number.isNaN(NaN));
|
||||||
|
|
||||||
|
assert.equal(true, isFinite('123'));
|
||||||
|
assert.equal(false, Number.isFinite('123'));
|
||||||
|
assert.equal(false, Number.isFinite(Infinity));
|
||||||
|
|
||||||
|
// Tests if value is a number, finite,
|
||||||
|
// >= -9007199254740992 && <= 9007199254740992 and floor(value) === value
|
||||||
|
assert.equal(false, Number.isInteger(2.4));
|
||||||
|
|
||||||
|
assert.equal(1, Math.sign(400));
|
||||||
|
assert.equal(0, Math.sign(0));
|
||||||
|
assert.equal(-1, Math.sign(-400));
|
||||||
|
|
||||||
|
var found = [5, 10, 15, 10].find(function (item) { return item / 2 === 5; });
|
||||||
|
assert.equal(10, found);
|
||||||
|
|
||||||
|
var foundIndex = [5, 10, 15, 10].findIndex(function (item) { return item / 2 === 5; });
|
||||||
|
assert.equal(1, foundIndex);
|
||||||
|
|
||||||
|
// Replacement for `{}` key-value storage.
|
||||||
|
// Keys can be anything.
|
||||||
|
var map = new Map([['Bob', 42], ['Foo', 'bar']]);
|
||||||
|
map.set('John', 25);
|
||||||
|
map.set('Alice', 400);
|
||||||
|
map.set(['meh'], 555);
|
||||||
|
assert.equal(undefined, map.get(['meh'])); // undefined because you need to use exactly the same object.
|
||||||
|
map.delete('Alice');
|
||||||
|
map.keys();
|
||||||
|
map.values();
|
||||||
|
assert.equal(4, map.size);
|
||||||
|
|
||||||
|
// Useful for storing unique items.
|
||||||
|
var set = new Set([0, 1]);
|
||||||
|
set.add(2);
|
||||||
|
set.add(5);
|
||||||
|
assert.equal(true, set.has(0));
|
||||||
|
assert.equal(true, set.has(1));
|
||||||
|
assert.equal(true, set.has(2));
|
||||||
|
assert.equal(false, set.has(4));
|
||||||
|
assert.equal(true, set.has(5));
|
||||||
|
set.delete(5);
|
||||||
|
assert.equal(false, set.has(5));
|
||||||
|
|
||||||
|
// Promises, see
|
||||||
|
// http://www.slideshare.net/domenicdenicola/callbacks-promises-and-coroutines-oh-my-the-evolution-of-asynchronicity-in-javascript
|
||||||
|
// https://github.com/petkaantonov/bluebird/#what-are-promises-and-why-should-i-use-them
|
||||||
|
Promise.resolve(5).then(function (value) {
|
||||||
|
assert.equal(value, 5);
|
||||||
|
if (value) throw new Error('whoops!');
|
||||||
|
// do some stuff
|
||||||
|
return anotherPromise();
|
||||||
|
}).catch(function (e) {
|
||||||
|
assert.equal(e.message, 'whoops!');
|
||||||
|
assert.equal(true, e instanceof Error);
|
||||||
|
// any errors thrown asynchronously end up here
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
## Caveats
|
||||||
|
|
||||||
|
- `Object.setPrototypeOf` / `Reflect.setPrototypeOf`
|
||||||
|
- Note that null objects (`Object.create(null)`, eg, an object with `null` as its `[[Prototype]]`) can not have their `[[Prototype]]` changed except via a native `Object.setPrototypeOf`.
|
||||||
|
- Well-known `Symbol`s
|
||||||
|
- In order to make them work cross-realm, these are created with the global `Symbol` registry via `Symbol.for`. This does not violate the spec, but it does mean that `Symbol.for('Symbol.search') === Symbol.search` will be `true`, which it would not by default in a fresh compliant realm.
|
||||||
|
|
||||||
|
## [License][license-url]
|
||||||
|
|
||||||
|
[1]: https://travis-ci.org/paulmillr/es6-shim.svg
|
||||||
|
[2]: https://travis-ci.org/paulmillr/es6-shim
|
||||||
|
[3]: https://david-dm.org/paulmillr/es6-shim.svg
|
||||||
|
[4]: https://david-dm.org/paulmillr/es6-shim
|
||||||
|
[5]: https://david-dm.org/paulmillr/es6-shim/dev-status.svg
|
||||||
|
[6]: https://david-dm.org/paulmillr/es6-shim#info=devDependencies
|
||||||
|
[license-url]: https://github.com/paulmillr/es6-shim/blob/master/LICENSE
|
||||||
|
[spec-html-url]: http://www.ecma-international.org/ecma-262/6.0/
|
||||||
|
[es5-shim-url]: https://github.com/es-shims/es5-shim
|