2019-09-10 06:27:33 +02:00
|
|
|
@charset "UTF-8";
|
|
|
|
.cmb2-uploader-files {
|
|
|
|
display: flex;
|
2019-09-13 04:44:33 +02:00
|
|
|
flex-wrap: wrap; }
|
|
|
|
.cmb2-uploader-files > div {
|
|
|
|
width: 180px;
|
|
|
|
height: 130px;
|
|
|
|
overflow: hidden; }
|
|
|
|
.cmb2-uploader-files .preview-image {
|
|
|
|
height: 100%; }
|
|
|
|
.cmb2-uploader-files .preview-image img {
|
|
|
|
height: 100%; }
|
|
|
|
.cmb2-uploader-files .button-placehold {
|
|
|
|
border: dashed 1px #ebebeb;
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: center; }
|
|
|
|
.cmb2-uploader-files .button-placehold i {
|
|
|
|
display: block;
|
|
|
|
font-size: 24px;
|
|
|
|
margin-bottom: 8px; }
|
|
|
|
.cmb2-uploader-files .button-placehold .button-placehold-content {
|
|
|
|
position: relative;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%); }
|
|
|
|
.cmb2-uploader-files input.select-file {
|
|
|
|
display: none; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.uploader-item-preview {
|
2019-09-13 04:44:33 +02:00
|
|
|
position: relative; }
|
|
|
|
.uploader-item-preview .btn-close {
|
|
|
|
position: absolute;
|
|
|
|
top: 4px;
|
|
|
|
right: 5px;
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
cursor: pointer; }
|
|
|
|
.uploader-item-preview .btn-close:hover::before {
|
|
|
|
color: red; }
|
|
|
|
.uploader-item-preview .btn-close::before {
|
|
|
|
content: '\f00d';
|
2019-09-28 04:44:42 +02:00
|
|
|
font-family: "Font Awesome 5 Free";
|
2019-09-13 04:44:33 +02:00
|
|
|
transition: all .3s ease-in-out; }
|
|
|
|
.uploader-item-preview .preview-icon {
|
|
|
|
padding-top: 4px; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
* Main Wrap
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
.cmb2-wrap {
|
2019-09-13 04:44:33 +02:00
|
|
|
margin: 0; }
|
|
|
|
.cmb2-wrap input,
|
|
|
|
.cmb2-wrap textarea {
|
|
|
|
font-size: 14px;
|
|
|
|
max-width: 100%;
|
|
|
|
padding: 5px; }
|
|
|
|
.cmb2-wrap input[type=text].cmb2-oembed {
|
|
|
|
width: 100%; }
|
|
|
|
.cmb2-wrap textarea {
|
|
|
|
width: 500px; }
|
|
|
|
.cmb2-wrap textarea.cmb2-textarea-code {
|
|
|
|
font-family: "Courier 10 Pitch", Courier, monospace;
|
|
|
|
line-height: 16px; }
|
|
|
|
.cmb2-wrap input.cmb2-text-small, .cmb2-wrap input.cmb2-timepicker {
|
|
|
|
width: 100px; }
|
|
|
|
.cmb2-wrap input.cmb2-text-money {
|
|
|
|
width: 90px; }
|
|
|
|
.cmb2-wrap input.cmb2-text-medium {
|
|
|
|
width: 230px; }
|
|
|
|
.cmb2-wrap input.cmb2-upload-file {
|
|
|
|
width: 65%; }
|
|
|
|
.cmb2-wrap input.ed_button {
|
|
|
|
padding: 2px 4px; }
|
|
|
|
.cmb2-wrap input:not([type="hidden"]) + input,
|
|
|
|
.cmb2-wrap input:not([type="hidden"]) + .button-secondary,
|
|
|
|
.cmb2-wrap input:not([type="hidden"]) + select {
|
|
|
|
margin-left: 20px; }
|
|
|
|
.cmb2-wrap ul {
|
|
|
|
margin: 0; }
|
|
|
|
.cmb2-wrap li {
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 16px;
|
|
|
|
margin: 1px 0 5px 0; }
|
|
|
|
.cmb2-wrap select {
|
|
|
|
font-size: 14px;
|
|
|
|
margin-top: 3px; }
|
|
|
|
.cmb2-wrap input:focus,
|
|
|
|
.cmb2-wrap textarea:focus {
|
|
|
|
background: #fffff8; }
|
|
|
|
.cmb2-wrap input[type="radio"] {
|
|
|
|
margin: 0 5px 0 0;
|
|
|
|
padding: 0; }
|
|
|
|
.cmb2-wrap input[type="checkbox"] {
|
|
|
|
margin: 0 5px 0 0;
|
|
|
|
padding: 0; }
|
|
|
|
.cmb2-wrap .button-secondary {
|
|
|
|
color: #555;
|
|
|
|
border-color: #cccccc;
|
|
|
|
background: #f7f7f7;
|
|
|
|
box-shadow: 0 1px 0 #cccccc;
|
|
|
|
display: inline-block;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 26px;
|
|
|
|
height: 28px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 10px 1px;
|
|
|
|
cursor: pointer;
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
border-radius: 3px;
|
|
|
|
white-space: nowrap;
|
|
|
|
box-sizing: border-box; }
|
|
|
|
.cmb2-wrap .button-secondary:hover {
|
|
|
|
background: #fafafa;
|
|
|
|
border-color: #999;
|
|
|
|
color: #23282d; }
|
|
|
|
.cmb2-wrap .mceLayout {
|
|
|
|
border: 1px solid #e9e9e9 !important; }
|
|
|
|
.cmb2-wrap .mceIframeContainer {
|
|
|
|
background: #ffffff; }
|
|
|
|
.cmb2-wrap .meta_mce {
|
|
|
|
width: 97%; }
|
|
|
|
.cmb2-wrap .meta_mce textarea {
|
|
|
|
width: 100%; }
|
|
|
|
.cmb2-wrap .field-row-2 {
|
|
|
|
margin: 0 -15px; }
|
|
|
|
.cmb2-wrap .field-row-2::after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
clear: both; }
|
|
|
|
.cmb2-wrap .field-row-2 .cmb-row {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px; }
|
|
|
|
@media screen and (min-width: 768px) {
|
|
|
|
.cmb2-wrap .field-row-2 .cmb-row {
|
|
|
|
width: 50%; } }
|
|
|
|
.cmb2-wrap .wp-color-result,
|
|
|
|
.cmb2-wrap .wp-picker-input-wrap {
|
|
|
|
vertical-align: middle; }
|
|
|
|
.cmb2-wrap .wp-color-result,
|
|
|
|
.cmb2-wrap .wp-picker-container {
|
|
|
|
margin: 0 10px 0 0; }
|
|
|
|
.cmb2-wrap .cmb-row {
|
|
|
|
margin: 0; }
|
|
|
|
.cmb2-wrap .cmb-row:after {
|
|
|
|
content: '';
|
|
|
|
clear: both;
|
|
|
|
display: block;
|
|
|
|
width: 100%; }
|
|
|
|
.cmb2-wrap .cmb-row.cmb-repeat .cmb2-metabox-description {
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 1em; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb2-metabox {
|
|
|
|
clear: both;
|
2019-09-13 04:44:33 +02:00
|
|
|
margin: 0; }
|
|
|
|
.cmb2-metabox > .cmb-row:first-of-type > .cmb-td,
|
|
|
|
.cmb2-metabox > .cmb-row:first-of-type > .cmb-th,
|
|
|
|
.cmb2-metabox .cmb-field-list > .cmb-row:first-of-type > .cmb-td,
|
|
|
|
.cmb2-metabox .cmb-field-list > .cmb-row:first-of-type > .cmb-th {
|
|
|
|
border: 0; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-add-row {
|
2019-09-13 04:44:33 +02:00
|
|
|
margin: 1.8em 0 0; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-nested .cmb-td,
|
|
|
|
.cmb-repeatable-group .cmb-th,
|
|
|
|
.cmb-repeatable-group:first-of-type {
|
2019-09-13 04:44:33 +02:00
|
|
|
border: 0; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-row:last-of-type,
|
|
|
|
.cmb2-wrap .cmb-row:last-of-type,
|
|
|
|
.cmb-repeatable-group:last-of-type {
|
2019-09-13 04:44:33 +02:00
|
|
|
border-bottom: 0; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-repeatable-grouping {
|
|
|
|
border: 1px solid #e9e9e9;
|
2019-09-13 04:44:33 +02:00
|
|
|
padding: 0 1em; }
|
|
|
|
.cmb-repeatable-grouping.cmb-row {
|
|
|
|
margin: 0 0 0.8em; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-th {
|
|
|
|
color: #0a1938;
|
|
|
|
float: left;
|
|
|
|
font-weight: 500;
|
|
|
|
line-height: 1.2;
|
|
|
|
padding: 20px 10px 20px 0;
|
|
|
|
vertical-align: top;
|
2019-09-13 04:44:33 +02:00
|
|
|
width: 200px; }
|
|
|
|
@media (max-width: 450px) {
|
|
|
|
.cmb-th {
|
|
|
|
font-size: 1.2em;
|
|
|
|
display: block;
|
|
|
|
float: none;
|
|
|
|
padding-bottom: 1em;
|
|
|
|
text-align: left;
|
|
|
|
width: 100%; }
|
|
|
|
.cmb-th label {
|
|
|
|
display: block;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0.5em; } }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-td {
|
|
|
|
line-height: 1.3;
|
|
|
|
max-width: 100%;
|
|
|
|
padding: 15px 10px;
|
2019-09-13 04:44:33 +02:00
|
|
|
vertical-align: middle; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-type-title .cmb-td {
|
2019-09-13 04:44:33 +02:00
|
|
|
padding: 0; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-th label {
|
|
|
|
display: block;
|
2019-09-13 04:44:33 +02:00
|
|
|
padding: 5px 0; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-th + .cmb-td {
|
2019-09-13 04:44:33 +02:00
|
|
|
float: left; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-td .cmb-td {
|
2019-09-13 04:44:33 +02:00
|
|
|
padding-bottom: 1em; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-remove-row {
|
2019-09-13 04:44:33 +02:00
|
|
|
text-align: right; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.empty-row.hidden {
|
2019-09-13 04:44:33 +02:00
|
|
|
display: none; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-repeat-table {
|
|
|
|
background-color: #fafafa;
|
2019-09-13 04:44:33 +02:00
|
|
|
border: 1px solid #e1e1e1; }
|
|
|
|
.cmb-repeat-table .cmb-row.cmb-repeat-row {
|
|
|
|
position: relative;
|
|
|
|
counter-increment: el;
|
|
|
|
margin: 0;
|
|
|
|
padding: 10px 10px 10px 50px;
|
|
|
|
border-bottom: none !important; }
|
|
|
|
.cmb-repeat-table .cmb-row.cmb-repeat-row + .cmb-repeat-row {
|
|
|
|
border-top: solid 1px #e9e9e9; }
|
|
|
|
.cmb-repeat-table .cmb-row.cmb-repeat-row.ui-sortable-helper {
|
|
|
|
outline: dashed 2px #e9e9e9 !important; }
|
|
|
|
.cmb-repeat-table .cmb-row.cmb-repeat-row:before {
|
|
|
|
content: counter(el);
|
|
|
|
display: block;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
width: 35px;
|
|
|
|
height: 100%;
|
|
|
|
line-height: 35px;
|
|
|
|
cursor: move;
|
|
|
|
color: #757575;
|
|
|
|
text-align: center;
|
|
|
|
border-right: solid 1px #e9e9e9; }
|
|
|
|
.cmb-repeat-table .cmb-row.cmb-repeat-row .cmb-td {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0; }
|
|
|
|
.cmb-repeat-table + .cmb-add-row {
|
|
|
|
margin: 0; }
|
|
|
|
.cmb-repeat-table + .cmb-add-row:before {
|
|
|
|
content: '';
|
|
|
|
width: 1px;
|
|
|
|
height: 1.6em;
|
|
|
|
display: block;
|
|
|
|
margin-left: 17px;
|
|
|
|
background-color: gainsboro; }
|
|
|
|
.cmb-repeat-table .cmb-remove-row {
|
|
|
|
top: 7px;
|
|
|
|
right: 7px;
|
|
|
|
position: absolute;
|
|
|
|
width: auto;
|
|
|
|
margin-left: 0;
|
|
|
|
padding: 0 !important;
|
|
|
|
display: none; }
|
|
|
|
.cmb-repeat-table .cmb-remove-row > .cmb-remove-row-button {
|
|
|
|
font-size: 20px;
|
|
|
|
text-indent: -1000px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
height: auto;
|
|
|
|
line-height: 1;
|
|
|
|
padding: 0 10px 0; }
|
|
|
|
.cmb-repeat-table .cmb-remove-row > .cmb-remove-row-button:before {
|
|
|
|
content: "";
|
|
|
|
font-family: 'Dashicons';
|
|
|
|
speak: none;
|
|
|
|
font-weight: normal;
|
|
|
|
font-variant: normal;
|
|
|
|
text-transform: none;
|
|
|
|
line-height: 1;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
margin: 0;
|
|
|
|
text-indent: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
text-align: center; }
|
|
|
|
.cmb-repeat-table .cmb-repeat-row:hover .cmb-remove-row {
|
|
|
|
display: block; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-repeatable-group .cmb-th {
|
2019-09-13 04:44:33 +02:00
|
|
|
padding: 5px; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb-repeatable-group .cmb-group-title {
|
|
|
|
background-color: #e9e9e9;
|
|
|
|
padding: 8px 12px 8px 2.2em;
|
|
|
|
margin: 0 -1em;
|
|
|
|
min-height: 1.5em;
|
|
|
|
font-size: 14px;
|
2019-09-13 04:44:33 +02:00
|
|
|
line-height: 1.4; }
|
|
|
|
.cmb-repeatable-group .cmb-group-title h4 {
|
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1.2em;
|
|
|
|
font-weight: 500;
|
|
|
|
padding: 0.5em 0.75em; }
|
|
|
|
.cmb-repeatable-group .cmb-group-title .cmb-th {
|
|
|
|
display: block;
|
|
|
|
width: 100%; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb-repeatable-group .cmb-group-description .cmb-th {
|
|
|
|
font-size: 1.2em;
|
|
|
|
display: block;
|
|
|
|
float: none;
|
|
|
|
padding-bottom: 1em;
|
|
|
|
text-align: left;
|
2019-09-13 04:44:33 +02:00
|
|
|
width: 100%; }
|
|
|
|
.cmb-repeatable-group .cmb-group-description .cmb-th label {
|
|
|
|
display: block;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0.5em; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb-repeatable-group .cmb-shift-rows {
|
|
|
|
font-size: 1em;
|
|
|
|
margin-right: 1em;
|
2019-09-13 04:44:33 +02:00
|
|
|
text-decoration: none; }
|
|
|
|
.cmb-repeatable-group .cmb-shift-rows .dashicons {
|
|
|
|
font-size: 1.5em;
|
|
|
|
height: 1.5em;
|
|
|
|
line-height: 1.2em;
|
|
|
|
width: 1em; }
|
|
|
|
.cmb-repeatable-group .cmb-shift-rows .dashicons.dashicons-arrow-down-alt2 {
|
|
|
|
line-height: 1.3em; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb-repeatable-group .cmb2-upload-button {
|
2019-09-13 04:44:33 +02:00
|
|
|
float: right; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
p.cmb2-metabox-description {
|
|
|
|
color: #757575;
|
|
|
|
font-style: italic;
|
|
|
|
margin: 0;
|
2019-09-13 04:44:33 +02:00
|
|
|
padding-top: .5em; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
span.cmb2-metabox-description {
|
|
|
|
color: #757575;
|
2019-09-13 04:44:33 +02:00
|
|
|
font-style: italic; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb2-metabox-title {
|
|
|
|
margin: 0 0 5px 0;
|
|
|
|
padding: 5px 0 0 0;
|
2019-09-13 04:44:33 +02:00
|
|
|
font-size: 14px; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-inline ul {
|
2019-09-13 04:44:33 +02:00
|
|
|
padding: 4px 0 0 0; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-inline li {
|
|
|
|
display: inline-block;
|
2019-09-13 04:44:33 +02:00
|
|
|
padding-right: 18px; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-type-textarea-code pre {
|
2019-09-13 04:44:33 +02:00
|
|
|
margin: 0; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb2-media-status .img-status {
|
|
|
|
clear: none;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 10px;
|
2019-09-13 04:44:33 +02:00
|
|
|
width: auto; }
|
|
|
|
.cmb2-media-status .img-status img {
|
|
|
|
max-width: 350px;
|
|
|
|
height: auto; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb2-media-status .img-status img,
|
|
|
|
.cmb2-media-status .embed-status {
|
|
|
|
background: #eee;
|
|
|
|
border: 5px solid #ffffff;
|
|
|
|
outline: 1px solid #e9e9e9;
|
|
|
|
box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
|
|
|
|
background-image: linear-gradient(45deg, #d0d0d0 25%, transparent 25%, transparent 75%, #d0d0d0 75%, #d0d0d0), linear-gradient(45deg, #d0d0d0 25%, transparent 25%, transparent 75%, #d0d0d0 75%, #d0d0d0);
|
|
|
|
background-position: 0 0, 10px 10px;
|
|
|
|
background-size: 20px 20px;
|
|
|
|
border-radius: 2px;
|
|
|
|
-moz-border-radius: 2px;
|
2019-09-13 04:44:33 +02:00
|
|
|
margin: 15px 0 0 0; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb2-media-status .embed-status {
|
|
|
|
float: left;
|
2019-09-13 04:44:33 +02:00
|
|
|
max-width: 800px; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb2-media-status .img-status, .cmb2-media-status .embed-status {
|
2019-09-13 04:44:33 +02:00
|
|
|
position: relative; }
|
|
|
|
.cmb2-media-status .img-status .cmb2-remove-file-button, .cmb2-media-status .embed-status .cmb2-remove-file-button {
|
|
|
|
background: url(../images/ico-delete.png);
|
|
|
|
height: 16px;
|
|
|
|
left: -5px;
|
|
|
|
position: absolute;
|
|
|
|
text-indent: -9999px;
|
|
|
|
top: -5px;
|
|
|
|
width: 16px; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb2-media-status .img-status .cmb2-remove-file-button {
|
2019-09-13 04:44:33 +02:00
|
|
|
top: 10px; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb2-media-status .img-status img, .cmb2-media-status .file-status > span {
|
2019-09-13 04:44:33 +02:00
|
|
|
cursor: pointer; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb2-media-status.cmb-attach-list .img-status img, .cmb2-media-status.cmb-attach-list .file-status > span {
|
2019-09-13 04:44:33 +02:00
|
|
|
cursor: move; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-type-file-list .cmb2-media-status .img-status {
|
|
|
|
clear: none;
|
|
|
|
vertical-align: middle;
|
|
|
|
width: auto;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-bottom: 10px;
|
2019-09-13 04:44:33 +02:00
|
|
|
margin-top: 0; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-attach-list li {
|
|
|
|
clear: both;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 5px;
|
2019-09-13 04:44:33 +02:00
|
|
|
margin-bottom: 10px; }
|
|
|
|
.cmb-attach-list li img {
|
|
|
|
float: left;
|
|
|
|
margin-right: 10px; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb2-remove-wrapper {
|
2019-09-13 04:44:33 +02:00
|
|
|
margin: 0; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.child-cmb2 .cmb-th {
|
2019-09-13 04:44:33 +02:00
|
|
|
text-align: left; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb2-indented-hierarchy {
|
2019-09-13 04:44:33 +02:00
|
|
|
padding-left: 1.5em; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
@media (max-width: 450px) {
|
|
|
|
.cmb-th,
|
|
|
|
.cmb-td,
|
|
|
|
.cmb-th + .cmb-td {
|
|
|
|
display: block;
|
|
|
|
float: none;
|
2019-09-13 04:44:33 +02:00
|
|
|
width: 100%; } }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.opalestate-submission-form {
|
2019-09-13 04:44:33 +02:00
|
|
|
position: relative; }
|
|
|
|
.opalestate-submission-form .cmb-td {
|
|
|
|
width: 100%;
|
|
|
|
padding: 15px 0; }
|
|
|
|
.opalestate-submission-form .cmb-th {
|
|
|
|
width: 100%;
|
|
|
|
padding-bottom: 0;
|
|
|
|
padding-top: 15px; }
|
|
|
|
.opalestate-submission-form .cmb-th label {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0; }
|
|
|
|
.opalestate-submission-form span.cmb2-metabox-description {
|
|
|
|
padding-top: .5em;
|
|
|
|
display: block; }
|
|
|
|
.opalestate-submission-form .cmb2-wrap input.cmb2-text-medium, .opalestate-submission-form .cmb2-wrap input.cmb2-text-small {
|
|
|
|
width: 100%; }
|
|
|
|
.opalestate-submission-form .opalestate-tab-content::after {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
clear: both; }
|
|
|
|
@media screen and (min-width: 768px) {
|
|
|
|
.opalestate-submission-form .submission-next-btn {
|
|
|
|
float: right; } }
|
2019-09-10 06:27:33 +02:00
|
|
|
.opalestate-submission-form .btn-submit-cmb {
|
2019-09-13 04:44:33 +02:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
right: 0px;
|
|
|
|
padding: 19px 25px 17px 20px; }
|
|
|
|
@media screen and (max-width: 767px) {
|
|
|
|
.opalestate-submission-form .btn-submit-cmb {
|
|
|
|
position: relative;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
margin-top: 15px; } }
|
|
|
|
.opalestate-submission-form .btn-submit-cmb::before {
|
|
|
|
content: "\f138";
|
2019-09-28 04:44:42 +02:00
|
|
|
font-family: "Font Awesome 5 Free";
|
2019-09-13 04:44:33 +02:00
|
|
|
margin-right: 18px;
|
|
|
|
padding-right: 20px; }
|
|
|
|
.opalestate-submission-form .btn-submit-cmb::after {
|
|
|
|
content: "";
|
|
|
|
width: 52px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
background-color: transparent;
|
|
|
|
-webkit-box-shadow: 3px 0px 7px 0px rgba(0, 0, 0, 0.15);
|
|
|
|
box-shadow: 3px 0px 7px 0px rgba(0, 0, 0, 0.15); }
|
|
|
|
.opalestate-submission-form .submission-back-btn, .opalestate-submission-form .submission-next-btn, .opalestate-submission-form .submission-next-btn {
|
|
|
|
margin-top: 15px; }
|
|
|
|
.opalestate-submission-form .cmb-repeatable-group .cmb-group-title {
|
|
|
|
font-size: 15px; }
|
|
|
|
.opalestate-submission-form .cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row {
|
|
|
|
top: .4em; }
|
|
|
|
.opalestate-submission-form .cmb-type-group .field-row-2 .cmb-row {
|
|
|
|
border-bottom: none;
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding-bottom: 0; }
|
|
|
|
.opalestate-submission-form .cmb-type-group .cmb-row {
|
|
|
|
padding-top: 15px;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
margin-bottom: 15px; }
|
|
|
|
.opalestate-submission-form .cmb-type-group .cmb-row.postbox {
|
|
|
|
padding-top: 0;
|
|
|
|
border-bottom: 1px solid #e9e9e9; }
|
|
|
|
.opalestate-submission-form .cmb-type-group .cmb-th {
|
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
float: none; }
|
|
|
|
.opalestate-submission-form .cmb-type-group .cmb-th + .cmb-td {
|
|
|
|
width: 100%;
|
|
|
|
float: none;
|
|
|
|
padding: 15px 0; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
* Post Metaboxes
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
#poststuff .cmb-group-title {
|
|
|
|
margin-left: -1em;
|
|
|
|
margin-right: -1em;
|
2019-09-13 04:44:33 +02:00
|
|
|
min-height: 1.5em; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
#poststuff .repeatable .cmb-group-title {
|
2019-09-13 04:44:33 +02:00
|
|
|
padding-left: 2.2em; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb2-postbox .cmb2-wrap, .cmb-type-group .cmb2-wrap {
|
2019-09-13 04:44:33 +02:00
|
|
|
margin: 0; }
|
|
|
|
.cmb2-postbox .cmb2-wrap > .cmb-field-list > .cmb-row, .cmb-type-group .cmb2-wrap > .cmb-field-list > .cmb-row {
|
|
|
|
padding: 1.8em 0; }
|
|
|
|
.cmb2-postbox .cmb2-wrap input[type=text].cmb2-oembed, .cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed {
|
|
|
|
width: 100%; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb2-postbox .cmb-row, .cmb-type-group .cmb-row {
|
|
|
|
padding: 0 0 1.8em;
|
2019-09-13 04:44:33 +02:00
|
|
|
margin: 0 0 0.8em; }
|
|
|
|
.cmb2-postbox .cmb-row .cmbhandle, .cmb-type-group .cmb-row .cmbhandle {
|
|
|
|
right: -1em;
|
|
|
|
position: relative;
|
|
|
|
color: #222222; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb2-postbox .cmb-repeatable-grouping, .cmb-type-group .cmb-repeatable-grouping {
|
|
|
|
padding: 0 1em;
|
|
|
|
max-width: 100%;
|
2019-09-13 04:44:33 +02:00
|
|
|
min-width: 1px !important; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb2-postbox .cmb-repeatable-group > .cmb-row, .cmb-type-group .cmb-repeatable-group > .cmb-row {
|
2019-09-13 04:44:33 +02:00
|
|
|
padding-bottom: 0; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb2-postbox .cmb-th, .cmb-type-group .cmb-th {
|
|
|
|
width: 18%;
|
2019-09-13 04:44:33 +02:00
|
|
|
padding: 0 2% 0 0; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb2-postbox .cmb-td, .cmb-type-group .cmb-td {
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding: 0;
|
2019-09-13 04:44:33 +02:00
|
|
|
line-height: 1.3; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb2-postbox .cmb-th + .cmb-td, .cmb-type-group .cmb-th + .cmb-td {
|
|
|
|
width: 80%;
|
2019-09-13 04:44:33 +02:00
|
|
|
float: right; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb2-postbox .cmb-row:not(:last-of-type),
|
|
|
|
.cmb2-postbox .cmb-repeatable-group:not(:last-of-type), .cmb-type-group .cmb-row:not(:last-of-type),
|
|
|
|
.cmb-type-group .cmb-repeatable-group:not(:last-of-type) {
|
2019-09-13 04:44:33 +02:00
|
|
|
border-bottom: 1px solid #e9e9e9; }
|
|
|
|
@media (max-width: 450px) {
|
|
|
|
.cmb2-postbox .cmb-row:not(:last-of-type),
|
|
|
|
.cmb2-postbox .cmb-repeatable-group:not(:last-of-type), .cmb-type-group .cmb-row:not(:last-of-type),
|
|
|
|
.cmb-type-group .cmb-repeatable-group:not(:last-of-type) {
|
|
|
|
border-bottom: 0; } }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb2-postbox .cmb-repeat-group-field,
|
|
|
|
.cmb2-postbox .cmb-remove-field-row, .cmb-type-group .cmb-repeat-group-field,
|
|
|
|
.cmb-type-group .cmb-remove-field-row {
|
2019-09-13 04:44:33 +02:00
|
|
|
padding-top: 1.8em; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
* Context Metaboxes
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
/* Metabox collapse arrow indicators */
|
|
|
|
.js .cmb2-postbox.context-box .toggle-indicator:before {
|
|
|
|
content: "\f142";
|
|
|
|
display: inline-block;
|
|
|
|
font: normal 20px/1 dashicons;
|
|
|
|
speak: none;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2019-09-13 04:44:33 +02:00
|
|
|
text-decoration: none !important; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.js .cmb2-postbox.context-box.closed .toggle-indicator:before {
|
2019-09-13 04:44:33 +02:00
|
|
|
content: "\f140"; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb2-postbox.context-box {
|
2019-09-13 04:44:33 +02:00
|
|
|
margin-bottom: 10px; }
|
|
|
|
.cmb2-postbox.context-box.context-before_permalink-box {
|
|
|
|
margin-top: 10px; }
|
|
|
|
.cmb2-postbox.context-box.context-after_title-box {
|
|
|
|
margin-top: 10px; }
|
|
|
|
.cmb2-postbox.context-box.context-after_editor-box {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 0; }
|
|
|
|
.cmb2-postbox.context-box.context-form_top-box {
|
|
|
|
margin-top: 10px; }
|
|
|
|
.cmb2-postbox.context-box.context-form_top-box .hndle {
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 8px 12px;
|
|
|
|
margin: 0;
|
|
|
|
line-height: 1.4; }
|
|
|
|
.cmb2-postbox.context-box .hndle {
|
|
|
|
cursor: auto; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb2-context-wrap {
|
2019-09-13 04:44:33 +02:00
|
|
|
margin-top: 10px; }
|
|
|
|
.cmb2-context-wrap.cmb2-context-wrap-form_top {
|
|
|
|
margin-right: 300px;
|
|
|
|
width: auto; }
|
|
|
|
.cmb2-context-wrap.cmb2-context-wrap-no-title .cmb2-metabox {
|
|
|
|
padding: 10px; }
|
|
|
|
.cmb2-context-wrap .cmb-th {
|
|
|
|
padding: 0 2% 0 0;
|
|
|
|
width: 18%; }
|
|
|
|
.cmb2-context-wrap .cmb-td {
|
|
|
|
width: 80%;
|
|
|
|
padding: 0; }
|
|
|
|
.cmb2-context-wrap .cmb-row {
|
|
|
|
margin-bottom: 10px; }
|
|
|
|
.cmb2-context-wrap .cmb-row:last-of-type {
|
|
|
|
margin-bottom: 0; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
/* one column on the post write/edit screen */
|
|
|
|
@media only screen and (max-width: 850px) {
|
|
|
|
.cmb2-context-wrap.cmb2-context-wrap-form_top {
|
2019-09-13 04:44:33 +02:00
|
|
|
margin-right: 0; } }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
/*--------------------------------------------------------------
|
|
|
|
* Misc.
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
#poststuff .cmb-repeatable-group h2 {
|
2019-09-13 04:44:33 +02:00
|
|
|
margin: 0; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.edit-tags-php .cmb2-metabox-title,
|
|
|
|
.profile-php .cmb2-metabox-title,
|
|
|
|
.user-edit-php .cmb2-metabox-title {
|
2019-09-13 04:44:33 +02:00
|
|
|
font-size: 1.4em; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb2-postbox .cmb-spinner, .cmb2-no-box-wrap .cmb-spinner {
|
|
|
|
float: left;
|
2019-09-13 04:44:33 +02:00
|
|
|
display: none; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-spinner {
|
2019-09-13 04:44:33 +02:00
|
|
|
display: none; }
|
|
|
|
.cmb-spinner.is-active {
|
|
|
|
display: block; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
* Collapsible UI
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
.cmb2-metabox .cmbhandle {
|
|
|
|
color: #757575;
|
|
|
|
float: right;
|
|
|
|
width: 27px;
|
|
|
|
height: 30px;
|
|
|
|
cursor: pointer;
|
|
|
|
right: -1em;
|
2019-09-13 04:44:33 +02:00
|
|
|
position: relative; }
|
|
|
|
.cmb2-metabox .cmbhandle:before {
|
|
|
|
content: '\f142';
|
|
|
|
right: 12px;
|
|
|
|
font: normal 20px/1 'dashicons';
|
|
|
|
speak: none;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 8px 10px;
|
|
|
|
top: 0;
|
|
|
|
position: relative;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
text-decoration: none !important; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb2-metabox .postbox.closed .cmbhandle:before {
|
2019-09-13 04:44:33 +02:00
|
|
|
content: '\f140'; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row {
|
|
|
|
-webkit-appearance: none !important;
|
|
|
|
background: none !important;
|
|
|
|
border: none !important;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: .5em;
|
|
|
|
line-height: 1em;
|
|
|
|
padding: 2px 6px 3px;
|
2019-09-13 04:44:33 +02:00
|
|
|
opacity: .5; }
|
|
|
|
.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]) {
|
|
|
|
cursor: pointer;
|
|
|
|
color: #a00;
|
|
|
|
opacity: 1; }
|
|
|
|
.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]):hover {
|
|
|
|
color: #f00; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* jQuery UI CSS Framework 1.8.16
|
|
|
|
*
|
|
|
|
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
|
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
|
|
* http://jquery.org/license
|
|
|
|
*
|
|
|
|
* http://docs.jquery.com/UI/Theming/API
|
|
|
|
*
|
|
|
|
* WordPress Styles adopted from "jQuery UI Datepicker CSS for WordPress"
|
|
|
|
* https://github.com/stuttter/wp-datepicker-styling
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
* html .cmb2-element.ui-helper-clearfix {
|
2019-09-13 04:44:33 +02:00
|
|
|
height: 1%; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb2-element.ui-datepicker, .cmb2-element .ui-datepicker {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
-webkit-border-radius: 0;
|
|
|
|
-moz-border-radius: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
background-color: #fff;
|
|
|
|
border: 1px solid #dfdfdf;
|
|
|
|
border-top: none;
|
|
|
|
-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075);
|
|
|
|
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075);
|
|
|
|
min-width: 17em;
|
2019-09-13 04:44:33 +02:00
|
|
|
/* Default Color Scheme */ }
|
|
|
|
.cmb2-element.ui-datepicker *, .cmb2-element .ui-datepicker * {
|
|
|
|
padding: 0;
|
|
|
|
font-family: "Open Sans", sans-serif;
|
|
|
|
-webkit-border-radius: 0;
|
|
|
|
-moz-border-radius: 0;
|
|
|
|
border-radius: 0; }
|
|
|
|
.cmb2-element.ui-datepicker table, .cmb2-element .ui-datepicker table {
|
|
|
|
font-size: 13px;
|
|
|
|
margin: 0;
|
|
|
|
border: none;
|
|
|
|
border-collapse: collapse; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-widget-header,
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-header, .cmb2-element .ui-datepicker .ui-widget-header,
|
|
|
|
.cmb2-element .ui-datepicker .ui-datepicker-header {
|
|
|
|
background-image: none;
|
|
|
|
border: none;
|
|
|
|
color: #fff;
|
|
|
|
font-weight: normal; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover, .cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover {
|
|
|
|
background: transparent;
|
|
|
|
border-color: transparent;
|
|
|
|
cursor: pointer; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-title, .cmb2-element .ui-datepicker .ui-datepicker-title {
|
|
|
|
margin: 0;
|
|
|
|
padding: 10px 0;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 14px;
|
|
|
|
text-align: center; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-title select, .cmb2-element .ui-datepicker .ui-datepicker-title select {
|
|
|
|
margin-top: -8px;
|
|
|
|
margin-bottom: -8px; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-prev,
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-next, .cmb2-element .ui-datepicker .ui-datepicker-prev,
|
|
|
|
.cmb2-element .ui-datepicker .ui-datepicker-next {
|
|
|
|
position: relative;
|
|
|
|
top: 8px;
|
|
|
|
height: 34px;
|
|
|
|
width: 34px; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-prev,
|
|
|
|
.cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-next, .cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-prev,
|
|
|
|
.cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-next {
|
|
|
|
border: none; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-prev,
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-prev-hover, .cmb2-element .ui-datepicker .ui-datepicker-prev,
|
|
|
|
.cmb2-element .ui-datepicker .ui-datepicker-prev-hover {
|
|
|
|
left: 0; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-next,
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-next-hover, .cmb2-element .ui-datepicker .ui-datepicker-next,
|
|
|
|
.cmb2-element .ui-datepicker .ui-datepicker-next-hover {
|
|
|
|
right: 0; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-next span,
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-prev span, .cmb2-element .ui-datepicker .ui-datepicker-next span,
|
|
|
|
.cmb2-element .ui-datepicker .ui-datepicker-prev span {
|
|
|
|
display: none; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-prev, .cmb2-element .ui-datepicker .ui-datepicker-prev {
|
|
|
|
float: left; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-next, .cmb2-element .ui-datepicker .ui-datepicker-next {
|
|
|
|
float: right; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-prev:before,
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-next:before, .cmb2-element .ui-datepicker .ui-datepicker-prev:before,
|
|
|
|
.cmb2-element .ui-datepicker .ui-datepicker-next:before {
|
|
|
|
font: normal 20px/34px 'dashicons';
|
|
|
|
padding-left: 7px;
|
|
|
|
color: #fff;
|
|
|
|
speak: none;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
width: 34px;
|
|
|
|
height: 34px; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-prev:before, .cmb2-element .ui-datepicker .ui-datepicker-prev:before {
|
|
|
|
content: '\f341'; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-next:before, .cmb2-element .ui-datepicker .ui-datepicker-next:before {
|
|
|
|
content: '\f345'; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-prev-hover:before,
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-next-hover:before, .cmb2-element .ui-datepicker .ui-datepicker-prev-hover:before,
|
|
|
|
.cmb2-element .ui-datepicker .ui-datepicker-next-hover:before {
|
|
|
|
opacity: 0.7; }
|
|
|
|
.cmb2-element.ui-datepicker select.ui-datepicker-month,
|
|
|
|
.cmb2-element.ui-datepicker select.ui-datepicker-year, .cmb2-element .ui-datepicker select.ui-datepicker-month,
|
|
|
|
.cmb2-element .ui-datepicker select.ui-datepicker-year {
|
|
|
|
width: 33%;
|
|
|
|
background: transparent;
|
|
|
|
border-color: transparent;
|
|
|
|
box-shadow: none;
|
|
|
|
color: #fff;
|
|
|
|
display: inline-block; }
|
|
|
|
.cmb2-element.ui-datepicker select.ui-datepicker-month option,
|
|
|
|
.cmb2-element.ui-datepicker select.ui-datepicker-year option, .cmb2-element .ui-datepicker select.ui-datepicker-month option,
|
|
|
|
.cmb2-element .ui-datepicker select.ui-datepicker-year option {
|
|
|
|
color: #333; }
|
|
|
|
.cmb2-element.ui-datepicker thead, .cmb2-element .ui-datepicker thead {
|
|
|
|
color: #fff;
|
|
|
|
font-weight: 600; }
|
|
|
|
.cmb2-element.ui-datepicker thead th, .cmb2-element .ui-datepicker thead th {
|
|
|
|
font-weight: normal; }
|
|
|
|
.cmb2-element.ui-datepicker th, .cmb2-element .ui-datepicker th {
|
|
|
|
padding: 10px; }
|
|
|
|
.cmb2-element.ui-datepicker td, .cmb2-element .ui-datepicker td {
|
|
|
|
padding: 0;
|
|
|
|
border: 1px solid #f4f4f4; }
|
|
|
|
.cmb2-element.ui-datepicker td.ui-datepicker-other-month, .cmb2-element .ui-datepicker td.ui-datepicker-other-month {
|
|
|
|
border: transparent; }
|
|
|
|
.cmb2-element.ui-datepicker td.ui-datepicker-week-end, .cmb2-element .ui-datepicker td.ui-datepicker-week-end {
|
|
|
|
background-color: #f4f4f4;
|
|
|
|
border: 1px solid #f4f4f4; }
|
|
|
|
.cmb2-element.ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today, .cmb2-element .ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today {
|
|
|
|
-webkit-box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.1);
|
|
|
|
-moz-box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.1);
|
|
|
|
box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.1); }
|
|
|
|
.cmb2-element.ui-datepicker td.ui-datepicker-today, .cmb2-element .ui-datepicker td.ui-datepicker-today {
|
|
|
|
background-color: #f0f0c0; }
|
|
|
|
.cmb2-element.ui-datepicker td.ui-datepicker-current-day, .cmb2-element .ui-datepicker td.ui-datepicker-current-day {
|
|
|
|
background: #bbdd88; }
|
|
|
|
.cmb2-element.ui-datepicker td .ui-state-default, .cmb2-element .ui-datepicker td .ui-state-default {
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
width: auto;
|
|
|
|
display: block;
|
|
|
|
padding: 5px 10px;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #444; }
|
|
|
|
.cmb2-element.ui-datepicker td.ui-state-disabled .ui-state-default, .cmb2-element .ui-datepicker td.ui-state-disabled .ui-state-default {
|
|
|
|
opacity: 0.5; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-widget-header,
|
|
|
|
.cmb2-element.ui-datepicker .ui-datepicker-header, .cmb2-element .ui-datepicker .ui-widget-header,
|
|
|
|
.cmb2-element .ui-datepicker .ui-datepicker-header {
|
|
|
|
background: #00a0d2; }
|
|
|
|
.cmb2-element.ui-datepicker thead, .cmb2-element .ui-datepicker thead {
|
|
|
|
background: #32373c; }
|
|
|
|
.cmb2-element.ui-datepicker td .ui-state-hover, .cmb2-element.ui-datepicker td .ui-state-active, .cmb2-element .ui-datepicker td .ui-state-hover, .cmb2-element .ui-datepicker td .ui-state-active {
|
|
|
|
background: #0073aa;
|
|
|
|
color: #fff; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-timepicker-div, .cmb2-element .ui-datepicker .ui-timepicker-div {
|
|
|
|
font-size: 14px; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-timepicker-div dl, .cmb2-element .ui-datepicker .ui-timepicker-div dl {
|
|
|
|
text-align: left;
|
|
|
|
padding: 0 .6em; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-timepicker-div dl dt, .cmb2-element .ui-datepicker .ui-timepicker-div dl dt {
|
|
|
|
float: left;
|
|
|
|
clear: left;
|
|
|
|
padding: 0 0 0 5px; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-timepicker-div dl dd, .cmb2-element .ui-datepicker .ui-timepicker-div dl dd {
|
|
|
|
margin: 0 10px 10px 40%; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-timepicker-div dl dd select, .cmb2-element .ui-datepicker .ui-timepicker-div dl dd select {
|
|
|
|
width: 100%; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane, .cmb2-element .ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane {
|
|
|
|
padding: .6em;
|
|
|
|
text-align: left; }
|
|
|
|
.cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-primary, .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-secondary, .cmb2-element .ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-primary, .cmb2-element .ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-secondary {
|
|
|
|
padding: 0 10px 1px;
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
border-radius: 3px;
|
|
|
|
margin: 0 .6em .4em .4em; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.admin-color-fresh .cmb2-element.ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-fresh .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-fresh .cmb2-element .ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-fresh .cmb2-element .ui-datepicker .ui-datepicker-header {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #00a0d2; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-fresh .cmb2-element.ui-datepicker thead, .admin-color-fresh .cmb2-element .ui-datepicker thead {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #32373c; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-fresh .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-fresh .cmb2-element .ui-datepicker td .ui-state-hover {
|
|
|
|
background: #0073aa;
|
2019-09-13 04:44:33 +02:00
|
|
|
color: #fff; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.admin-color-blue .cmb2-element.ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-blue .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-blue .cmb2-element .ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-blue .cmb2-element .ui-datepicker .ui-datepicker-header {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #52accc; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-blue .cmb2-element.ui-datepicker thead, .admin-color-blue .cmb2-element .ui-datepicker thead {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #4796b3; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-blue .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-blue .cmb2-element.ui-datepicker td .ui-state-active, .admin-color-blue .cmb2-element .ui-datepicker td .ui-state-hover, .admin-color-blue .cmb2-element .ui-datepicker td .ui-state-active {
|
|
|
|
background: #096484;
|
2019-09-13 04:44:33 +02:00
|
|
|
color: #fff; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-blue .cmb2-element.ui-datepicker td.ui-datepicker-today, .admin-color-blue .cmb2-element .ui-datepicker td.ui-datepicker-today {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #eee; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.admin-color-coffee .cmb2-element.ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-coffee .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-coffee .cmb2-element .ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-coffee .cmb2-element .ui-datepicker .ui-datepicker-header {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #59524c; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-coffee .cmb2-element.ui-datepicker thead, .admin-color-coffee .cmb2-element .ui-datepicker thead {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #46403c; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-coffee .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-coffee .cmb2-element .ui-datepicker td .ui-state-hover {
|
|
|
|
background: #c7a589;
|
2019-09-13 04:44:33 +02:00
|
|
|
color: #fff; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-datepicker-header {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #523f6d; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-ectoplasm .cmb2-element.ui-datepicker thead, .admin-color-ectoplasm .cmb2-element .ui-datepicker thead {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #413256; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-ectoplasm .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-ectoplasm .cmb2-element .ui-datepicker td .ui-state-hover {
|
|
|
|
background: #a3b745;
|
2019-09-13 04:44:33 +02:00
|
|
|
color: #fff; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.admin-color-midnight .cmb2-element.ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-midnight .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-midnight .cmb2-element .ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-midnight .cmb2-element .ui-datepicker .ui-datepicker-header {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #363b3f; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-midnight .cmb2-element.ui-datepicker thead, .admin-color-midnight .cmb2-element .ui-datepicker thead {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #26292c; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-midnight .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-midnight .cmb2-element .ui-datepicker td .ui-state-hover {
|
|
|
|
background: #e14d43;
|
2019-09-13 04:44:33 +02:00
|
|
|
color: #fff; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.admin-color-ocean .cmb2-element.ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-ocean .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-ocean .cmb2-element .ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-ocean .cmb2-element .ui-datepicker .ui-datepicker-header {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #738e96; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-ocean .cmb2-element.ui-datepicker thead, .admin-color-ocean .cmb2-element .ui-datepicker thead {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #627c83; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-ocean .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-ocean .cmb2-element .ui-datepicker td .ui-state-hover {
|
|
|
|
background: #9ebaa0;
|
2019-09-13 04:44:33 +02:00
|
|
|
color: #fff; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.admin-color-sunrise .cmb2-element.ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header,
|
|
|
|
.admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover, .admin-color-sunrise .cmb2-element .ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header,
|
|
|
|
.admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #cf4944; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-sunrise .cmb2-element.ui-datepicker th, .admin-color-sunrise .cmb2-element .ui-datepicker th {
|
|
|
|
border-color: #be3631;
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #be3631; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-sunrise .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-sunrise .cmb2-element .ui-datepicker td .ui-state-hover {
|
|
|
|
background: #dd823b;
|
2019-09-13 04:44:33 +02:00
|
|
|
color: #fff; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.admin-color-light .cmb2-element.ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-light .cmb2-element .ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-header {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #e5e5e5; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-month,
|
|
|
|
.admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-year, .admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-month,
|
|
|
|
.admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-year {
|
2019-09-13 04:44:33 +02:00
|
|
|
color: #555; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-light .cmb2-element.ui-datepicker thead, .admin-color-light .cmb2-element .ui-datepicker thead {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #888; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-title,
|
|
|
|
.admin-color-light .cmb2-element.ui-datepicker td .ui-state-default,
|
|
|
|
.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-prev:before,
|
|
|
|
.admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-next:before, .admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-title,
|
|
|
|
.admin-color-light .cmb2-element .ui-datepicker td .ui-state-default,
|
|
|
|
.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-prev:before,
|
|
|
|
.admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-next:before {
|
2019-09-13 04:44:33 +02:00
|
|
|
color: #555; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-light .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-light .cmb2-element.ui-datepicker td .ui-state-active, .admin-color-light .cmb2-element .ui-datepicker td .ui-state-hover, .admin-color-light .cmb2-element .ui-datepicker td .ui-state-active {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #ccc; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-light .cmb2-element.ui-datepicker td.ui-datepicker-today, .admin-color-light .cmb2-element .ui-datepicker td.ui-datepicker-today {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #eee; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-datepicker-header {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #56b274; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-bbp-evergreen .cmb2-element.ui-datepicker thead, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker thead {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #36533f; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-bbp-evergreen .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker td .ui-state-hover {
|
|
|
|
background: #446950;
|
2019-09-13 04:44:33 +02:00
|
|
|
color: #fff; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-widget-header,
|
|
|
|
.admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-datepicker-header {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #4ca26a; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-bbp-mint .cmb2-element.ui-datepicker thead, .admin-color-bbp-mint .cmb2-element .ui-datepicker thead {
|
2019-09-13 04:44:33 +02:00
|
|
|
background: #4f6d59; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.admin-color-bbp-mint .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-bbp-mint .cmb2-element .ui-datepicker td .ui-state-hover {
|
|
|
|
background: #5fb37c;
|
2019-09-13 04:44:33 +02:00
|
|
|
color: #fff; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* CMB2 Frontend
|
|
|
|
*/
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
* CMB2 Frontend
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
.closed .inside {
|
2019-09-13 04:44:33 +02:00
|
|
|
display: none; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-repeatable-grouping {
|
2019-09-13 04:44:33 +02:00
|
|
|
position: relative; }
|
|
|
|
.cmb-repeatable-grouping .cmb-group-title {
|
|
|
|
margin-left: -1em;
|
|
|
|
margin-right: -1em;
|
|
|
|
min-height: 1.5em; }
|
|
|
|
.cmb-repeatable-grouping h3 {
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 8px 12px;
|
|
|
|
margin: 0;
|
|
|
|
line-height: 1.4; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-repeatable-group.repeatable .cmb-group-title {
|
2019-09-13 04:44:33 +02:00
|
|
|
padding-left: 2.2em; }
|
|
|
|
|
2019-09-10 06:27:33 +02:00
|
|
|
.cmb-repeatable-group.non-repeatable .cmb-group-title {
|
2019-09-13 04:44:33 +02:00
|
|
|
padding-left: 12px; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-type-group .cmb-row .cmbhandle {
|
|
|
|
right: 0;
|
2019-09-13 04:44:33 +02:00
|
|
|
position: absolute; }
|
2019-09-10 06:27:33 +02:00
|
|
|
|
|
|
|
.cmb-spinner {
|
|
|
|
background: url(images/spinner.gif) no-repeat;
|
|
|
|
-webkit-background-size: 20px 20px;
|
|
|
|
background-size: 20px 20px;
|
|
|
|
display: none;
|
|
|
|
float: right;
|
|
|
|
vertical-align: middle;
|
|
|
|
opacity: 0.7;
|
|
|
|
filter: alpha(opacity=70);
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2019-09-13 04:44:33 +02:00
|
|
|
margin: 4px 10px 0; }
|