c2505151 by Jeff Balicki

mobile fixes

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 4ef69f92
Showing 887 changed files with 0 additions and 2811 deletions
This theme or plugin is comprised of two parts.
(1) the PHP code and integrated HTML are licensed under the General Public
License (GPL). You will find a copy of the GPL in the same directory as this
text file.
(2) All other parts, but not limited to the CSS code, images, and design are
licensed according to the terms of your purchased license.
Read more about licensing here: http://themeforest.net/licenses
/*
* 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;
}
button.DTTT_button,
div.DTTT_button,
a.DTTT_button {
position: relative;
float: left;
margin-right: 3px;
padding: 5px 8px;
border: 1px solid #999;
cursor: pointer;
*cursor: hand;
font-size: 0.88em;
color: black !important;
-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
button.DTTT_button_csv,
button.DTTT_button_xls,
button.DTTT_button_copy,
button.DTTT_button_pdf,
button.DTTT_button_print {
padding-right: 0px;
}
button.DTTT_button_csv span,
button.DTTT_button_xls span,
button.DTTT_button_copy span,
button.DTTT_button_pdf span,
button.DTTT_button_print span {
display: inline-block;
height: 24px;
line-height: 24px;
padding-right: 30px;
}
button.DTTT_button_csv span { background: url(../images/csv.png) no-repeat bottom right; }
button.DTTT_button_csv:hover span { background: url(../images/csv_hover.png) no-repeat center right; }
button.DTTT_button_xls span { background: url(../images/xls.png) no-repeat center right; }
button.DTTT_button_xls:hover span { background: #f0f0f0 url(../images/xls_hover.png) no-repeat center right; }
button.DTTT_button_copy span { background: url(../images/copy.png) no-repeat center right; }
button.DTTT_button_copy:hover span { background: #f0f0f0 url(../images/copy_hover.png) no-repeat center right; }
button.DTTT_button_pdf span { background: url(../images/pdf.png) no-repeat center right; }
button.DTTT_button_pdf:hover span { background: #f0f0f0 url(../images/pdf_hover.png) no-repeat center right; }
button.DTTT_button_print span { background: url(../images/print.png) no-repeat center right; }
button.DTTT_button_print:hover span { background: #f0f0f0 url(../images/print_hover.png) no-repeat center right; }
*/
button.DTTT_button_collection span {
padding-right: 17px;
}
button.DTTT_button_collection:hover span {
padding-right: 17px;
}
/*
* 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 {
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;
}
.wdt-datatables-admin-wrap .card.wdt-addons {
max-width: 100%;
padding: 0;
margin-top: 0;
}
.wdt-addons .row {
display: flex;
}
.wdt-addons .row .thumbnail {
height: 100%;
}
.wdt-addons-find-out-more {
padding: 10px 15px;
position: absolute;
bottom: 0;
}
\ No newline at end of file
@font-face {
font-weight: 400;
font-style: normal;
font-family: WPDataTablesIcons;
src: url(../../fonts/wpdatatablesicons-base.eot);
src: url(../../fonts/wpdatatablesicons-base.eot?#iefix) format('embedded-opentype'), url(../../fonts/wpdatatablesicons-base.woff) format('woff'), url(../../fonts/wpdatatablesicons-base.ttf) format('truetype'), url(../../fonts/wpdatatablesicons-base.svg#wpdatatablesicons-base) format('svg');
}
/* Icons */
#toplevel_page_wpdatatables-administration div.wp-menu-image:before,
.toplevel_page_wpdatatables-administration .ui-dialog-titlebar-close:before {
display: inline-block;
font-family: 'WPDataTablesIcons' !important;
font-style: normal;
font-weight: normal;
text-align: center;
text-decoration: none;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
}
#toplevel_page_wpdatatables-administration div.wp-menu-image:before {
content: "\e016";
}
.wpdt-c #pick-range-table-container { width: 100%; max-height: 400px; overflow: auto; }
.wpdt-c #range_picked_info { padding: 3px; font-size: 10px; }
.wpdt-c div.columns-block-selecter-buttons { margin: 5px }
.wpdt-c div.wpDataTables div.strings-error,
.wpdt-c div.wpDataTables div.min-columns-error,
.wpdt-c div.wpDataTables div.max-columns-error {
font-weight: bold;
color: red;
margin: 5px;
padding: 3px;
border: 1px solid red;
border-radius: 3px;
background-color: #fdd;
}
div.mce-widget button i.mce-i-wpdatatable:before{
content: "\e016";
font-family: 'WPDataTablesIcons' !important;
}
div.mce-widget button i.mce-i-wpdatachart:before{
content: "\f185";
font: 400 20px/1 dashicons;
}
.wpdt-c #formattingRules { padding: 10px }
.wpdt-c #wpDataTablesSettings td.columnsBlock input.possibleValues {
display: none !important;
}
.wpdt-c #wpDataTablesSettings td.columnsBlock button.generatePossibleValues {
height: auto;
white-space: normal;
line-height: 20px;
}
.wpdt-c #wdtConfigureTableToolsBlock {
margin: 5px;
padding-top: 10px;
display: none;
}
.wpdt-c #wdtConfigureTableToolsBlock label {
display: block;
margin: 3px;
}
.wpdt-c #wdtSaveConfirmationPopover {
position: absolute;
background-color: rgba(78, 125, 1,0.7);
padding: 8px;
border-radius: 4px;
color: #fff;
top: -40px;
display: none;
}
.wpdt-c div.addons_container {
position: relative;
background: #fff;
border: 1px solid #ccc;
padding: 10px;
overflow: hidden;
}
.wpdt-c div.wdt_addon_thumb {
width: 250px;
height: 180px;
background-color: #ddd;
position: relative;
opacity: 0.75;
transition: opacity 0.2s ease;
}
.wpdt-c div.wdt_addon_thumb:hover {
opacity: 1;
}
.wpdt-c div.wdt_addon {
float: left;
width: 250px;
height: 315px;
margin: 10px;
padding: 10px;
border: 1px solid #eaeaea;
background-color: #f7f7f7;
}
.wpdt-c div.wdt_addon_title {
position: absolute;
bottom: 0;
background: rgba(0,0,0,0.5);
width: 100%;
height: 40px;
padding: 0;
}
.wpdt-c div.wdt_addon_title h3 {
color: #fff;
margin: 0;
margin-left: 10px;
margin-top: 10px;
}
.wpdt-c div.wdt_addon_title h3 a {
color: #fff;
text-decoration: none;
transition: color 0.2s ease;
}
.wpdt-c div.wdt_addon_title h3 a:hover {
color: #ddd;
text-decoration: underline;
}
.wpdt-c div.dt-button-info {
position: fixed;
top: 50%;
left: 50%;
width: 400px;
margin-top: -100px;
margin-left: -200px;
background-color: white;
border: 2px solid #111;
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
border-radius: 3px;
text-align: center;
z-index: 21;
}
.wpdt-c div.dt-button-info h2 {
padding: 0.5em;
margin: 0;
font-weight: normal;
border-bottom: 1px solid #ddd;
background-color: #f3f3f3;
}
.wpdt-c div.dt-button-info > div {
padding: 1em;
}
.wpdt-c div.wdtDuplicateTableName {
margin: 30px 0;
}
.wpdt-c div.manual_duplicate {
margin: 20px 0;
}
.wpdt-c .manual_duplicate>.dashicons-info {
cursor: pointer;
}
.wpdt-c .duplicate_explain {
border: 1px solid #cccccc;
border-radius: 3px;
padding: 0px 10px;
margin-top: 20px;
text-align: justify;
}
.wpdt-c #wdt-range-picker checkbox {
display: inline-block;
}
.wpdt-c #wdt-range-picker .checkbox {
margin-bottom: 25px;
}
.wpdt-c #wdt-range-picker .pick-row .checkbox {
margin: 0;
}
.wpdt-c div.wpdt-tab {
background-color: #fff;
}
.wpdt-c .wdt-datatables-admin-wrap .tab-nav li {
margin-bottom: 0;
}
.wpdt-c .wdt-datatables-admin-wrap .card {
max-width: 100%;
padding: 0;
margin-top: 0;
border: 1px solid #d7d7d7;
}
.wpdt-c #wpdt-inline-logo {
width: 60px;
height: 50px;
float: left;
padding-right: 10px;
margin-top: -5px;
}
.wpdt-c .wdt-datatables-admin-wrap .tab-nav li a:active,
.wpdt-c .wdt-datatables-admin-wrap .tab-nav li a:focus,
.wpdt-c .wdt-datatables-admin-wrap .tab-nav li a:hover {
box-shadow: none !important;
}
.wpdt-c .wdt-datatables-admin-wrap .bootstrap-select.btn-group .dropdown-menu li a {
box-shadow: none !important;
text-transform: none !important;;
}
.wpdt-c .wdt-datatables-admin-wrap .bootstrap-select > .btn-default {
text-transform: none;
}
.wpdt-c .wdt-datatables-admin-wrap table th {
-o-transition: none !important;
-ms-transition: none !important;
-moz-transition: none !important;
-webkit-transition: none !important;
transition: none !important;
}
.wpdt-c .wdt-datatables-admin-wrap .bootstrap-tagsinput {
border-left: 0;
border-right: 0;
border-top: 0;
border-bottom: 1px solid #ddd;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
padding: 0;
box-shadow: none;
width: 100%;
}
.wpdt-c .wdt-datatables-admin-wrap div.toggle-switch {
width: 100%;
}
.wpdt-c .wdt-datatables-admin-wrap div.toggle-switch .ts-helper {
float: right;
}
.wpdt-c .wdt-preload-layer {
position: absolute;
height: 100%;
width: 100%;
background-color: rgba(255,255,255,0.7);
text-align: center;
z-index: 100;
}
.wpdt-c .wdt-preload-layer div.preloader {
top: 50%;
}
.wpdt-c .wpcolorpicker {
width: 100%;
}
.wpdt-c .wpcolorpicker-icon.input-group-addon {
position: absolute;
right: 10px;
top: 0;
z-index: 4;
height: 25px;
width: 25px;
padding: 0;
}
.wpdt-c .colorpicker-element .wpcolorpicker-icon.add-on>i,
.wpdt-c .colorpicker-element .wpcolorpicker-icon.input-group-addon>i {
height: 25px;
width: 25px;
}
.wpdt-c .colorpicker.colorpicker-visible {
top: 32px;
left: inherit;
padding: 4px;
min-width: 146px;
margin: 7px 0 0 -7px;
height: auto;
width: auto;
background: #fff;
overflow: inherit;
}
.wpdt-c span.wpcolorpicker-icon>i {
border: 1px solid #ddd;
}
.wpdt-c .btn.btn-default.wdt-documentation,
.wpdt-c .btn.btn-default.wdt-documentation:hover,
.wpdt-c .btn.btn-default.wdt-documentation:focus {
border: 1px solid #d7d7d7;
}
.wpdt-c .wdt-datatables-admin-wrap .card .card-header.wdt-admin-card-header {
padding: 25px 20px;
}
.wpdt-c .wdt-datatables-admin-wrap .card .card-header.wdt-admin-card-header .actions {
right: 27px;
top: 25px;
}
.wpdt-c .wdt-datatables-admin-wrap .btn:disabled {
color: #777;
background-color: #ededed;
}
.wpdt-c .wdt-datatables-admin-wrap .btn:hover:disabled {
color: #777;
background-color: #ededed;
}
.wpdt-c .wdt-datatables-admin-wrap .alert .wdt-alert-title:hover,
.wpdt-c .wdt-datatables-admin-wrap .alert .wdt-alert-subtitle:hover {
cursor: text;
}
.wdt-datatables-admin-wrap .alert .wdt-alert-subtitle {
color: #ebebeb;
}
.wpdt-c button.wdt-backend-close {
background-color: #d7d7d7 !important;
}
.wpdt-c button.wdt-backend-close:hover {
background-color: #F44336 !important;
}
.wpdt-c button.wdt-collapse-table-settings {
background-color: #6C7A89 !important;
}
.wpdt-c .wdt-datatables-admin-wrap .card .card-header.wdt-admin-card-header {
border-bottom: 1px solid #ebebeb;
}
.wpdt-c h4 i.zmdi-help-outline {
margin-left: 3px;
cursor: pointer;
}
.wpdt-c #adminmenuback {
z-index: 100;
}
\ No newline at end of file
/* Common elements */
.wdt-datatables-admin-wrap .card.wdt-browse-table .btn {
box-shadow: none;
}
/* Card header */
.wdt-datatables-admin-wrap .card.wdt-browse-table .card-header .actions .wdt-add-new {
font-size: 14px;
font-weight: 400;
padding: 12px 16px;
}
/* Browse table */
.wdt-datatables-admin-wrap .card.wdt-browse-table .widefat td, .widefat th {
font-size: 14px;
font-weight: 400;
color: #222;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table {
border: 0;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table .no-items td {
padding: 20px 0 20px 30px;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table a:focus {
box-shadow: none;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table th {
border-right: 0 !important
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table th#id {
width: 5%;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table thead tr th a span {
color: #2196f3;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table thead th,
.wdt-datatables-admin-wrap .card.wdt-browse-table table thead td {
border-top: 1px solid #ebebeb;
border-bottom: 1px solid #ebebeb;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table tfoot th,
.wdt-datatables-admin-wrap .card.wdt-browse-table table tfoot td {
border-top: 1px solid #ebebeb;
border-bottom: 1px solid #ebebeb;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table tbody tr {
height: 55px;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table tbody > :nth-child(odd) {
background-color: #fafafa;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table tbody tr.checked-row {
background-color: #f1f4f5;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table td.check-column {
width: 55px;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table .check-column .checkbox {
margin: 0 0 0 27px;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table .check-column .checkbox input[type="checkbox"] {
position: relative;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table td.table_type,
.wdt-datatables-admin-wrap .card.wdt-browse-table table td.shortcode,
.wdt-datatables-admin-wrap .card.wdt-browse-table table td.engine,
.wdt-datatables-admin-wrap .card.wdt-browse-table table td.type {
padding: 18px 10px;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table td.table_type span.wpdt-type-column,
.wdt-datatables-admin-wrap .card.wdt-browse-table table td.shortcode span.wdt-shortcode,
.wdt-datatables-admin-wrap .card.wdt-browse-table table td.engine span.wdt-render-engine,
.wdt-datatables-admin-wrap .card.wdt-browse-table table td.type span.wdt-chart-type {
color: #ffffff;
padding: 5px 10px;
border-radius: 2px;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table .column-functions .btn {
margin: 3px 0 0 0;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table .column-functions a {
line-height: 40px;
font-size: 20px;
margin-right: 7px;
color: #cdcdcd
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table .column-functions a.wdt-duplicate-table:before,
.wdt-datatables-admin-wrap .card.wdt-browse-table table .column-functions a.wdt-duplicate-chart:before {
font-family: WPDataTablesIcons;
content:"\e900";
font-size: 16px;
vertical-align: top;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table .column-functions a.wdt-manual-excel-edit:before {
font-family: WPDataTablesIcons;
content:"\e901";
font-size: 16px;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table tr:hover > .column-functions a {
opacity: 0.7;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table tr > .column-functions:hover a {
opacity: 1;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table tr > .column-functions a:hover {
cursor: pointer;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table tr:hover > .column-functions a.wdt-duplicate-table,
.wdt-datatables-admin-wrap .card.wdt-browse-table table tr:hover > .column-functions a.wdt-duplicate-chart,
.wdt-datatables-admin-wrap .card.wdt-browse-table table tr:hover > .column-functions a.wdt-manual-edit,
.wdt-datatables-admin-wrap .card.wdt-browse-table table tr:hover > .column-functions a.wdt-manual-excel-edit {
color: #2196f3;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table tr:hover > .column-functions a.wdt-configure {
color: #4CAF50;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table tr:hover > .column-functions a.wdt-submit-delete {
color: #F44336;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table table tr .column-functions a i {
font-size: 20px;
}
/* Search box and bulk actions list */
.wdt-datatables-admin-wrap .card.wdt-browse-table .wpdt-search-box,
.wdt-datatables-admin-wrap .card.wdt-browse-table .wpdt-bulk-select {
padding-right: 45px;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .wpdt-search-box input {
margin-top: 5px;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .wpdt-bulk-select span.filter-option {
font-size: 14px;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .search-box-container .btn-icon,
.wdt-datatables-admin-wrap .card.wdt-browse-table .bulk-action-container .btn-icon {
position: absolute;
top: 5px;
right: 0;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .bulk-action-button {
position: absolute;
top: 13px;
right: -4px;
color: #cdcdcd;
border: 0;
background-color: inherit;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .bulk-action-button:hover,
.wdt-datatables-admin-wrap .card.wdt-browse-table .bulk-action-button:active {
color: #2196f3;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table #search-submit {
position: absolute;
top: 9px;
right: 25px;
border: 0;
background-color: inherit;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table #search-submit i {
font-size: 25px;
color: #cdcdcd;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table #search-submit:hover i,
.wdt-datatables-admin-wrap .card.wdt-browse-table #search-submit:active i {
color: #2196f3 !important;
}
/* Duplicate table dialog */
#wdt-duplicate-table-modal .duplicate-explain-trigger {
cursor: pointer;
font-size: 17px;
vertical-align: middle;
}
#wdt-duplicate-table-modal .duplicate-table-label {
line-height: 40px;
margin: 0;
}
/* Browse page pagination */
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination {
margin: 0;
display: inline-flex;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li {
margin: 0;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.disabled {
opacity: 1;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li > a {
background-color: #ffffff;
border-radius: 0;
border: 1px solid #ebebeb;
color: #2196f3;
height: 30px;
line-height: 30px;
width: 30px;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.active > a {
background-color: #ededed;
color: #777777;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.disabled > a {
color: #c7c7c7;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li > a:focus {
box-shadow: none;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li:first-child > a {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li:last-child > a {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li > a > .zmdi,
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.ellipses-dots {
font-size: 17px;
width: 30px;
line-height: 30px;
height: 30px;
text-align: center;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.ellipses-dots {
color: #777777;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li a:before {
font-size: 10px;
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.previous.first a:before {
font-family: WPDataTablesIcons;
content:"\e004";
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.previous a:before {
font-family: WPDataTablesIcons;
content:"\e002";
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.next.last a:before {
font-family: WPDataTablesIcons;
content:"\e003";
}
.wdt-datatables-admin-wrap .card.wdt-browse-table .pagination > li.next a:before {
font-family: WPDataTablesIcons;
content:"\e001";
}
.wpdt-c .wdt-chart-wizard .wdt-chart-column-picker-container .existing-columns,
.wpdt-c .wdt-chart-wizard .wdt-chart-column-picker-container .chosen_columns {
border-radius: 4px;
height: 308px;
}
.wpdt-c .wdt-chart-wizard .wdt-chart-column-picker-container .existing-columns .card-header,
.wpdt-c .wdt-chart-wizard .wdt-chart-column-picker-container .chosen_columns .card-header {
border-radius: 4px;
}
.wpdt-c div.chosen_columns .alert {
margin: 3px;
}
.wpdt-c .wdt-chart-wizard .deselect-all-columns,
.wpdt-c .wdt-chart-wizard .select-all-columns {
position: absolute;
right: 30px;
top: 28px;
width: 100px;
}
.wpdt-c .steps .chart-wizard-step.step4{
min-width: 1030px;
}
.wpdt-c .steps .chart-wizard-step.step4 fieldset{
width: 50%;
}
.wpdt-c .steps .chart-wizard-step.step5 label{
display: block;
text-align: center;
}
.wpdt-c .chart-wizard-breadcrumb {
margin: 0;
padding-bottom: 0;
}
.wpdt-c .chart-wizard-breadcrumb li {
font-weight: 300;
color: #999;
}
.wpdt-c .chart-wizard-breadcrumb > .active {
font-weight: 500;
}
.wpdt-c div.wdt-chart-column-picker-container div.picker_column {
padding-top: 90px;
}
.wpdt-c div.wdt-chart-column-picker-container div.picker_column button {
width: 30px;
}
.wpdt-c div.wdt-chart-column-picker-container div.picker_column button {
display: block;
margin: 0 auto 5px auto;
}
.wpdt-c div.wdt-chart-column-picker-container div.chart-column-block {
border: 1px solid #d7d7d7;
border-radius: 4px;
background-color: #fbfbfb;
text-transform: inherit;
}
.wpdt-c div.wdt-chart-column-picker-container div.chart-column-block:hover {
border: 1px solid #2196f3;
transition: .5s ease;
cursor: pointer;
background-color: rgba(33, 150, 243, 0.3);
}
.wpdt-c div.wdt-chart-column-picker-container div.chart-column-block.selected {
border: 1px solid #2196f3;
border-radius: 4px;
transition: .5s ease;
color: #fff;
background-color: #2196f3;
}
.wpdt-c div.wdt-chart-column-picker-container div.wdt-chart-wizart-existing-columns-container,
.wpdt-c div.wdt-chart-column-picker-container div.wdt-chart-wizard-chosen-columns-container {
height: 220px;
overflow-y: auto;
}
.wpdt-c .wpDataTables #series-settings-container div.chart-series-block {
margin: 3px;
position: relative;
overflow: hidden;
}
.wpdt-c .wpDataTables #series-settings-container div.chart-series-block .chart-series-label {
margin: 3px;
float: left;
}
.wpdt-c .wpDataTables #series-settings-container div.chart-series-block .chart-series-color {
margin: 3px;
float: left;
}
.wpdt-c #wdt-chart-shortcode-container {
display: block;
margin: 0 auto;
}
.wpdt-c #wdt-chart-wizard-previous-step:before {
font-family: WPDataTablesIcons;
content: "\e002";
font-size: 10px;
}
.wpdt-c #wdt-chart-wizard-next-step:after {
font-family: WPDataTablesIcons;
content: "\e001";
font-size: 10px;
}
.wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card {
display: inline-block;
min-width: inherit;
width: 100%;
box-shadow: none;
border: none;
}
.wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card:hover {
cursor: pointer;
}
.wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card:hover .card-header {
border-color: #2196f3;
transition: .5s ease;
}
.wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card-header {
margin: 0 auto;
border: 1px solid #d7d7d7;
border-radius: 4px;
background-color: #fbfbfb;
}
.wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card-header img {
margin: 0 auto;
}
.wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card-body span {
color: #777;
}
.wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card-body h4 {
text-align: center;
}
.wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .wdt-chart-wizard-overlay {
border-radius: 4px;
transition: .5s ease;
width: 101%;
height: 101%;
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
background-color: #2196f3;
}
.wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card:hover .wdt-chart-wizard-overlay {
opacity: 0.2;
}
.wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card.selected .card-header {
border-color: #2196f3;
}
.wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card.selected .card-header .wdt-chart-wizard-overlay {
opacity: 0.7;
}
.wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card.not-selected .card-header {
opacity: 0.6;
}
.wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card.not-selected:hover .card-header {
opacity: 1;
}
.wpdt-c .wdt-chart-wizard .wdt-chart-wizard-chart-selecter-block .card.selected .card-header:after {
content: "\f26b";
color: #ffffff;
position: absolute;
top: 50%;
text-align: center;
right: 0;
width: 100%;
font-size: 80px;
font-family: 'Material-Design-Iconic-Font';
}
.wpdt-c .wdt-chart-wizard .charts-type.google-charts-type,
.wpdt-c .wdt-chart-wizard .charts-type.highcharts-charts-type,
.wpdt-c .wdt-chart-wizard .charts-type.chartjs-charts-type {
display: none;
}
.wpdt-c .wdt-chart-wizard #wdt-add-all-chart-columns:after {
font-family: WPDataTablesIcons;
content:"\e003";
font-size: 11px;
}
.wpdt-c .wdt-chart-wizard #wdt-add-chart-columns:after {
font-family: WPDataTablesIcons;
content:"\e001";
font-size: 11px;
}
.wpdt-c .wdt-chart-wizard #wdt-remove-chart-columns:after {
font-family: WPDataTablesIcons;
content:"\e002";
font-size: 11px;
}
.wpdt-c .wdt-chart-wizard #wdt-remove-all-chart-columns:after {
font-family: WPDataTablesIcons;
content:"\e004";
font-size: 11px;
}
.wpdt-c .wdt-chart-wizard #chart-container-tabs ul li a:after {
display: none;
}
.wpdt-c .range-picker-table tbody td.selected {
background-color: #F4F4F4;
}
.wpdt-c .wdt-chart-wizard #chart-container-tabs ul li.chart-container {
border-right: 2px solid #E5E5E5;
}
.wpdt-c .wdt-chart-wizard #chart-container-tabs ul li.chart-container.active {
border-right: 2px solid #2196F3;
transition: all;
transition-duration: 1000ms;
}
.gu-mirror.chart-column-block {
border: 1px solid #d7d7d7;
border-radius: 4px;
background-color: #fbfbfb;
text-transform: inherit;
height: 32px;
display: block;
font-weight: bold;
text-align: center;
padding: 6px 12px;
font-size: 13px;
}
\ No newline at end of file
.wpdt-c .wdt-datatables-admin-wrap .card.wdt-table-settings,
.wpdt-c .wdt-datatables-admin-wrap .card.column-settings {
max-width: 100%;
padding: 0;
margin-top: 0;
}
.wpdt-c .wdt-datatables-admin-wrap .card.wdt-table-settings .card-body {
padding-top: 10px;
}
.wpdt-c .wdt-datatables-admin-wrap .card.wdt-table-settings h2 span.wdt-table-name {
padding: 3px;
}
.wpdt-c .wdt-admin-card-header button#wdt-table-id {
margin-left: 30px;
}
.wpdt-c .wdt-datatables-admin-wrap .card.wdt-table-settings h2 span.wdt-table-name:hover {
border: 1px solid #ccc;
padding: 2px;
cursor: pointer;
}
.wpdt-c .wdt-datatables-admin-wrap div.wpDataTableContainer {
margin: 15px 0 30px 0;
}
.wpdt-c .wdt-datatables-admin-wrap div.wpDataTableContainer .tab-content {
padding: 20px 15px;
}
.wpdt-c .wdt-datatables-admin-wrap button.wdt-column-settings,
.wpdt-c .wdt-datatables-admin-wrap button.wdt-delete-formula-column {
width: 32px;
height: 32px;
padding: 0;
z-index: 8;
display: inline-block;
margin: 2px;
border: 1px solid #e7e7e7;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
-vendor-animation-duration: 1s;
-vendor-animation-delay: 1s;
}
.wpdt-c .wdt-datatables-admin-wrap button.wdt-column-settings:hover,
.wpdt-c .wdt-datatables-admin-wrap button.wdt-delete-formula-column:hover {
background-color: #ccc !important;
}
.wpdt-c .wdt-datatables-admin-wrap div.column-settings-overlay {
display: none;
background: rgba(0, 0, 0, 0.4);
height: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
position: fixed;
z-index: 9999;
-webkit-transition: opacity 400ms ease-in;
-moz-transition: opacity 400ms ease-in;
transition: opacity 400ms ease-in;
border-left: 1px solid #eee;
max-height: 100vh;
}
.wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel {
position: absolute;
right: 0;
bottom: 0;
top: 32px;
padding: 0;
background: #fff;
box-shadow: -3px 0 5px -1px rgba(105, 105, 105, 0.17);
width: 60%;
max-width: 60%;
margin: 0;
overflow-y: scroll;
overflow-x: hidden;
}
.wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel div.card-body.card-padding {
padding: 5px 10px 5px 10px;
}
.wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel input[type="text"] {
width: 100%;
}
.wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel div.input-group {
width: 100%;
}
.wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel div.form-group {
height: 30px;
}
.wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel .bootstrap-tagsinput input[type="text"] {
width: 70px;
}
.wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel button.btn-xs {
font-size: 10px !important;
line-height: 1em !important;
margin: 0 !important;
height: auto !important;
}
.wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel button.btn-xs.wdt-copy-shortcode {
text-transform: none;
}
.wpdt-c .wdt-datatables-admin-wrap div.wdt-column-block, div.wdt-column-block.gu-mirror {
background-color: #f7f7f7;
box-shadow: 0 1px 1px rgba(0,0,0,.1);
border-radius: 2px;
margin-bottom: 5px;
padding: 5px;
-o-transition: .5s;
-ms-transition: .5s;
-moz-transition: .5s;
-webkit-transition: .5s;
transition: .5s;
}
.wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel .wdt-conditional-formatting-rule .wdt-delete-conditional-formatting-rule {
padding: 0px;
line-height: inherit;
}
.wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel .wdt-conditional-formatting-rule .form-group {
width: 100%;
display: inline-block;
}
.wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel .colorpicker.colorpicker-visible {
top: 25px;
right: 18px;
}
.wpdt-c .wdt-datatables-admin-wrap div.column-settings-panel .wdt-conditional-formatting-rule .colorpicker.colorpicker-visible {
right: 32px;
}
div.wdt-column-block.gu-mirror {
cursor: grabbing;
cursor: -moz-grabbing;
cursor: -webkit-grabbing;
}
div.wdt-column-block.gu-mirror .fg-line {
margin-left: 10px;
width: 200px;
display: inline-block;
}
div.wdt-column-block.gu-mirror .fg-line input.wdt-column-display-header-edit {
padding: 0;
height: 20px;
font-size: 12px;
border-bottom: 1px solid #e0e0e0;
border-left: 0;
border-right: 0;
border-top: 0;
background-color: transparent;
box-shadow: none;
}
div.wdt-column-block.gu-mirror .fg-line i {
position: absolute;
left: 178px;
top: 3px;
font-size: 16px;
color: #c7c7c7;
}
div.wdt-column-block.gu-mirror .wdt-column-move-arrows {
padding: 5px 6px 6px 2px;
margin-top: -4px;
border-left: 1px solid #c7c7c7;
font-size: 16px;
margin-left: 7px;
float: right;
}
div.wdt-column-block.gu-mirror span {
float: right;
margin-left: 10px;
}
.wpdt-c .wdt-datatables-admin-wrap div.wdt-column-block:hover {
background-color: #fefefe;
cursor: pointer;
}
.wpdt-c .wdt-datatables-admin-wrap div.wdt-column-block i.zmdi-apps {
color: #aaa;
}
.wpdt-c .wdt-datatables-admin-wrap div.wdt-column-block i.column-control {
color: #444;
margin: 3px;
}
.wpdt-c .wdt-datatables-admin-wrap div.wdt-column-block i.column-control.inactive {
color: #999;
}
.wpdt-c .wdt-datatables-admin-wrap div.wdt-column-block i.column-control:hover {
color: #000;
}
.wpdt-c .wdt-datatables-admin-wrap div.wdt-conditional-formatting-rule .form-group {
margin-right: 0;
}
/* Column list modal */
.wpdt-c #wdt-columns-list-modal .modal-body .wdt-columns-container .wdt-column-block input {
height: 20px;
padding-right: 25px;
}
/* Formula editor modal */
.wpdt-c #wdt-formula-editor-modal .modal-body p {
margin-bottom: 10px;
}
.wpdt-c #wdt-formula-editor-modal .wdt-formula-operators .btn {
text-transform: none;
margin: 3px;
}
.wpdt-c #wdt-formula-editor-modal .wdt-formula-operators {
max-height: 200px;
}
.wpdt-c #wdt-formula-editor-modal .formula-columns-container {
height: 150px;
overflow-x: hidden;
}
.wpdt-c #wdt-formula-editor-modal .formula_col textarea {
height: 150px;
}
.wpdt-c #wdt-formula-editor-modal div.wdt-formula-result-preview {
margin: 15px 0;
}
.wpdt-c #column-data-settings > div.wdt-possible-values-options-block > div.wdt-manual-list-enter-block > div {
height: inherit;
max-height: 80px;
overflow-y: auto;
}
.wpdt-c .wdt-datatables-admin-wrap .wdt-table-name,
.wpdt-c #wdt-columns-list-modal .modal-body .wdt-columns-container .wdt-column-block .fg-line,
.wdt-column-block.gu-mirror .fg-line {
width: inherit;
}
.wpdt-c .wdt-datatables-admin-wrap .wdt-table-name #wdt-table-title-edit {
background-color: #f7f7f7;
margin-top: -9px;
padding-top: 6px;
padding-right: 18px;
}
.wpdt-c .wdt-datatables-admin-wrap .wdt-table-name i,
.wpdt-c #wdt-columns-list-modal .modal-body .wdt-columns-container .wdt-column-block .fg-line i {
position: absolute;
right: 0;
top: 0;
font-size: 16px;
color: #c7c7c7;
}
.wpdt-c .wdt-datatables-admin-wrap .wdt-admin-card-header h2 #wdt-table-id {
text-transform: none;
top: 32px;
position: absolute;
left: 290px;
}
.wpdt-c #wdt-table-title-edit:focus ~ i.zmdi.zmdi-edit,
.wpdt-c #wdt-table-title-edit:hover ~ i.zmdi.zmdi-edit,
.wpdt-c #wdt-columns-list-modal .modal-body .wdt-columns-container .wdt-column-block .wdt-column-display-header-edit:focus ~ i.zmdi.zmdi-edit,
.wpdt-c #wdt-columns-list-modal .modal-body .wdt-columns-container .wdt-column-block .wdt-column-display-header-edit:hover ~ i.zmdi.zmdi-edit {
color: #2196f3;
}
.wpdt-c #wdt-columns-list-modal .modal-body .wdt-columns-container .wdt-column-block .wdt-column-move-arrows {
padding: 3px 6px 4px 8px;
margin-top: -4px;
border-left: 1px solid #c7c7c7;
font-size: 16px;
cursor: grab;
cursor: -moz-grab;
cursor: -webkit-grab;
}
.wpdt-c .wdt-edit-buttons span {
color: #9E9E9E;
font-size: 14px;
letter-spacing: 0.04em;
margin-bottom: 3px;
}
.wpdt-c .wdt-edit-buttons span a {
color: #2196f3;
text-decoration: underline;
}
.wpdt-c .column-settings .wdt-remove-column:after {
font-family: WPDataTablesIcons;
content:"\e81D";
}
.wpdt-c .column-settings .wdt-add-column:after {
font-family: WPDataTablesIcons;
content:"\e81e";
}
.wpdt-c .column-settings .card-header .wdt-table-action-buttons {
padding: 0;
}
.wpdt-c .column-settings .card-header button {
height: 32px;
margin-left: 1px;
border-radius: 0;
opacity: 0.8;
}
.wpdt-c .column-settings .card-header button:hover {
opacity: 1;
}
.wpdt-c .column-settings .card-header button:first-of-type {
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
}
.wpdt-c .column-settings .card-header button:last-of-type {
border-top-left-radius: 2px;
border-bottom-left-radius: 2px;
}
.wpdt-c .column-settings .card-header button.wdt-add-column,
.wpdt-c .column-settings .card-header button.wdt-remove-column,
.wpdt-c .column-settings .card-header button#wdt-open-columns-list {
width: 38px;
}
.wpdt-c .column-settings .card-header button#wdt-open-columns-list i:before {
font-size: 20px;
}
.wpdt-c .column-settings .card-header button.wdt-add-column:after,
.wpdt-c .column-settings .card-header button.wdt-remove-column:after {
font-size: 15px;
}
.wpdt-c .wdt-table-settings .input-path-block .fg-line {
width: 75%;
}
.wpdt-c .wdt-table-settings .wdt-pf-cascade-filtering-logic-block .form-group {
margin-bottom: 0;
}
.wpdt-c .wdt-datatables-admin-wrap #color-and-font-settings a {
box-shadow: none !important;
-webkit-box-shadow: none !important;
}
.wpdt-c .wdt-datatables-admin-wrap tr:first-child > td{
border-top: 0px;
}
.wpdt-c .wdt-datatables-admin-wrap .tab-content #info table .zmdi.zmdi-check {
font-size: 22px;
font-weight: 600;
color: #4CAF50;
}
.wpdt-c .wdt-datatables-admin-wrap .tab-content #info table .zmdi.zmdi-close {
font-size: 22px;
font-weight: 600;
color: #F44336;
}
.wpdt-c .wdt-datatables-admin-wrap .tab-content #info table .alert {
text-align: center;
}
/* Theme fixes */
.wpdt-c .panel-title {
float: none;
}
\ No newline at end of file
/*!
* Bootstrap Colorpicker v2.5.1
* https://itsjavi.com/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 {
width: 100px;
height: 100px;
background-image: url("../../../img/bootstrap-colorpicker/saturation.png");
cursor: crosshair;
float: left;
}
.colorpicker-saturation i {
display: block;
height: 5px;
width: 5px;
border: 1px solid #000;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
position: absolute;
top: 0;
left: 0;
margin: -4px 0 0 -4px;
}
.colorpicker-saturation i b {
display: block;
height: 5px;
width: 5px;
border: 1px solid #fff;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.colorpicker-hue,
.colorpicker-alpha {
width: 15px;
height: 100px;
float: left;
cursor: row-resize;
margin-left: 4px;
margin-bottom: 4px;
}
.colorpicker-hue i,
.colorpicker-alpha i {
display: block;
height: 1px;
background: #000;
border-top: 1px solid #fff;
position: absolute;
top: 0;
left: 0;
width: 100%;
margin-top: -1px;
}
.colorpicker-hue {
background-image: url("../../../img/bootstrap-colorpicker/hue.png");
}
.colorpicker-alpha {
background-image: url("../../../img/bootstrap-colorpicker/alpha.png");
display: none;
}
.colorpicker-saturation,
.colorpicker-hue,
.colorpicker-alpha {
background-size: contain;
}
.colorpicker {
padding: 4px;
min-width: 130px;
margin-top: 1px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
z-index: 2500;
}
.colorpicker:before,
.colorpicker:after {
display: table;
content: "";
line-height: 0;
}
.colorpicker:after {
clear: both;
}
.colorpicker:before {
content: '';
display: inline-block;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 7px solid #ccc;
border-bottom-color: rgba(0, 0, 0, 0.2);
position: absolute;
top: -7px;
left: 6px;
}
.colorpicker:after {
content: '';
display: inline-block;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid #ffffff;
position: absolute;
top: -6px;
left: 7px;
}
.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("../../../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 {
cursor: pointer;
float: left;
height: 10px;
width: 10px;
}
.colorpicker-selectors i + i {
margin-left: 3px;
}
.colorpicker-element .input-group-addon i,
.colorpicker-element .add-on i {
display: inline-block;
cursor: pointer;
height: 16px;
vertical-align: text-top;
width: 16px;
}
.colorpicker.colorpicker-inline {
position: relative;
display: inline-block;
float: none;
z-index: auto;
}
.colorpicker.colorpicker-horizontal {
width: 110px;
min-width: 110px;
height: auto;
}
.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 {
width: 100px;
height: 15px;
float: left;
cursor: col-resize;
margin-left: 0px;
margin-bottom: 4px;
}
.colorpicker.colorpicker-horizontal .colorpicker-hue i,
.colorpicker.colorpicker-horizontal .colorpicker-alpha i {
display: block;
height: 15px;
background: #ffffff;
position: absolute;
top: 0;
left: 0;
width: 1px;
border: none;
margin-top: 0px;
}
.colorpicker.colorpicker-horizontal .colorpicker-hue {
background-image: url("../../../img/bootstrap-colorpicker/hue-horizontal.png");
}
.colorpicker.colorpicker-horizontal .colorpicker-alpha {
background-image: url("../../../img/bootstrap-colorpicker/alpha-horizontal.png");
}
.colorpicker-right:before {
left: auto;
right: 6px;
}
.colorpicker-right:after {
left: auto;
right: 7px;
}
.colorpicker-no-arrow:before {
border-right: 0;
border-left: 0;
}
.colorpicker-no-arrow:after {
border-right: 0;
border-left: 0;
}
.colorpicker.colorpicker-visible,
.colorpicker-alpha.colorpicker-visible,
.colorpicker-saturation.colorpicker-visible,
.colorpicker-hue.colorpicker-visible,
.colorpicker-selectors.colorpicker-visible {
display: block;
}
.colorpicker.colorpicker-hidden,
.colorpicker-alpha.colorpicker-hidden,
.colorpicker-saturation.colorpicker-hidden,
.colorpicker-hue.colorpicker-hidden,
.colorpicker-selectors.colorpicker-hidden {
display: none;
}
.colorpicker-inline.colorpicker-visible {
display: inline-block;
}
\ No newline at end of file
/*!
* Bootstrap Colorpicker v2.5.1
* https://itsjavi.com/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{width:100px;height:100px;background-image:url(../../../img/bootstrap-colorpicker/saturation.png);cursor:crosshair;float:left}.colorpicker-saturation i{display:block;height:5px;width:5px;border:1px solid #000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;position:absolute;top:0;left:0;margin:-4px 0 0 -4px}.colorpicker-saturation i b{display:block;height:5px;width:5px;border:1px solid #fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.colorpicker-alpha,.colorpicker-hue{width:15px;height:100px;float:left;cursor:row-resize;margin-left:4px;margin-bottom:4px}.colorpicker-alpha i,.colorpicker-hue i{display:block;height:1px;background:#000;border-top:1px solid #fff;position:absolute;top:0;left:0;width:100%;margin-top:-1px}.colorpicker-hue{background-image:url(../../../img/bootstrap-colorpicker/hue.png)}.colorpicker-alpha{background-image:url(../../../img/bootstrap-colorpicker/alpha.png);display:none}.colorpicker-alpha,.colorpicker-hue,.colorpicker-saturation{background-size:contain}.colorpicker{padding:4px;min-width:130px;margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;z-index:2500}.colorpicker:after,.colorpicker:before{display:table;content:"";line-height:0}.colorpicker:after{clear:both}.colorpicker:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);position:absolute;top:-7px;left:6px}.colorpicker:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:7px}.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(../../../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{cursor:pointer;float:left;height:10px;width:10px}.colorpicker-selectors i+i{margin-left:3px}.colorpicker-element .add-on i,.colorpicker-element .input-group-addon i{display:inline-block;cursor:pointer;height:16px;vertical-align:text-top;width:16px}.colorpicker.colorpicker-inline{position:relative;display:inline-block;float:none;z-index:auto}.colorpicker.colorpicker-horizontal{width:110px;min-width:110px;height:auto}.colorpicker.colorpicker-horizontal .colorpicker-saturation{margin-bottom:4px}.colorpicker.colorpicker-horizontal .colorpicker-color{width:100px}.colorpicker.colorpicker-horizontal .colorpicker-alpha,.colorpicker.colorpicker-horizontal .colorpicker-hue{width:100px;height:15px;float:left;cursor:col-resize;margin-left:0;margin-bottom:4px}.colorpicker.colorpicker-horizontal .colorpicker-alpha i,.colorpicker.colorpicker-horizontal .colorpicker-hue i{display:block;height:15px;background:#fff;position:absolute;top:0;left:0;width:1px;border:none;margin-top:0}.colorpicker.colorpicker-horizontal .colorpicker-hue{background-image:url(../../../img/bootstrap-colorpicker/hue-horizontal.png)}.colorpicker.colorpicker-horizontal .colorpicker-alpha{background-image:url(../../../img/bootstrap-colorpicker/alpha-horizontal.png)}.colorpicker-right:before{left:auto;right:6px}.colorpicker-right:after{left:auto;right:7px}.colorpicker-no-arrow:before{border-right:0;border-left:0}.colorpicker-no-arrow:after{border-right:0;border-left:0}.colorpicker-alpha.colorpicker-visible,.colorpicker-hue.colorpicker-visible,.colorpicker-saturation.colorpicker-visible,.colorpicker-selectors.colorpicker-visible,.colorpicker.colorpicker-visible{display:block}.colorpicker-alpha.colorpicker-hidden,.colorpicker-hue.colorpicker-hidden,.colorpicker-saturation.colorpicker-hidden,.colorpicker-selectors.colorpicker-hidden,.colorpicker.colorpicker-hidden{display:none}.colorpicker-inline.colorpicker-visible{display:inline-block}
/*!
* Datetimepicker for Bootstrap 3
* version : 4.17.47
* https://github.com/Eonasdan/bootstrap-datetimepicker/
*/
.bootstrap-datetimepicker-widget {
list-style: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
display: block;
margin: 2px 0;
padding: 4px;
width: 19em;
}
@media (min-width: 768px) {
.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
width: 38em;
}
}
@media (min-width: 992px) {
.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
width: 38em;
}
}
@media (min-width: 1200px) {
.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
width: 38em;
}
}
.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
content: '';
display: inline-block;
position: absolute;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 7px solid #ccc;
border-bottom-color: rgba(0, 0, 0, 0.2);
top: -7px;
left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid white;
top: -6px;
left: 8px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-top: 7px solid #ccc;
border-top-color: rgba(0, 0, 0, 0.2);
bottom: -7px;
left: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 6px solid white;
bottom: -6px;
left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
left: auto;
right: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
left: auto;
right: 7px;
}
.bootstrap-datetimepicker-widget .list-unstyled {
margin: 0;
}
.bootstrap-datetimepicker-widget a[data-action] {
padding: 6px 0;
}
.bootstrap-datetimepicker-widget a[data-action]:active {
box-shadow: none;
}
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
width: 54px;
font-weight: bold;
font-size: 1.2em;
margin: 0;
}
.bootstrap-datetimepicker-widget button[data-action] {
padding: 6px;
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Increment Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Increment Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Decrement Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Decrement Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Show Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Show Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Toggle AM/PM";
}
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Clear the picker";
}
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Set the date to today";
}
.bootstrap-datetimepicker-widget .picker-switch {
text-align: center;
}
.bootstrap-datetimepicker-widget .picker-switch::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Toggle Date and Time Screens";
}
.bootstrap-datetimepicker-widget .picker-switch td {
padding: 0;
margin: 0;
height: auto;
width: auto;
line-height: inherit;
}
.bootstrap-datetimepicker-widget .picker-switch td span {
line-height: 2.5;
height: 2.5em;
width: 100%;
}
.bootstrap-datetimepicker-widget table {
width: 100%;
margin: 0;
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
text-align: center;
border-radius: 4px;
}
.bootstrap-datetimepicker-widget table th {
height: 20px;
line-height: 20px;
width: 20px;
}
.bootstrap-datetimepicker-widget table th.picker-switch {
width: 145px;
}
.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
background: none;
color: #777777;
cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table th.prev::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Previous Month";
}
.bootstrap-datetimepicker-widget table th.next::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Next Month";
}
.bootstrap-datetimepicker-widget table thead tr:first-child th {
cursor: pointer;
}
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
background: #eeeeee;
}
.bootstrap-datetimepicker-widget table td {
height: 54px;
line-height: 54px;
width: 54px;
}
.bootstrap-datetimepicker-widget table td.cw {
font-size: .8em;
height: 20px;
line-height: 20px;
color: #777777;
}
.bootstrap-datetimepicker-widget table td.day {
height: 20px;
line-height: 20px;
width: 20px;
}
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
background: #eeeeee;
cursor: pointer;
}
.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
color: #777777;
}
.bootstrap-datetimepicker-widget table td.today {
position: relative;
}
.bootstrap-datetimepicker-widget table td.today:before {
content: '';
display: inline-block;
border: solid transparent;
border-width: 0 0 7px 7px;
border-bottom-color: #337ab7;
border-top-color: rgba(0, 0, 0, 0.2);
position: absolute;
bottom: 4px;
right: 4px;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
background-color: #337ab7;
color: #fff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td.active.today:before {
border-bottom-color: #fff;
}
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
background: none;
color: #777777;
cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table td span {
display: inline-block;
width: 54px;
height: 54px;
line-height: 54px;
margin: 2px 1.5px;
cursor: pointer;
border-radius: 4px;
}
.bootstrap-datetimepicker-widget table td span:hover {
background: #eeeeee;
}
.bootstrap-datetimepicker-widget table td span.active {
background-color: #337ab7;
color: #fff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td span.old {
color: #777777;
}
.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
background: none;
color: #777777;
cursor: not-allowed;
}
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
height: 27px;
line-height: 27px;
}
.bootstrap-datetimepicker-widget.wider {
width: 21em;
}
.bootstrap-datetimepicker-widget .datepicker-decades .decade {
line-height: 1.8em !important;
}
.input-group.date .input-group-addon {
cursor: pointer;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
/*!
* Datetimepicker for Bootstrap 3
* version : 4.17.47
* https://github.com/Eonasdan/bootstrap-datetimepicker/
*/.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{display:block;margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:before,.bootstrap-datetimepicker-widget.dropdown-menu:after{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid white;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid white;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:bold;font-size:1.2em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action="today"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:4px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:#eee}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#777}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:#eee;cursor:pointer}.bootstrap-datetimepicker-widget table td.old,.bootstrap-datetimepicker-widget table td.new{color:#777}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#337ab7;border-top-color:rgba(0,0,0,0.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:4px}.bootstrap-datetimepicker-widget table td span:hover{background:#eee}.bootstrap-datetimepicker-widget table td span.active{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td span.old{color:#777}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em !important}.input-group.date .input-group-addon{cursor:pointer}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}
\ No newline at end of file
.wpdt-c .wpDataTablesWrapper table.wpDataTable .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table td {
background: transparent;
-o-transition: 0s;
-ms-transition: 0s;
-moz-transition: 0s;
-webkit-transition: 0s;
transition: 0s;
}
.wpdt-c .wpDataTables.wpDataTablesWrapper {
position: relative !important;
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget {
padding: 0 !important;
margin: 0 !important;
width: auto !important;
bottom: auto !important;
top: auto !important;
min-width: 216px;
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget:after,
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget:before {
display: none !important;
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table {
border: 0 !important;
font-size: inherit;
line-height: inherit;
table-layout: auto;
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table td {
text-shadow: none;
white-space: normal;
overflow: visible;
border: 0;
font-weight: normal;
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table td span {
margin: 0;
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table td span:hover {
background: transparent;
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon {
font-family: 'Material-Design-Iconic-Font';
font-size: 18px;
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-chevron-left:before {
content: "\f2ff";
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-chevron-right:before {
content: "\f301";
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-time:before {
content: "\f337";
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-trash:before {
content: "\f330";
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-calendar:before {
content: "\f32e";
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-chevron-up:before {
content: "\f1e5";
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-chevron-down:before {
content: "\f1e4";
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget a[data-action] {
color: #2196F3;
border-bottom: 0;
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .datepicker-decades .decade {
line-height: 1.8em !important;
background: none;
color: inherit;
}
.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .datepicker-decades span {
height: auto;
}
.wpdt-c .wdt-datetimepicker-modal .timepicker-picker .table-condensed > tbody > tr > td {
padding: 10px;
background: transparent;
}
.wpdt-c .wdt-datetimepicker-modal .timepicker-picker .btn {
box-shadow: none !important;
height: auto !important;
}
.wpdt-c .wdt-datetimepicker-modal .timepicker-picker table tbody tr + tr:not(:last-child) {
background: #2196F3;
color: #fff;
}
.wpdt-c .wdt-datetimepicker-modal .timepicker-picker table tbody tr + tr:not(:last-child) {
background: #2196F3;
color: #fff;
}
.wpdt-c .wdt-datetimepicker-modal .timepicker-picker table tbody tr + tr:not(:last-child) td {
border-radius: 0;
background-color: #2196F3;
}
.wpdt-c .wdt-datetimepicker-modal .timepicker-picker .btn,
.wpdt-c .wdt-datetimepicker-modal .timepicker-picker .btn:hover {
background: #fff;
color: #333;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr th {
border-radius: 0;
color: #fff;
border: 0 !important;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr th .glyphicon {
width: 30px;
height: 30px;
border-radius: 50%;
line-height: 29px;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr th:hover .glyphicon {
background: rgba(0, 0, 0, 0.2);
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:first-child th {
background: #2196F3;
padding: 20px 0;
text-align: center;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:first-child th:hover {
background: #2196F3;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:first-child th.picker-switch {
font-size: 16px;
font-weight: 400;
text-transform: uppercase;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child th {
text-transform: uppercase;
font-weight: normal;
font-size: 11px;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child th:first-child {
padding-left: 20px;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child th:last-child {
padding-right: 20px;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child:not(:only-child),
.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child:not(:only-child) th {
background: #098BEF;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table tbody tr,
.wpdt-c .wdt-datetimepicker-modal .datepicker table tbody td {
padding: 0 !important;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table tbody tr:last-child td {
padding-bottom: 25px !important;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table tbody tr td:first-child {
padding-left: 13px !important;
overflow: visible;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table tbody tr td:last-child {
padding-right: 13px !important;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table td.day {
width: 35px;
height: 35px;
line-height: 20px;
color: #333;
position: relative;
background: transparent !important;
border: 0;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table td.day:hover {
background: none;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table td.day:before {
content: "";
width: 35px;
height: 35px;
border-radius: 50%;
margin-bottom: -33px;
display: inline-block;
background: transparent;
position: static;
text-shadow: none;
border-bottom-color: transparent !important;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table td.day.old,
.wpdt-c .wdt-datetimepicker-modal .datepicker table td.day.new {
color: #CDCDCD;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table td:not(.today):not(.active):hover:before {
background: #F0F0F0;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table td.today {
color: #333;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table td.today:before {
background-color: #E2E2E2;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table td.active {
color: #fff;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker table td.active:before {
background-color: #2196F3;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker-months .month,
.wpdt-c .wdt-datetimepicker-modal .datepicker-years .year,
.wpdt-c .wdt-datetimepicker-modal .timepicker-minutes .minute,
.wpdt-c .wdt-datetimepicker-modal .timepicker-hours .hour {
border-radius: 50%;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker-months .month:not(.active):hover,
.wpdt-c .wdt-datetimepicker-modal .datepicker-years .year:not(.active):hover,
.wpdt-c .wdt-datetimepicker-modal .timepicker-minutes .minute:not(.active):hover,
.wpdt-c .wdt-datetimepicker-modal .timepicker-hours .hour:not(.active):hover {
background: #F0F0F0;
}
.wpdt-c .wdt-datetimepicker-modal .datepicker-months .month.active,
.wpdt-c .wdt-datetimepicker-modal .datepicker-years .year.active,
.wpdt-c .wdt-datetimepicker-modal .timepicker-minutes .minute.active,
.wpdt-c .wdt-datetimepicker-modal .timepicker-hours .hour.active {
background: #2196F3;
}
.wpdt-c .wdt-datetimepicker-modal .timepicker-minutes .minute,
.wpdt-c .wdt-datetimepicker-modal .timepicker-hours .hour {
padding: 0;
}
.wpdt-c .wdt-datetimepicker-modal .list-unstyled {
padding: 0 !important;
line-height: inherit !important;
list-style-type: inherit !important;
}
.wpdt-c .wpDataTablesWrapper table.wpDataTable .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table td{background:0 0;-o-transition:0s;-ms-transition:0s;-moz-transition:0s;-webkit-transition:0s;transition:0s}.wpdt-c .wpDataTables.wpDataTablesWrapper{position:relative!important}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget{padding:0!important;margin:0!important;width:auto!important;bottom:auto!important;top:auto!important;min-width:216px}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget:after,.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget:before{display:none!important}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table{border:0!important;font-size:inherit;line-height:inherit;table-layout:auto}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table td{text-shadow:none;white-space:normal;overflow:visible;border:0;font-weight:400}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table td span{margin:0}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget table td span:hover{background:0 0}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon{font-family:Material-Design-Iconic-Font;font-size:18px}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-chevron-left:before{content:"\f2ff"}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-chevron-right:before{content:"\f301"}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-time:before{content:"\f337"}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-trash:before{content:"\f330"}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-calendar:before{content:"\f32e"}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-chevron-up:before{content:"\f1e5"}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .glyphicon-chevron-down:before{content:"\f1e4"}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget a[data-action]{color:#2196F3;border-bottom:0}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em!important;background:0 0;color:inherit}.wpdt-c .wdt-datetimepicker-modal.bootstrap-datetimepicker-widget .datepicker-decades span{height:auto}.wpdt-c .wdt-datetimepicker-modal .timepicker-picker .table-condensed>tbody>tr>td{padding:10px;background:0 0}.wpdt-c .wdt-datetimepicker-modal .timepicker-picker .btn{box-shadow:none!important;height:auto!important}.wpdt-c .wdt-datetimepicker-modal .timepicker-picker table tbody tr+tr:not(:last-child){background:#2196F3;color:#fff}.wpdt-c .wdt-datetimepicker-modal .timepicker-picker table tbody tr+tr:not(:last-child) td{border-radius:0;background-color:#2196F3}.wpdt-c .wdt-datetimepicker-modal .timepicker-picker .btn,.wpdt-c .wdt-datetimepicker-modal .timepicker-picker .btn:hover{background:#fff;color:#333}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr th{border-radius:0;color:#fff;border:0!important}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr th .glyphicon{width:30px;height:30px;border-radius:50%;line-height:29px}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr th:hover .glyphicon{background:rgba(0,0,0,.2)}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:first-child th{background:#2196F3;padding:20px 0;text-align:center}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:first-child th:hover{background:#2196F3}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:first-child th.picker-switch{font-size:16px;font-weight:400;text-transform:uppercase}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child th{text-transform:uppercase;font-weight:400;font-size:11px}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child th:first-child{padding-left:20px}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child th:last-child{padding-right:20px}.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child:not(:only-child),.wpdt-c .wdt-datetimepicker-modal .datepicker table thead tr:last-child:not(:only-child) th{background:#098BEF}.wpdt-c .wdt-datetimepicker-modal .datepicker table tbody td,.wpdt-c .wdt-datetimepicker-modal .datepicker table tbody tr{padding:0!important}.wpdt-c .wdt-datetimepicker-modal .datepicker table tbody tr:last-child td{padding-bottom:25px!important}.wpdt-c .wdt-datetimepicker-modal .datepicker table tbody tr td:first-child{padding-left:13px!important;overflow:visible}.wpdt-c .wdt-datetimepicker-modal .datepicker table tbody tr td:last-child{padding-right:13px!important}.wpdt-c .wdt-datetimepicker-modal .datepicker table td.day{width:35px;height:35px;line-height:20px;color:#333;position:relative;background:0 0!important;border:0}.wpdt-c .wdt-datetimepicker-modal .datepicker table td.day:hover{background:0 0}.wpdt-c .wdt-datetimepicker-modal .datepicker table td.day:before{content:"";width:35px;height:35px;border-radius:50%;margin-bottom:-33px;display:inline-block;background:0 0;position:static;text-shadow:none;border-bottom-color:transparent!important}.wpdt-c .wdt-datetimepicker-modal .datepicker table td.day.new,.wpdt-c .wdt-datetimepicker-modal .datepicker table td.day.old{color:#CDCDCD}.wpdt-c .wdt-datetimepicker-modal .datepicker table td:not(.today):not(.active):hover:before{background:#F0F0F0}.wpdt-c .wdt-datetimepicker-modal .datepicker table td.today{color:#333}.wpdt-c .wdt-datetimepicker-modal .datepicker table td.today:before{background-color:#E2E2E2}.wpdt-c .wdt-datetimepicker-modal .datepicker table td.active{color:#fff}.wpdt-c .wdt-datetimepicker-modal .datepicker table td.active:before{background-color:#2196F3}.wpdt-c .wdt-datetimepicker-modal .datepicker-months .month,.wpdt-c .wdt-datetimepicker-modal .datepicker-years .year,.wpdt-c .wdt-datetimepicker-modal .timepicker-hours .hour,.wpdt-c .wdt-datetimepicker-modal .timepicker-minutes .minute{border-radius:50%}.wpdt-c .wdt-datetimepicker-modal .datepicker-months .month:not(.active):hover,.wpdt-c .wdt-datetimepicker-modal .datepicker-years .year:not(.active):hover,.wpdt-c .wdt-datetimepicker-modal .timepicker-hours .hour:not(.active):hover,.wpdt-c .wdt-datetimepicker-modal .timepicker-minutes .minute:not(.active):hover{background:#F0F0F0}.wpdt-c .wdt-datetimepicker-modal .datepicker-months .month.active,.wpdt-c .wdt-datetimepicker-modal .datepicker-years .year.active,.wpdt-c .wdt-datetimepicker-modal .timepicker-hours .hour.active,.wpdt-c .wdt-datetimepicker-modal .timepicker-minutes .minute.active{background:#2196F3}.wpdt-c .wdt-datetimepicker-modal .timepicker-hours .hour,.wpdt-c .wdt-datetimepicker-modal .timepicker-minutes .minute{padding:0}.wpdt-c .wdt-datetimepicker-modal .list-unstyled{padding:0!important;line-height:inherit!important;list-style-type:inherit!important}
\ No newline at end of file
/*!
* Bootstrap-select v1.11.0 (http://silviomoreto.github.io/bootstrap-select)
*
* Copyright 2013-2016 bootstrap-select
* Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
*/select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px\9}.bootstrap-select>.dropdown-toggle{width:100%;padding-right:25px;z-index:1}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2}.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle{border-color:#b94a48}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none}.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{z-index:auto}.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child)>.btn{border-radius:0}.bootstrap-select.btn-group:not(.input-group-btn),.bootstrap-select.btn-group[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.btn-group.dropdown-menu-right,.bootstrap-select.btn-group[class*=col-].dropdown-menu-right,.row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select.btn-group,.form-horizontal .bootstrap-select.btn-group,.form-inline .bootstrap-select.btn-group{margin-bottom:0}.form-group-lg .bootstrap-select.btn-group.form-control,.form-group-sm .bootstrap-select.btn-group.form-control{padding:0}.form-inline .bootstrap-select.btn-group .form-control{width:100%}.bootstrap-select.btn-group.disabled,.bootstrap-select.btn-group>.disabled{cursor:not-allowed}.bootstrap-select.btn-group.disabled:focus,.bootstrap-select.btn-group>.disabled:focus{outline:0!important}.bootstrap-select.btn-group.bs-container{position:absolute;height:0!important;padding:0!important}.bootstrap-select.btn-group.bs-container .dropdown-menu{z-index:1060}.bootstrap-select.btn-group .dropdown-toggle .filter-option{display:inline-block;overflow:hidden;width:100%;text-align:left}.bootstrap-select.btn-group .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select.btn-group[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select.btn-group .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select.btn-group .dropdown-menu li{position:relative}.bootstrap-select.btn-group .dropdown-menu li.active small{color:#fff}.bootstrap-select.btn-group .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select.btn-group .dropdown-menu li a{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-select.btn-group .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select.btn-group .dropdown-menu li a span.check-mark{display:none}.bootstrap-select.btn-group .dropdown-menu li a span.text{display:inline-block}.bootstrap-select.btn-group .dropdown-menu li small{padding-left:.5em}.bootstrap-select.btn-group .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option{position:static}.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark{position:absolute;display:inline-block;right:15px;margin-top:5px}.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before{bottom:auto;top:-3px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after{bottom:auto;top:-3px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none}
\ No newline at end of file
.bootstrap-tagsinput {
background-color: #fff;
border: 1px solid #ccc;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
display: inline-block;
padding: 4px 6px;
color: #555;
vertical-align: middle;
border-radius: 4px;
max-width: 100%;
line-height: 22px;
cursor: text;
}
.bootstrap-tagsinput input {
border: none;
box-shadow: none;
outline: none;
background-color: transparent;
padding: 0 6px;
margin: 0;
width: auto;
max-width: inherit;
}
.bootstrap-tagsinput.form-control input::-moz-placeholder {
color: #777;
opacity: 1;
}
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
color: #777;
}
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
color: #777;
}
.bootstrap-tagsinput input:focus {
border: none;
box-shadow: none;
}
.bootstrap-tagsinput .tag {
margin-right: 2px;
color: white;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
margin-left: 8px;
cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
content: "x";
padding: 0px 2px;
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
table.has-columns-hidden > tbody > tr > td > span.responsiveExpander,
table.has-columns-hidden > tbody > tr.detail-show > td span.responsiveExpander {
background-color: #ffffff;
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e0e0e0) );
background-image: -webkit-linear-gradient(top, #ffffff, #e0e0e0);
background-image: -o-linear-gradient(top, #ffffff, #e0e0e0);
background-image: linear-gradient(to bottom, #ffffff, #e0e0e0);
background-image: -moz-linear-gradient(top, #ffffff, #e0e0e0);
filter: progid:dximagetransform.microsoft.gradient( startColorstr= '#ffffffff', endColorstr= '#ffe0e0e0', GradientType= 0 );
border: 1px solid #e0e0e0;
cursor: pointer;
display: inline-block;
line-height: 0;
font-size: 0;
padding: 1px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
margin-right: 3px;
}
table.has-columns-hidden > tbody > tr > td > span.responsiveExpander:hover,
table.has-columns-hidden > tbody > tr.detail-show > td span.responsiveExpander:hover {
background-color: #fff;
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5) );
background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
background-image: linear-gradient(to bottom, #ffffff, #f5f5f5);
background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
filter: progid:dximagetransform.microsoft.gradient( startColorstr= '#ffffffff', endColorstr= '#fff5f5f5', GradientType= 0 );
border-color: #c7d5e1;
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
table.has-columns-hidden > tbody > tr > td > span.responsiveExpander:after,
table.has-columns-hidden > tbody > tr.detail-show > td span.responsiveExpander:after {
display: inline-block;
line-height: 0;
content: "";
height: 11px;
width: 11px;
background-image: url("../img/icons.png");
background-repeat: no-repeat;
background-position: -3000px -3000px;
}
table.has-columns-hidden > tbody > tr > td > span.responsiveExpander:after {
background-position: 0 0;
cursor: pointer;
}
table.has-columns-hidden > tbody > tr > td > span.responsiveExpander:hover:after {
background-position: -12px 0;
}
table.has-columns-hidden > tbody > tr.detail-show > td span.responsiveExpander:after {
background-position: -24px 0;
}
table.has-columns-hidden > tbody > tr.detail-show > td span.responsiveExpander:hover:after {
background-position: -36px 0;
}
table.has-columns-hidden > tbody > tr.row-detail > td {
background: #eee;
}
table.has-columns-hidden > tbody > tr.row-detail > td > ul {
list-style: none;
margin: 0;
}
table.has-columns-hidden > tbody > tr.row-detail > td > ul > li > span.columnTitle {
font-weight: bold;
}
.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";filter:alpha(opacity=80)}.gu-hide{display:none!important}.gu-unselectable{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";filter:alpha(opacity=20)}
\ No newline at end of file
/*!
* Waves v0.7.5
* http://fian.my.id/Waves
*
* Copyright 2014-2016 Alfiana E. Sibuea and other contributors
* Released under the MIT license
* https://github.com/fians/Waves/blob/master/LICENSE
*/.waves-effect{position:relative;cursor:pointer;display:inline-block;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.waves-effect .waves-ripple{position:absolute;border-radius:50%;width:100px;height:100px;margin-top:-50px;margin-left:-50px;opacity:0;background:rgba(0,0,0,.2);background:-webkit-radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);background:-o-radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);background:-moz-radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);background:radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);-webkit-transition:all .5s ease-out;-moz-transition:all .5s ease-out;-o-transition:all .5s ease-out;transition:all .5s ease-out;-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;-o-transition-property:-o-transform,opacity;transition-property:transform,opacity;-webkit-transform:scale(0) translate(0,0);-moz-transform:scale(0) translate(0,0);-ms-transform:scale(0) translate(0,0);-o-transform:scale(0) translate(0,0);transform:scale(0) translate(0,0);pointer-events:none}.waves-effect.waves-light .waves-ripple{background:rgba(255,255,255,.4);background:-webkit-radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%);background:-o-radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%);background:-moz-radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%);background:radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%)}.waves-effect.waves-classic .waves-ripple{background:rgba(0,0,0,.2)}.waves-effect.waves-classic.waves-light .waves-ripple{background:rgba(255,255,255,.4)}.waves-notransition{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;transition:none!important}.waves-button,.waves-circle{-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0);-webkit-mask-image:-webkit-radial-gradient(circle,#fff 100%,#000 100%)}.waves-button,.waves-button:hover,.waves-button:visited,.waves-button-input{white-space:nowrap;vertical-align:middle;cursor:pointer;border:none;outline:0;color:inherit;background-color:transparent;font-size:1em;line-height:1em;text-align:center;text-decoration:none;z-index:1}.waves-button{padding:.85em 1.1em;border-radius:.2em}.waves-button-input{margin:0;padding:.85em 1.1em}.waves-input-wrapper{border-radius:.2em;vertical-align:bottom}.waves-input-wrapper.waves-button{padding:0}.waves-input-wrapper .waves-button-input{position:relative;top:0;left:0;z-index:1}.waves-circle{text-align:center;width:2.5em;height:2.5em;line-height:2.5em;border-radius:50%}.waves-float{-webkit-mask-image:none;-webkit-box-shadow:0 1px 1.5px 1px rgba(0,0,0,.12);box-shadow:0 1px 1.5px 1px rgba(0,0,0,.12);-webkit-transition:all 300ms;-moz-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms}.waves-float:active{-webkit-box-shadow:none;box-shadow:none}.waves-block{display:block}
\ No newline at end of file
div.wpExcelTable {
clear:both;
}
.wpExcelTable_search_filter {
float: left;
margin-bottom: 20px;
}
.wpExcelTable .wdtAttachmentEditorHolder {
position: absolute;
top: 0;
left: 0;
z-index: 100;
background-color: #fff;
padding: 5px;
border: 2px solid #CCC;
}
.wpExcelTable .wdtAttachmentEditorHolder span.delete_file {
padding-left: 10px;
}
.wpExcelTable .invalid_editor_value > textarea {
background-color: #ff4c42!important;
}
.wpExcelTable .overlayed_elm {
position: relative;
pointer-events: none;
}
.wpExcelTable .overlayed_elm>* {
opacity: .3;
}
.wpExcelTable > .handsontable:first-child .overlayed_elm:after {
color: inherit;
font-size: 34px;
left: 50%;
margin-left: -15px;
margin-top: -20px;
opacity: 1;
position: absolute;
top: 50%;
-webkit-animation: spin 2s infinite linear;
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
}
.wpExcelTable > .handsontable:first-child .overlayed_elm:after {
display: inline-block;
font-family: WPDataTablesIcons!important;
font-style: normal;
font-weight: 400;
text-align: center;
text-decoration: none;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
}
.wpExcelTable > .handsontable:first-child .overlayed_elm:after {
font-family: dashicons!important;
content: "\f463"
}
\ No newline at end of file
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.