initial commit
This commit is contained in:
@ -0,0 +1,316 @@
|
||||
/*--------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Dark mode
|
||||
*
|
||||
* WordPress plugin: https://en-au.wordpress.org/plugins/dark-mode/
|
||||
* Github Documentation: https://github.com/danieltj27/Dark-Mode/wiki/Help:-Plugin-Compatibility-Guide
|
||||
*
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Global
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.acf-box {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
.acf-box .title,
|
||||
.acf-box .footer {
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-box h2 {
|
||||
color: #bbc8d4;
|
||||
}
|
||||
.acf-box table, .acf-box tbody, .acf-box tr {
|
||||
background: transparent !important;
|
||||
}
|
||||
|
||||
.acf-thead {
|
||||
color: #bbc8d4;
|
||||
border-color: #191f25;
|
||||
}
|
||||
|
||||
.acf-tfoot {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-table.-clear,
|
||||
.acf-table.-clear tr {
|
||||
background: transparent !important;
|
||||
}
|
||||
|
||||
.acf-loading-overlay {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Fields
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.acf-fields > .acf-field {
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-fields.-left > .acf-field:before {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-fields.-border {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
|
||||
.acf-field[data-width] + .acf-field[data-width] {
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-input-prepend,
|
||||
.acf-input-append {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
|
||||
.acf-fields > .acf-tab-wrap {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
.acf-fields > .acf-tab-wrap .acf-tab-group {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-fields > .acf-tab-wrap .acf-tab-group li a {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-fields > .acf-tab-wrap .acf-tab-group li a:hover {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
.acf-fields > .acf-tab-wrap .acf-tab-group li.active a {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
|
||||
.acf-fields.-sidebar:before {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-fields.-sidebar.-left:before {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
background: #23282d;
|
||||
}
|
||||
.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group li a {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group li.active a {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-file-uploader .show-if-value {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
.acf-file-uploader .show-if-value .file-icon {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-oembed {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-oembed .title {
|
||||
background-color: #50626f;
|
||||
border-color: #191f25;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.acf-gallery {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-gallery .acf-gallery-main {
|
||||
background: #23282d;
|
||||
}
|
||||
.acf-gallery .acf-gallery-attachment .margin {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side .acf-gallery-side-info {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-gallery .acf-gallery-toolbar {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-button-group label:not(.selected) {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-switch:not(.-on) {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-switch:not(.-on) .acf-switch-slider {
|
||||
background-color: #50626f;
|
||||
border-color: #191f25;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.acf-link .link-wrap {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-relationship .filters {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
.acf-relationship .selection {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-relationship .selection .choices,
|
||||
.acf-relationship .selection .choices-list,
|
||||
.acf-relationship .selection .values {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-taxonomy-field .categorychecklist-holder {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
.acf-google-map {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-google-map .title {
|
||||
background-color: #50626f;
|
||||
border-color: #191f25;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.acf-accordion {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
|
||||
.acf-field.acf-accordion .acf-accordion-content > .acf-fields {
|
||||
border-color: #191f25;
|
||||
}
|
||||
|
||||
.acf-flexible-content .layout {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
.acf-flexible-content .layout .acf-fc-layout-handle {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
.acf-flexible-content .layout .acf-fc-layout-handle .acf-fc-layout-order {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
|
||||
#wpbody .acf-table {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
#wpbody .acf-table > tbody > tr,
|
||||
#wpbody .acf-table > thead > tr {
|
||||
background: transparent;
|
||||
}
|
||||
#wpbody .acf-table > tbody > tr > td,
|
||||
#wpbody .acf-table > tbody > tr > th,
|
||||
#wpbody .acf-table > thead > tr > td,
|
||||
#wpbody .acf-table > thead > tr > th {
|
||||
border-color: #191f25;
|
||||
}
|
||||
|
||||
.acf-field select optgroup, .acf-field select optgroup:nth-child(2n) {
|
||||
background: #50626f;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Field Group
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
#acf-field-group-fields .acf-field-list-wrap {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-list .no-fields-message {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-object {
|
||||
background-color: #32373c;
|
||||
border-color: #191f25;
|
||||
color: #bbc8d4;
|
||||
border-color: #23282d;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-object table, #acf-field-group-fields .acf-field-object tbody, #acf-field-group-fields .acf-field-object tr, #acf-field-group-fields .acf-field-object td, #acf-field-group-fields .acf-field-object th {
|
||||
background: transparent;
|
||||
border-color: #23282d;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-object .acf-field .acf-label {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-object.ui-sortable-helper {
|
||||
border-color: #191f25;
|
||||
box-shadow: none;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-object.ui-sortable-placeholder {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
box-shadow: none;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-object + .acf-field-object-tab::before,
|
||||
#acf-field-group-fields .acf-field-object + .acf-field-object-accordion::before {
|
||||
background-color: #2d3136;
|
||||
border-color: #23282d;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Admin: Tools
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.acf-meta-box-wrap .acf-fields {
|
||||
background-color: #50626f;
|
||||
border-color: #191f25;
|
||||
color: #fff;
|
||||
background: transparent;
|
||||
}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,481 @@
|
||||
/*--------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Vars
|
||||
*
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
/* colors */
|
||||
/* acf-field */
|
||||
/* responsive */
|
||||
/*--------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Mixins
|
||||
*
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
/*--------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Field Group
|
||||
*
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
#acf-field-group-fields > .inside,
|
||||
#acf-field-group-locations > .inside,
|
||||
#acf-field-group-options > .inside {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.postbox .handle-order-higher,
|
||||
.postbox .handle-order-lower {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Postbox: Publish
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
#minor-publishing-actions,
|
||||
#misc-publishing-actions #visibility,
|
||||
#misc-publishing-actions .edit-timestamp {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#minor-publishing {
|
||||
border-bottom: 0 none;
|
||||
}
|
||||
|
||||
#misc-pub-section {
|
||||
border-bottom: 0 none;
|
||||
}
|
||||
|
||||
#misc-publishing-actions .misc-pub-section {
|
||||
border-bottom-color: #F5F5F5;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Postbox: Fields
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
#acf-field-group-fields {
|
||||
border: 0 none;
|
||||
box-shadow: none;
|
||||
/* links */
|
||||
/* table header */
|
||||
/* show keys */
|
||||
/* fields */
|
||||
}
|
||||
#acf-field-group-fields > .postbox-header,
|
||||
#acf-field-group-fields > .handlediv,
|
||||
#acf-field-group-fields > .hndle {
|
||||
display: none;
|
||||
}
|
||||
#acf-field-group-fields a {
|
||||
text-decoration: none;
|
||||
}
|
||||
#acf-field-group-fields a:active, #acf-field-group-fields a:focus {
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
#acf-field-group-fields .li-field-order {
|
||||
width: 20%;
|
||||
}
|
||||
#acf-field-group-fields .li-field-label {
|
||||
width: 30%;
|
||||
}
|
||||
#acf-field-group-fields .li-field-name {
|
||||
width: 25%;
|
||||
}
|
||||
#acf-field-group-fields .li-field-type {
|
||||
width: 25%;
|
||||
}
|
||||
#acf-field-group-fields .li-field-key {
|
||||
display: none;
|
||||
}
|
||||
#acf-field-group-fields.show-field-keys .li-field-label,
|
||||
#acf-field-group-fields.show-field-keys .li-field-name,
|
||||
#acf-field-group-fields.show-field-keys .li-field-type,
|
||||
#acf-field-group-fields.show-field-keys .li-field-key {
|
||||
width: 20%;
|
||||
}
|
||||
#acf-field-group-fields.show-field-keys .li-field-key {
|
||||
display: block;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-list-wrap {
|
||||
border: #ccd0d4 solid 1px;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-list {
|
||||
background: #f5f5f5;
|
||||
margin-top: -1px;
|
||||
/* no fields */
|
||||
/* empty */
|
||||
}
|
||||
#acf-field-group-fields .acf-field-list .no-fields-message {
|
||||
padding: 15px 15px;
|
||||
background: #fff;
|
||||
display: none;
|
||||
}
|
||||
#acf-field-group-fields .acf-field-list.-empty .no-fields-message {
|
||||
display: block;
|
||||
}
|
||||
.acf-admin-3-8 #acf-field-group-fields .acf-field-list-wrap {
|
||||
border-color: #dfdfdf;
|
||||
}
|
||||
|
||||
/* field object */
|
||||
.acf-field-object {
|
||||
border-top: #eeeeee solid 1px;
|
||||
background: #fff;
|
||||
/* sortable */
|
||||
/* meta */
|
||||
/* handle */
|
||||
/* open */
|
||||
/*
|
||||
// debug
|
||||
&[data-save="meta"] {
|
||||
> .handle {
|
||||
border-left: #ffb700 solid 5px !important;
|
||||
}
|
||||
}
|
||||
|
||||
&[data-save="settings"] {
|
||||
> .handle {
|
||||
border-left: #0ec563 solid 5px !important;
|
||||
}
|
||||
}
|
||||
*/
|
||||
/* hover */
|
||||
/* settings */
|
||||
/* conditional logic */
|
||||
}
|
||||
.acf-field-object.ui-sortable-helper {
|
||||
border-top-color: #fff;
|
||||
box-shadow: 0 0 0 1px #DFDFDF, 0 1px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.acf-field-object.ui-sortable-placeholder {
|
||||
box-shadow: 0 -1px 0 0 #DFDFDF;
|
||||
visibility: visible !important;
|
||||
background: #F9F9F9;
|
||||
border-top-color: transparent;
|
||||
min-height: 54px;
|
||||
}
|
||||
.acf-field-object.ui-sortable-placeholder:after, .acf-field-object.ui-sortable-placeholder:before {
|
||||
visibility: hidden;
|
||||
}
|
||||
.acf-field-object > .meta {
|
||||
display: none;
|
||||
}
|
||||
.acf-field-object > .handle a {
|
||||
-webkit-transition: none;
|
||||
-moz-transition: none;
|
||||
-o-transition: none;
|
||||
transition: none;
|
||||
}
|
||||
.acf-field-object > .handle li {
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.acf-field-object > .handle .acf-icon {
|
||||
margin: 1px 0 0;
|
||||
cursor: move;
|
||||
background: transparent;
|
||||
float: left;
|
||||
height: 28px;
|
||||
line-height: 26px;
|
||||
width: 28px;
|
||||
font-size: 13px;
|
||||
color: #444;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
.acf-field-object > .handle strong {
|
||||
display: block;
|
||||
padding-bottom: 6px;
|
||||
font-size: 14px;
|
||||
line-height: 14px;
|
||||
min-height: 14px;
|
||||
}
|
||||
.acf-field-object > .handle .row-options {
|
||||
visibility: hidden;
|
||||
}
|
||||
.acf-field-object > .handle .row-options a {
|
||||
margin-right: 4px;
|
||||
}
|
||||
.acf-field-object > .handle .row-options a.delete-field {
|
||||
color: #a00;
|
||||
}
|
||||
.acf-field-object > .handle .row-options a.delete-field:hover {
|
||||
color: #f00;
|
||||
}
|
||||
.acf-field-object.open + .acf-field-object {
|
||||
border-top-color: #E1E1E1;
|
||||
}
|
||||
.acf-field-object.open > .handle {
|
||||
background: #2a9bd9;
|
||||
border: #2696d3 solid 1px;
|
||||
text-shadow: #268FBB 0 1px 0;
|
||||
color: #fff;
|
||||
position: relative;
|
||||
margin: -1px -1px 0 -1px;
|
||||
}
|
||||
.acf-field-object.open > .handle a {
|
||||
color: #fff !important;
|
||||
}
|
||||
.acf-field-object.open > .handle a:hover {
|
||||
text-decoration: underline !important;
|
||||
}
|
||||
.acf-field-object.open > .handle .acf-icon {
|
||||
border-color: #fff;
|
||||
color: #fff;
|
||||
}
|
||||
.acf-field-object.open > .handle .acf-required {
|
||||
color: #fff;
|
||||
}
|
||||
.acf-field-object:hover > .handle .row-options, .acf-field-object.-hover > .handle .row-options {
|
||||
visibility: visible;
|
||||
}
|
||||
.acf-field-object > .settings {
|
||||
display: none;
|
||||
width: 100%;
|
||||
}
|
||||
.acf-field-object > .settings > .acf-table {
|
||||
border: none;
|
||||
}
|
||||
.acf-field-object .rule-groups {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Postbox: Locations
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.rule-groups h4 {
|
||||
margin: 3px 0;
|
||||
}
|
||||
.rule-groups .rule-group {
|
||||
margin: 0 0 5px;
|
||||
}
|
||||
.rule-groups .rule-group h4 {
|
||||
margin: 0 0 3px;
|
||||
}
|
||||
.rule-groups .rule-group td.param {
|
||||
width: 35%;
|
||||
}
|
||||
.rule-groups .rule-group td.operator {
|
||||
width: 20%;
|
||||
}
|
||||
.rule-groups .rule-group td.add {
|
||||
width: 40px;
|
||||
}
|
||||
.rule-groups .rule-group td.remove {
|
||||
width: 28px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.rule-groups .rule-group td.remove a {
|
||||
visibility: hidden;
|
||||
}
|
||||
.rule-groups .rule-group tr:hover td.remove a {
|
||||
visibility: visible;
|
||||
}
|
||||
.rule-groups .rule-group select:empty {
|
||||
background: #f8f8f8;
|
||||
}
|
||||
.rule-groups:not(.rule-groups-multiple) .rule-group:first-child tr:first-child td.remove a {
|
||||
/* Don't allow user to delete the only rule group */
|
||||
visibility: hidden !important;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Options
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
#acf-field-group-options tr[data-name=hide_on_screen] li {
|
||||
float: left;
|
||||
width: 33%;
|
||||
}
|
||||
|
||||
@media (max-width: 1100px) {
|
||||
#acf-field-group-options tr[data-name=hide_on_screen] li {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Conditional Logic
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
table.conditional-logic-rules {
|
||||
background: transparent;
|
||||
border: 0 none;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
table.conditional-logic-rules tbody td {
|
||||
background: transparent;
|
||||
border: 0 none !important;
|
||||
padding: 5px 2px !important;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Field: Tab
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.acf-field-object-tab .acf-field-setting-name, .acf-field-object-accordion .acf-field-setting-name,
|
||||
.acf-field-object-tab .acf-field-setting-instructions,
|
||||
.acf-field-object-accordion .acf-field-setting-instructions,
|
||||
.acf-field-object-tab .acf-field-setting-required,
|
||||
.acf-field-object-accordion .acf-field-setting-required,
|
||||
.acf-field-object-tab .acf-field-setting-warning,
|
||||
.acf-field-object-accordion .acf-field-setting-warning,
|
||||
.acf-field-object-tab .acf-field-setting-wrapper,
|
||||
.acf-field-object-accordion .acf-field-setting-wrapper {
|
||||
display: none;
|
||||
}
|
||||
.acf-field-object-tab .li-field-name, .acf-field-object-accordion .li-field-name {
|
||||
visibility: hidden;
|
||||
}
|
||||
.acf-field-object + .acf-field-object-tab:before, .acf-field-object + .acf-field-object-accordion:before {
|
||||
display: block;
|
||||
content: "";
|
||||
height: 5px;
|
||||
width: 100%;
|
||||
background: #f5f5f5;
|
||||
border-top: #e1e1e1 solid 1px;
|
||||
border-bottom: #e1e1e1 solid 1px;
|
||||
margin-top: -1px;
|
||||
}
|
||||
.acf-admin-3-8 .acf-field-object + .acf-field-object-tab:before, .acf-admin-3-8 .acf-field-object + .acf-field-object-accordion:before {
|
||||
border-color: #E5E5E5;
|
||||
}
|
||||
.acf-field-object-tab p:first-child, .acf-field-object-accordion p:first-child {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Field: Accordion
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.acf-field-object-accordion .acf-field-setting-instructions {
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Field: Message
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.acf-field-object-message tr[data-name=name],
|
||||
.acf-field-object-message tr[data-name=instructions],
|
||||
.acf-field-object-message tr[data-name=required] {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.acf-field-object-message .li-field-name {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.acf-field-object-message textarea {
|
||||
height: 175px !important;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Field: Separator
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.acf-field-object-separator tr[data-name=name],
|
||||
.acf-field-object-separator tr[data-name=instructions],
|
||||
.acf-field-object-separator tr[data-name=required] {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Field: Date Picker
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.acf-field-object-date-picker .acf-radio-list li,
|
||||
.acf-field-object-time-picker .acf-radio-list li,
|
||||
.acf-field-object-date-time-picker .acf-radio-list li {
|
||||
line-height: 25px;
|
||||
}
|
||||
.acf-field-object-date-picker .acf-radio-list span,
|
||||
.acf-field-object-time-picker .acf-radio-list span,
|
||||
.acf-field-object-date-time-picker .acf-radio-list span {
|
||||
display: inline-block;
|
||||
min-width: 10em;
|
||||
}
|
||||
.acf-field-object-date-picker .acf-radio-list input[type=text],
|
||||
.acf-field-object-time-picker .acf-radio-list input[type=text],
|
||||
.acf-field-object-date-time-picker .acf-radio-list input[type=text] {
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.acf-field-object-date-time-picker .acf-radio-list span {
|
||||
min-width: 15em;
|
||||
}
|
||||
.acf-field-object-date-time-picker .acf-radio-list input[type=text] {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Slug
|
||||
*
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
#slugdiv .inside {
|
||||
padding: 12px;
|
||||
margin: 0;
|
||||
}
|
||||
#slugdiv input[type=text] {
|
||||
width: 100%;
|
||||
height: 28px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------------------------------------
|
||||
*
|
||||
* RTL
|
||||
*
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
html[dir=rtl] .acf-field-object.open > .handle {
|
||||
margin: -1px -1px 0;
|
||||
}
|
||||
|
||||
html[dir=rtl] .acf-field-object.open > .handle .acf-icon {
|
||||
float: right;
|
||||
}
|
||||
|
||||
html[dir=rtl] .acf-field-object.open > .handle .li-field-order {
|
||||
padding-left: 0 !important;
|
||||
padding-right: 15px !important;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Device
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
@media only screen and (max-width: 850px) {
|
||||
tr.acf-field,
|
||||
td.acf-label,
|
||||
td.acf-input {
|
||||
display: block !important;
|
||||
width: auto !important;
|
||||
border: 0 none !important;
|
||||
}
|
||||
|
||||
tr.acf-field {
|
||||
border-top: #ededed solid 1px !important;
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
td.acf-label {
|
||||
background: transparent !important;
|
||||
padding-bottom: 0 !important;
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@ -0,0 +1,67 @@
|
||||
/*--------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Vars
|
||||
*
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
/* colors */
|
||||
/* acf-field */
|
||||
/* responsive */
|
||||
/*--------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Mixins
|
||||
*
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Flexible Content
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.acf-field-setting-fc_layout .acf-fc-meta {
|
||||
margin: 0 0 10px;
|
||||
padding: 0;
|
||||
}
|
||||
.acf-field-setting-fc_layout .acf-fc-meta li {
|
||||
margin: 0 0 10px;
|
||||
padding: 0;
|
||||
}
|
||||
.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-display,
|
||||
.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-min {
|
||||
float: left;
|
||||
width: 33%;
|
||||
padding-right: 10px;
|
||||
}
|
||||
.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-label .acf-input-prepend,
|
||||
.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-name .acf-input-prepend,
|
||||
.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-display .acf-input-prepend {
|
||||
min-width: 60px;
|
||||
}
|
||||
.acf-field-setting-fc_layout .acf-fl-actions {
|
||||
visibility: hidden;
|
||||
}
|
||||
.acf-field-setting-fc_layout .acf-fl-actions .reorder-layout {
|
||||
cursor: move;
|
||||
}
|
||||
.acf-field-setting-fc_layout .acf-fl-actions a {
|
||||
padding: 1px 0;
|
||||
font-size: 13px;
|
||||
line-height: 20px;
|
||||
}
|
||||
.acf-field-setting-fc_layout:hover .acf-fl-actions, .acf-field-setting-fc_layout.-hover .acf-fl-actions {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Clone
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.acf-field-object-clone {
|
||||
/* group */
|
||||
/* seamless */
|
||||
}
|
||||
.acf-field-object-clone[data-display=seamless] .acf-field-setting-instructions,
|
||||
.acf-field-object-clone[data-display=seamless] .acf-field-setting-layout,
|
||||
.acf-field-object-clone[data-display=seamless] .acf-field-setting-wrapper,
|
||||
.acf-field-object-clone[data-display=seamless] .acf-field-setting-conditional_logic {
|
||||
display: none;
|
||||
}
|
@ -0,0 +1 @@
|
||||
.acf-field-setting-fc_layout .acf-fc-meta{margin:0 0 10px;padding:0}.acf-field-setting-fc_layout .acf-fc-meta li{margin:0 0 10px;padding:0}.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-display,.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-min{float:left;width:33%;padding-right:10px}.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-display .acf-input-prepend,.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-label .acf-input-prepend,.acf-field-setting-fc_layout .acf-fc-meta .acf-fc-meta-name .acf-input-prepend{min-width:60px}.acf-field-setting-fc_layout .acf-fl-actions{visibility:hidden}.acf-field-setting-fc_layout .acf-fl-actions .reorder-layout{cursor:move}.acf-field-setting-fc_layout .acf-fl-actions a{padding:1px 0;font-size:13px;line-height:20px}.acf-field-setting-fc_layout.-hover .acf-fl-actions,.acf-field-setting-fc_layout:hover .acf-fl-actions{visibility:visible}.acf-field-object-clone[data-display=seamless] .acf-field-setting-conditional_logic,.acf-field-object-clone[data-display=seamless] .acf-field-setting-instructions,.acf-field-object-clone[data-display=seamless] .acf-field-setting-layout,.acf-field-object-clone[data-display=seamless] .acf-field-setting-wrapper{display:none}
|
@ -0,0 +1,683 @@
|
||||
/*--------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Vars
|
||||
*
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
/* colors */
|
||||
/* acf-field */
|
||||
/* responsive */
|
||||
/*--------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Mixins
|
||||
*
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Repeater
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.acf-repeater {
|
||||
/* table */
|
||||
/* row handle (add/remove) */
|
||||
/* add in spacer to th (force correct width) */
|
||||
/* row */
|
||||
/* sortable */
|
||||
/* layouts */
|
||||
/*
|
||||
&.-row > table > tbody > tr:before,
|
||||
&.-block > table > tbody > tr:before {
|
||||
content: "";
|
||||
display: table-row;
|
||||
height: 2px;
|
||||
background: #f00;
|
||||
}
|
||||
*/
|
||||
/* empty */
|
||||
/* collapsed */
|
||||
/* collapsed (block layout) */
|
||||
/* collapsed (table layout) */
|
||||
}
|
||||
.acf-repeater > table {
|
||||
margin: 0 0 8px;
|
||||
background: #F9F9F9;
|
||||
}
|
||||
.acf-repeater .acf-row-handle {
|
||||
width: 16px;
|
||||
text-align: center !important;
|
||||
vertical-align: middle !important;
|
||||
position: relative;
|
||||
/* icons */
|
||||
/* .order */
|
||||
/* remove */
|
||||
}
|
||||
.acf-repeater .acf-row-handle .acf-icon {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
margin: -8px 0 0 -2px;
|
||||
/* minus icon */
|
||||
}
|
||||
.acf-repeater .acf-row-handle .acf-icon.-minus {
|
||||
top: 50%;
|
||||
/* ie fix */
|
||||
}
|
||||
body.browser-msie .acf-repeater .acf-row-handle .acf-icon.-minus {
|
||||
top: 25px;
|
||||
}
|
||||
.acf-repeater .acf-row-handle.order {
|
||||
background: #f4f4f4;
|
||||
cursor: move;
|
||||
color: #aaa;
|
||||
text-shadow: #fff 0 1px 0;
|
||||
}
|
||||
.acf-repeater .acf-row-handle.order:hover {
|
||||
color: #666;
|
||||
}
|
||||
.acf-repeater .acf-row-handle.order + td {
|
||||
border-left-color: #DFDFDF;
|
||||
}
|
||||
.acf-repeater .acf-row-handle.remove {
|
||||
background: #F9F9F9;
|
||||
border-left-color: #DFDFDF;
|
||||
}
|
||||
.acf-repeater th.acf-row-handle:before {
|
||||
content: "";
|
||||
width: 16px;
|
||||
display: block;
|
||||
height: 1px;
|
||||
}
|
||||
.acf-repeater .acf-row {
|
||||
/* hide clone */
|
||||
/* hover */
|
||||
}
|
||||
.acf-repeater .acf-row.acf-clone {
|
||||
display: none !important;
|
||||
}
|
||||
.acf-repeater .acf-row:hover, .acf-repeater .acf-row.-hover {
|
||||
/* icons */
|
||||
}
|
||||
.acf-repeater .acf-row:hover > .acf-row-handle .acf-icon, .acf-repeater .acf-row.-hover > .acf-row-handle .acf-icon {
|
||||
display: block;
|
||||
}
|
||||
.acf-repeater .acf-row:hover > .acf-row-handle .acf-icon.show-on-shift, .acf-repeater .acf-row.-hover > .acf-row-handle .acf-icon.show-on-shift {
|
||||
display: none;
|
||||
}
|
||||
body.acf-keydown-shift .acf-repeater .acf-row:hover > .acf-row-handle .acf-icon.show-on-shift, body.acf-keydown-shift .acf-repeater .acf-row.-hover > .acf-row-handle .acf-icon.show-on-shift {
|
||||
display: block;
|
||||
}
|
||||
body.acf-keydown-shift .acf-repeater .acf-row:hover > .acf-row-handle .acf-icon.hide-on-shift, body.acf-keydown-shift .acf-repeater .acf-row.-hover > .acf-row-handle .acf-icon.hide-on-shift {
|
||||
display: none;
|
||||
}
|
||||
.acf-repeater > table > tbody > tr.ui-sortable-helper {
|
||||
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
.acf-repeater > table > tbody > tr.ui-sortable-placeholder {
|
||||
visibility: visible !important;
|
||||
}
|
||||
.acf-repeater > table > tbody > tr.ui-sortable-placeholder td {
|
||||
background: #F9F9F9;
|
||||
}
|
||||
.acf-repeater.-row > table > tbody > tr > td, .acf-repeater.-block > table > tbody > tr > td {
|
||||
border-top-color: #E1E1E1;
|
||||
}
|
||||
.acf-repeater.-empty > table > thead > tr > th {
|
||||
border-bottom: 0 none;
|
||||
}
|
||||
.acf-repeater.-empty.-row > table, .acf-repeater.-empty.-block > table {
|
||||
display: none;
|
||||
}
|
||||
.acf-repeater .acf-row.-collapsed > .acf-field {
|
||||
display: none !important;
|
||||
}
|
||||
.acf-repeater .acf-row.-collapsed > td.acf-field.-collapsed-target {
|
||||
display: table-cell !important;
|
||||
}
|
||||
.acf-repeater .acf-row.-collapsed > .acf-fields > * {
|
||||
display: none !important;
|
||||
}
|
||||
.acf-repeater .acf-row.-collapsed > .acf-fields > .acf-field.-collapsed-target {
|
||||
display: block !important;
|
||||
}
|
||||
.acf-repeater .acf-row.-collapsed > .acf-fields > .acf-field.-collapsed-target[data-width] {
|
||||
float: none !important;
|
||||
width: auto !important;
|
||||
}
|
||||
.acf-repeater.-table .acf-row.-collapsed .acf-field.-collapsed-target {
|
||||
border-left-color: #dfdfdf;
|
||||
}
|
||||
.acf-repeater.-max .acf-icon[data-event=add-row] {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Flexible Content
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.acf-flexible-content {
|
||||
position: relative;
|
||||
}
|
||||
.acf-flexible-content > .clones {
|
||||
display: none;
|
||||
}
|
||||
.acf-flexible-content > .values {
|
||||
margin: 0 0 8px;
|
||||
}
|
||||
.acf-flexible-content > .values > .ui-sortable-placeholder {
|
||||
visibility: visible !important;
|
||||
border: 1px dashed #b4b9be;
|
||||
box-shadow: none;
|
||||
background: transparent;
|
||||
}
|
||||
.acf-flexible-content .layout {
|
||||
position: relative;
|
||||
margin: 20px 0 0;
|
||||
background: #fff;
|
||||
border: 1px solid #ccd0d4;
|
||||
}
|
||||
.acf-flexible-content .layout:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
.acf-flexible-content .layout .acf-fc-layout-handle {
|
||||
display: block;
|
||||
position: relative;
|
||||
padding: 8px 10px;
|
||||
cursor: move;
|
||||
border-bottom: #ccd0d4 solid 1px;
|
||||
color: #444;
|
||||
font-size: 14px;
|
||||
line-height: 1.4em;
|
||||
}
|
||||
.acf-flexible-content .layout .acf-fc-layout-order {
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border-radius: 10px;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
line-height: 20px;
|
||||
margin: 0 2px 0 0;
|
||||
background: #F1F1F1;
|
||||
font-size: 12px;
|
||||
color: #444;
|
||||
}
|
||||
html[dir=rtl] .acf-flexible-content .layout .acf-fc-layout-order {
|
||||
float: right;
|
||||
margin-right: 0;
|
||||
margin-left: 5px;
|
||||
}
|
||||
.acf-flexible-content .layout .acf-fc-layout-controls {
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
right: 8px;
|
||||
}
|
||||
.acf-flexible-content .layout .acf-fc-layout-controls .acf-icon {
|
||||
display: block;
|
||||
float: left;
|
||||
margin: 0 0 0 5px;
|
||||
}
|
||||
.acf-flexible-content .layout .acf-fc-layout-controls .acf-icon.-plus, .acf-flexible-content .layout .acf-fc-layout-controls .acf-icon.-minus, .acf-flexible-content .layout .acf-fc-layout-controls .acf-icon.-duplicate {
|
||||
visibility: hidden;
|
||||
}
|
||||
html[dir=rtl] .acf-flexible-content .layout .acf-fc-layout-controls {
|
||||
right: auto;
|
||||
left: 9px;
|
||||
}
|
||||
.acf-flexible-content .layout.is-selected {
|
||||
border-color: #7e8993;
|
||||
}
|
||||
.acf-flexible-content .layout.is-selected .acf-fc-layout-handle {
|
||||
border-color: #7e8993;
|
||||
}
|
||||
.acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-plus, .acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-minus, .acf-flexible-content .layout:hover .acf-fc-layout-controls .acf-icon.-duplicate, .acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-plus, .acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-minus, .acf-flexible-content .layout.-hover .acf-fc-layout-controls .acf-icon.-duplicate {
|
||||
visibility: visible;
|
||||
}
|
||||
.acf-flexible-content .layout.-collapsed > .acf-fc-layout-handle {
|
||||
border-bottom-width: 0;
|
||||
}
|
||||
.acf-flexible-content .layout.-collapsed > .acf-fields,
|
||||
.acf-flexible-content .layout.-collapsed > .acf-table {
|
||||
display: none;
|
||||
}
|
||||
.acf-flexible-content .layout > .acf-table {
|
||||
border: 0 none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.acf-flexible-content .layout > .acf-table > tbody > tr {
|
||||
background: #fff;
|
||||
}
|
||||
.acf-flexible-content .layout > .acf-table > thead > tr > th {
|
||||
background: #F9F9F9;
|
||||
}
|
||||
.acf-flexible-content .no-value-message {
|
||||
padding: 19px;
|
||||
border: #ccc dashed 2px;
|
||||
text-align: center;
|
||||
display: none;
|
||||
}
|
||||
.acf-flexible-content.-empty > .no-value-message {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.acf-fc-popup {
|
||||
padding: 5px 0;
|
||||
z-index: 900001;
|
||||
min-width: 135px;
|
||||
}
|
||||
.acf-fc-popup ul, .acf-fc-popup li {
|
||||
list-style: none;
|
||||
display: block;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.acf-fc-popup li {
|
||||
position: relative;
|
||||
float: none;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.acf-fc-popup .badge {
|
||||
display: inline-block;
|
||||
border-radius: 8px;
|
||||
font-size: 9px;
|
||||
line-height: 15px;
|
||||
padding: 0 5px;
|
||||
background: #d54e21;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
vertical-align: top;
|
||||
margin: 0 0 0 5px;
|
||||
}
|
||||
.acf-fc-popup a {
|
||||
color: #eee;
|
||||
padding: 5px 10px;
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
position: relative;
|
||||
}
|
||||
.acf-fc-popup a:hover {
|
||||
background: #0073aa;
|
||||
color: #fff;
|
||||
}
|
||||
.acf-fc-popup a.disabled {
|
||||
color: #888;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Galery
|
||||
*
|
||||
*---------------------------------------------------------------------------------------------*/
|
||||
.acf-gallery {
|
||||
border: #ccd0d4 solid 1px;
|
||||
height: 400px;
|
||||
position: relative;
|
||||
/* main */
|
||||
/* attachments */
|
||||
/* attachment */
|
||||
/* toolbar */
|
||||
/* sidebar */
|
||||
/* side info */
|
||||
/* side data */
|
||||
/* column widths */
|
||||
/* resizable */
|
||||
}
|
||||
.acf-gallery .acf-gallery-main {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background: #fff;
|
||||
z-index: 2;
|
||||
}
|
||||
.acf-gallery .acf-gallery-attachments {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 48px;
|
||||
left: 0;
|
||||
padding: 5px;
|
||||
overflow: auto;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
.acf-gallery .acf-gallery-attachment {
|
||||
width: 25%;
|
||||
float: left;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
/* hover */
|
||||
/* sortable */
|
||||
/* active */
|
||||
/* icon */
|
||||
/* rtl */
|
||||
}
|
||||
.acf-gallery .acf-gallery-attachment .margin {
|
||||
margin: 5px;
|
||||
border: #d5d9dd solid 1px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
background: #eee;
|
||||
}
|
||||
.acf-gallery .acf-gallery-attachment .margin:before {
|
||||
content: "";
|
||||
display: block;
|
||||
padding-top: 100%;
|
||||
}
|
||||
.acf-gallery .acf-gallery-attachment .thumbnail {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
transform: translate(50%, 50%);
|
||||
}
|
||||
html[dir=rtl] .acf-gallery .acf-gallery-attachment .thumbnail {
|
||||
transform: translate(-50%, 50%);
|
||||
}
|
||||
.acf-gallery .acf-gallery-attachment .thumbnail img {
|
||||
display: block;
|
||||
height: auto;
|
||||
max-height: 100%;
|
||||
width: auto;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
html[dir=rtl] .acf-gallery .acf-gallery-attachment .thumbnail img {
|
||||
transform: translate(50%, -50%);
|
||||
}
|
||||
.acf-gallery .acf-gallery-attachment .filename {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
padding: 5%;
|
||||
background: #F4F4F4;
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
border-top: #DFDFDF solid 1px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
word-wrap: break-word;
|
||||
max-height: 90%;
|
||||
overflow: hidden;
|
||||
}
|
||||
.acf-gallery .acf-gallery-attachment .actions {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
display: none;
|
||||
}
|
||||
.acf-gallery .acf-gallery-attachment:hover .actions {
|
||||
display: block;
|
||||
}
|
||||
.acf-gallery .acf-gallery-attachment.ui-sortable-helper .margin {
|
||||
border: none;
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
.acf-gallery .acf-gallery-attachment.ui-sortable-placeholder .margin {
|
||||
background: #F1F1F1;
|
||||
border: none;
|
||||
}
|
||||
.acf-gallery .acf-gallery-attachment.ui-sortable-placeholder .margin * {
|
||||
display: none !important;
|
||||
}
|
||||
.acf-gallery .acf-gallery-attachment.active .margin {
|
||||
box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 5px #0073aa;
|
||||
}
|
||||
.acf-gallery .acf-gallery-attachment.-icon .thumbnail img {
|
||||
transform: translate(-50%, -70%);
|
||||
}
|
||||
html[dir=rtl] .acf-gallery .acf-gallery-attachment {
|
||||
float: right;
|
||||
}
|
||||
.acf-gallery.sidebar-open {
|
||||
/* hide attachment actions when sidebar is open */
|
||||
/* allow sidebar to move over main for small widths (widget edit box) */
|
||||
}
|
||||
.acf-gallery.sidebar-open .acf-gallery-attachment .actions {
|
||||
display: none;
|
||||
}
|
||||
.acf-gallery.sidebar-open .acf-gallery-side {
|
||||
z-index: 2;
|
||||
}
|
||||
.acf-gallery .acf-gallery-toolbar {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
padding: 10px;
|
||||
border-top: #d5d9dd solid 1px;
|
||||
background: #fff;
|
||||
min-height: 28px;
|
||||
}
|
||||
.acf-gallery .acf-gallery-toolbar .acf-hl li {
|
||||
line-height: 24px;
|
||||
}
|
||||
.acf-gallery .acf-gallery-toolbar .bulk-actions-select {
|
||||
width: auto;
|
||||
margin: 0 1px 0 0;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 0;
|
||||
background: #F9F9F9;
|
||||
border-left: #ccd0d4 solid 1px;
|
||||
z-index: 1;
|
||||
overflow: hidden;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side .acf-gallery-side-inner {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 349px;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side-info {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
margin: -10px 0 15px -10px;
|
||||
background: #F1F1F1;
|
||||
border-bottom: #DFDFDF solid 1px;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side-info:after {
|
||||
display: block;
|
||||
clear: both;
|
||||
content: "";
|
||||
}
|
||||
html[dir=rtl] .acf-gallery .acf-gallery-side-info {
|
||||
margin-left: 0;
|
||||
margin-right: -10px;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side-info img {
|
||||
float: left;
|
||||
width: auto;
|
||||
max-width: 65px;
|
||||
max-height: 65px;
|
||||
margin: 0 10px 1px 0;
|
||||
background: #FFFFFF;
|
||||
padding: 3px;
|
||||
border: #ccd0d4 solid 1px;
|
||||
border-radius: 1px;
|
||||
/* rtl */
|
||||
}
|
||||
html[dir=rtl] .acf-gallery .acf-gallery-side-info img {
|
||||
float: right;
|
||||
margin: 0 0 0 10px;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side-info p {
|
||||
font-size: 13px;
|
||||
line-height: 15px;
|
||||
margin: 3px 0;
|
||||
word-break: break-all;
|
||||
color: #666;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side-info p strong {
|
||||
color: #000;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side-info a {
|
||||
text-decoration: none;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side-info a.acf-gallery-edit {
|
||||
color: #21759b;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side-info a.acf-gallery-remove {
|
||||
color: #bc0b0b;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side-info a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side-data {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 48px;
|
||||
left: 0;
|
||||
overflow: auto;
|
||||
overflow-x: inherit;
|
||||
padding: 10px;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side-data .acf-label,
|
||||
.acf-gallery .acf-gallery-side-data th.label {
|
||||
color: #666666;
|
||||
font-size: 12px;
|
||||
line-height: 25px;
|
||||
padding: 0 4px 8px 0 !important;
|
||||
width: auto !important;
|
||||
vertical-align: top;
|
||||
}
|
||||
html[dir=rtl] .acf-gallery .acf-gallery-side-data .acf-label,
|
||||
html[dir=rtl] .acf-gallery .acf-gallery-side-data th.label {
|
||||
padding: 0 0 8px 4px !important;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side-data .acf-label label,
|
||||
.acf-gallery .acf-gallery-side-data th.label label {
|
||||
font-weight: normal;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side-data .acf-input,
|
||||
.acf-gallery .acf-gallery-side-data td.field {
|
||||
padding: 0 0 8px !important;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side-data textarea {
|
||||
min-height: 0;
|
||||
height: 60px;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side-data p.help {
|
||||
font-size: 12px;
|
||||
}
|
||||
.acf-gallery .acf-gallery-side-data p.help:hover {
|
||||
font-weight: normal;
|
||||
}
|
||||
.acf-gallery[data-columns="1"] .acf-gallery-attachment {
|
||||
width: 100%;
|
||||
}
|
||||
.acf-gallery[data-columns="2"] .acf-gallery-attachment {
|
||||
width: 50%;
|
||||
}
|
||||
.acf-gallery[data-columns="3"] .acf-gallery-attachment {
|
||||
width: 33.333%;
|
||||
}
|
||||
.acf-gallery[data-columns="4"] .acf-gallery-attachment {
|
||||
width: 25%;
|
||||
}
|
||||
.acf-gallery[data-columns="5"] .acf-gallery-attachment {
|
||||
width: 20%;
|
||||
}
|
||||
.acf-gallery[data-columns="6"] .acf-gallery-attachment {
|
||||
width: 16.666%;
|
||||
}
|
||||
.acf-gallery[data-columns="7"] .acf-gallery-attachment {
|
||||
width: 14.285%;
|
||||
}
|
||||
.acf-gallery[data-columns="8"] .acf-gallery-attachment {
|
||||
width: 12.5%;
|
||||
}
|
||||
.acf-gallery .ui-resizable-handle {
|
||||
display: block;
|
||||
position: absolute;
|
||||
}
|
||||
.acf-gallery .ui-resizable-s {
|
||||
bottom: -5px;
|
||||
cursor: ns-resize;
|
||||
height: 7px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* media modal selected */
|
||||
.acf-media-modal .attachment.acf-selected {
|
||||
box-shadow: 0 0 0 3px #fff inset, 0 0 0 7px #0073aa inset !important;
|
||||
}
|
||||
.acf-media-modal .attachment.acf-selected .check {
|
||||
display: none !important;
|
||||
}
|
||||
.acf-media-modal .attachment.acf-selected .thumbnail {
|
||||
opacity: 0.25 !important;
|
||||
}
|
||||
.acf-media-modal .attachment.acf-selected .attachment-preview:before {
|
||||
background: rgba(0, 0, 0, 0.15);
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------------------------------------
|
||||
*
|
||||
* ACF Blocks
|
||||
*
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
.acf-block-component .components-placeholder {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.acf-block-component .acf-block-fields {
|
||||
background: #fff;
|
||||
text-align: left;
|
||||
font-size: 13px;
|
||||
line-height: 1.4em;
|
||||
color: #444;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
}
|
||||
html[dir=rtl] .acf-block-component .acf-block-fields {
|
||||
text-align: right;
|
||||
}
|
||||
.acf-block-component .acf-block-fields p {
|
||||
font-size: 13px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.acf-block-body .acf-block-fields {
|
||||
border: #adb2ad solid 1px;
|
||||
}
|
||||
.acf-block-body .acf-block-fields .acf-tab-wrap .acf-tab-group {
|
||||
margin-left: 0;
|
||||
padding: 16px 20px 0;
|
||||
}
|
||||
.acf-block-body .acf-fields > .acf-field {
|
||||
padding: 16px 20px;
|
||||
}
|
||||
.acf-block-body .acf-fields > .acf-field.acf-accordion {
|
||||
border-color: #adb2ad;
|
||||
}
|
||||
.acf-block-body .acf-fields > .acf-field.acf-accordion .acf-accordion-title {
|
||||
padding: 16px 20px;
|
||||
}
|
||||
.acf-block-body .acf-block-preview {
|
||||
min-height: 10px;
|
||||
}
|
||||
|
||||
.acf-block-panel .acf-block-fields {
|
||||
border-top: #e2e4e7 solid 1px;
|
||||
min-height: 1px;
|
||||
}
|
||||
.acf-block-panel .acf-block-fields:empty {
|
||||
border-top: none;
|
||||
}
|
||||
.acf-block-panel .acf-block-fields .acf-tab-wrap {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.components-panel__body .acf-block-panel {
|
||||
margin: 16px -16px -16px;
|
||||
}
|
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user