b6df4dbb92
MLS plugin fixes from this session: - Fix silent insert failures: location column NOT NULL was rejecting wpdb->insert calls, causing ~18k new properties since Dec 2025 to be lost. Inserts now build raw SQL with ST_PointFromText so the spatial column is populated atomically. - Auto-refresh expired media URLs in MLS_Media_Handler::fetch_and_cache(), guarded by a property-level GET_LOCK so concurrent fetches share one API refresh. - Normalize WP_Error to null in mls_get_property_image() so callers can rely on the documented string|null contract. - Support comma-separated property_type filters in MLS_Query and MLS_Cluster so the homepage "View All Commercial" link (?property_type=Commercial+Sale,Land,Farm) actually filters correctly. - Incremental sync now looks back 10 minutes past the latest modification timestamp as a safety margin against missed records. - Smart sync exits silently (info-level, not warning) when a full sync is in progress. Operational: - New cron: weekly full sync Sundays at 3 AM (/usr/local/bin/mls-full-sync). - New cron: hourly 2GB cap on mls-thumbnails/ and cache/transformed-images/ (/usr/local/bin/mls-image-cache-cap). - Logrotate config for wp-content/debug.log (2-day retention, daily rotation, delaycompress). Repo policy: - CLAUDE.md updated with explicit "commit everything except build artifacts" policy. - .gitignore: untrack runtime image caches and debug.log rotations. Other modifications in this snapshot are pre-existing in-flight theme/plugin/db_content_updates work. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1528 lines
36 KiB
CSS
Executable File
1528 lines
36 KiB
CSS
Executable File
@charset "UTF-8";
|
|
#wpforms-builder .wpforms-toolbar {
|
|
background: #ffffff;
|
|
box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
|
|
height: 76px;
|
|
padding: 0;
|
|
position: fixed;
|
|
text-align: center;
|
|
top: var(--wpforms-admin-bar-height);
|
|
width: 100%;
|
|
z-index: 50;
|
|
-webkit-transform: translateZ(0);
|
|
transform: translateZ(0);
|
|
transition-property: top;
|
|
transition-duration: 0.25s;
|
|
transition-timing-function: ease-out;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar .wpforms-left {
|
|
align-items: center;
|
|
border-inline-end: 1px solid #dcdcde;
|
|
display: flex;
|
|
height: 100%;
|
|
justify-content: center;
|
|
inset-inline-start: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 95px;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar .wpforms-left img {
|
|
height: 45px;
|
|
width: 57px;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar .wpforms-center {
|
|
display: flex;
|
|
gap: 5px;
|
|
align-items: center;
|
|
text-align: start;
|
|
font-size: 18px;
|
|
line-height: 1;
|
|
font-weight: 400;
|
|
margin-inline-end: 520px;
|
|
margin-inline-start: 114px;
|
|
max-width: calc( 100% - 500px);
|
|
height: 100%;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar .wpforms-center-form-name-prefix {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar .wpforms-center-form-name {
|
|
cursor: pointer;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar .wpforms-center-form-name:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar .wpforms-center-form-template-badge {
|
|
background-color: #fdf2eb;
|
|
border-radius: 3px;
|
|
color: #e79055;
|
|
font-size: 10px;
|
|
line-height: 1;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
padding: 8px 10px;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar .wpforms-form-name {
|
|
font-weight: 600;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar .wpforms-right {
|
|
align-items: center;
|
|
display: flex;
|
|
height: 100%;
|
|
justify-content: flex-end;
|
|
position: absolute;
|
|
inset-inline-end: 0;
|
|
top: 0;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar .wpforms-right .wpforms-btn-toolbar {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
height: 42px;
|
|
line-height: 40px;
|
|
margin-inline-end: 20px;
|
|
padding: 0 15px;
|
|
text-decoration: none;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar .wpforms-right .wpforms-btn-toolbar#wpforms-help {
|
|
margin-inline-end: 18px;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar .wpforms-right .wpforms-btn-toolbar i {
|
|
color: #a7aaad;
|
|
margin-inline-end: 8px;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar #wpforms-help,
|
|
#wpforms-builder .wpforms-toolbar #wpforms-context-menu-container {
|
|
background-color: transparent;
|
|
border: none;
|
|
padding: 0;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar #wpforms-help i.fa,
|
|
#wpforms-builder .wpforms-toolbar #wpforms-context-menu-container i.fa {
|
|
margin-right: 0 !important;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar #wpforms-help svg,
|
|
#wpforms-builder .wpforms-toolbar #wpforms-context-menu-container svg {
|
|
fill: #a7aaad;
|
|
margin-top: 13px;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar #wpforms-help .wpforms-context-menu-list-item-icon svg,
|
|
#wpforms-builder .wpforms-toolbar #wpforms-context-menu-container .wpforms-context-menu-list-item-icon svg {
|
|
width: 14px;
|
|
height: auto;
|
|
margin: 0;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar #wpforms-help .wpforms-context-menu-list-item-icon svg path,
|
|
#wpforms-builder .wpforms-toolbar #wpforms-context-menu-container .wpforms-context-menu-list-item-icon svg path {
|
|
fill: rgba(255, 255, 255, 0.75);
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar #wpforms-help:hover > i.fa,
|
|
#wpforms-builder .wpforms-toolbar #wpforms-help:hover > svg, #wpforms-builder .wpforms-toolbar #wpforms-help.wpforms-context-menu-active > i.fa,
|
|
#wpforms-builder .wpforms-toolbar #wpforms-help.wpforms-context-menu-active > svg,
|
|
#wpforms-builder .wpforms-toolbar #wpforms-context-menu-container:hover > i.fa,
|
|
#wpforms-builder .wpforms-toolbar #wpforms-context-menu-container:hover > svg,
|
|
#wpforms-builder .wpforms-toolbar #wpforms-context-menu-container.wpforms-context-menu-active > i.fa,
|
|
#wpforms-builder .wpforms-toolbar #wpforms-context-menu-container.wpforms-context-menu-active > svg {
|
|
color: #3c434a;
|
|
fill: #3c434a;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar #wpforms-preview-btn:not(.wpforms-alone) {
|
|
border-end-end-radius: 0;
|
|
border-start-end-radius: 0;
|
|
margin-inline-end: -1px;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar #wpforms-embed {
|
|
border-end-start-radius: 0;
|
|
border-start-start-radius: 0;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar #wpforms-embed.wpforms-btn-light-grey-disabled {
|
|
cursor: default;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar #wpforms-embed.wpforms-btn-light-grey-disabled:hover {
|
|
background-color: #f6f7f7;
|
|
border-color: #c3c4c7;
|
|
color: #6a6f76;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar #wpforms-embed.wpforms-btn-light-grey-disabled > * {
|
|
opacity: .35;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar #wpforms-save i {
|
|
color: rgba(255, 255, 255, 0.65);
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar #wpforms-exit {
|
|
align-items: center;
|
|
background-color: #ffffff;
|
|
border-bottom: none;
|
|
border-inline-start: 1px solid #dcdcde;
|
|
border-inline-end: none;
|
|
border-top: none;
|
|
color: #a7aaad;
|
|
cursor: pointer;
|
|
display: flex;
|
|
font-size: 26px;
|
|
height: 76px;
|
|
justify-content: center;
|
|
inset-inline-end: 0;
|
|
text-decoration: none;
|
|
top: 0;
|
|
width: 66px;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar #wpforms-exit:hover {
|
|
background-color: #e8e9e9;
|
|
color: #6a6f76;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar.empty .wpforms-center {
|
|
display: none;
|
|
}
|
|
|
|
#wpforms-builder .wpforms-toolbar.empty .wpforms-right #wpforms-embed,
|
|
#wpforms-builder .wpforms-toolbar.empty .wpforms-right #wpforms-save,
|
|
#wpforms-builder .wpforms-toolbar.empty .wpforms-right div,
|
|
#wpforms-builder .wpforms-toolbar.empty .wpforms-right a {
|
|
display: none;
|
|
}
|
|
|
|
.wpforms-panels-toggle {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: #282e32;
|
|
color: #ffffff;
|
|
min-height: calc( 100vh - 76px - var( --wpforms-admin-bar-height ));
|
|
max-height: calc( 100vh - 76px - var( --wpforms-admin-bar-height ));
|
|
inset-inline-start: 0;
|
|
margin-top: 76px;
|
|
margin-inline-end: -100px;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
position: fixed;
|
|
text-align: start;
|
|
top: var(--wpforms-admin-bar-height);
|
|
transform: translateZ(0);
|
|
width: 95px;
|
|
z-index: 15;
|
|
transition-property: top;
|
|
transition-duration: 0.25s;
|
|
transition-timing-function: ease-out;
|
|
}
|
|
|
|
.wpforms-panels-toggle button {
|
|
background: none;
|
|
border: none;
|
|
border-bottom: 1px solid #3c434a;
|
|
cursor: pointer;
|
|
display: block;
|
|
margin: 0;
|
|
padding: 14px 10px;
|
|
width: 100%;
|
|
}
|
|
|
|
.wpforms-panels-toggle button.active, .wpforms-panels-toggle button.active:hover {
|
|
background-color: #e27730;
|
|
}
|
|
|
|
.wpforms-panels-toggle button.active .fa, .wpforms-panels-toggle button.active:hover .fa {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.wpforms-panels-toggle button:hover {
|
|
background-color: #3c434a;
|
|
}
|
|
|
|
.wpforms-panels-toggle button .fa {
|
|
color: #8c8f94;
|
|
display: block;
|
|
font-size: 26px;
|
|
margin: 0 auto 8px;
|
|
text-align: center !important;
|
|
}
|
|
|
|
.wpforms-panels-toggle button.wpforms-panel-fields-button .fa, .wpforms-panels-toggle button.wpforms-panel-payments-button .fa {
|
|
font-size: 28px;
|
|
}
|
|
|
|
.wpforms-panels-toggle button .wpforms-loading-spinner {
|
|
background-size: 24px 24px;
|
|
background-position: 0;
|
|
background-repeat: no-repeat;
|
|
height: 24px;
|
|
width: 24px;
|
|
line-height: 24px;
|
|
vertical-align: 0;
|
|
margin: 2px auto 8px auto;
|
|
display: block;
|
|
}
|
|
|
|
.wpforms-panels-toggle button span {
|
|
color: #ffffff;
|
|
display: block;
|
|
font-size: 14px;
|
|
line-height: 17px;
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.wpforms-panel {
|
|
display: none;
|
|
}
|
|
|
|
.wpforms-panel.active {
|
|
display: block;
|
|
}
|
|
|
|
.wpforms-panel-full-content .wpforms-panel-content-wrap,
|
|
.wpforms-panel-sidebar-content .wpforms-panel-content-wrap {
|
|
background-color: #6a6f76;
|
|
bottom: 0;
|
|
inset-inline-start: 95px;
|
|
overflow: auto;
|
|
padding-block-start: 30px;
|
|
padding-block-end: 30px;
|
|
padding-inline-start: 30px;
|
|
padding-inline-end: 30px;
|
|
position: fixed;
|
|
inset-inline-end: 0;
|
|
top: calc( 76px + var( --wpforms-admin-bar-height ));
|
|
z-index: 10;
|
|
transition-property: top, inset-inline-start;
|
|
transition-duration: 0.25s, 0.15s;
|
|
transition-timing-function: ease-out, ease-in-out;
|
|
}
|
|
|
|
.wpforms-panel-full-content .wpforms-panel-content,
|
|
.wpforms-panel-sidebar-content .wpforms-panel-content {
|
|
background-color: #ffffff;
|
|
border-radius: 12px;
|
|
box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
|
|
min-height: 100%;
|
|
padding: 30px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.wpforms-panel-full-content .wpforms-panel-content .wpforms-bottom,
|
|
.wpforms-panel-sidebar-content .wpforms-panel-content .wpforms-bottom {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-content .wpforms-panel-sidebar-toggle-icon {
|
|
align-items: center;
|
|
background-image: url(../../images/builder/toggle-tab-bg.svg);
|
|
background-size: 100% 58px;
|
|
background-repeat: no-repeat;
|
|
border-radius: 5px 5px 0 0;
|
|
color: #86919e;
|
|
display: flex;
|
|
justify-content: left;
|
|
font-size: 20px;
|
|
height: 58px;
|
|
inset-inline-start: 495px;
|
|
cursor: pointer;
|
|
position: absolute;
|
|
top: calc( 50% + 24px);
|
|
width: 15px;
|
|
z-index: 15;
|
|
transition-property: inset-inline-start, width;
|
|
transition-duration: 0.15s;
|
|
transition-timing-function: ease-in-out;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-content .wpforms-panel-sidebar-toggle-icon:hover {
|
|
color: #3c434a;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-content .wpforms-panel-sidebar-toggle-icon:hover i {
|
|
inset-inline-start: -6px;
|
|
}
|
|
|
|
.rtl .wpforms-panel-sidebar-content .wpforms-panel-sidebar-toggle-icon {
|
|
transform: scale(-1);
|
|
}
|
|
|
|
.wpforms-panel-sidebar-content .wpforms-panel-sidebar-toggle-icon i {
|
|
inset-inline-start: -4px;
|
|
position: relative;
|
|
font-size: 16px;
|
|
transition-property: transform, inset-inline-start;
|
|
transition-duration: 0.15s;
|
|
transition-timing-function: ease-in-out;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-content .wpforms-panel-content-wrap {
|
|
inset-inline-start: 495px;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-content .wpforms-panel-sidebar {
|
|
background-color: #ebf3fc;
|
|
bottom: 0;
|
|
inset-inline-start: 95px;
|
|
overflow: auto;
|
|
position: fixed;
|
|
top: calc( 76px + var( --wpforms-admin-bar-height ));
|
|
width: 400px;
|
|
}
|
|
|
|
#wpforms-panel-fields .wpforms-panel-sidebar-content.wpforms-panel-sidebar-closed .wpforms-panel-sidebar-toggle-vertical-line {
|
|
position: absolute;
|
|
border-inline-end: 3px solid #ebf3fb;
|
|
top: calc( 76px + var( --wpforms-admin-bar-height ));
|
|
height: 100%;
|
|
inset-inline-start: 95px;
|
|
z-index: 0;
|
|
cursor: pointer;
|
|
transition-property: z-index;
|
|
transition-duration: 0.15s;
|
|
transition-timing-function: ease-in-out;
|
|
}
|
|
|
|
#wpforms-panel-fields .wpforms-panel-sidebar-content.wpforms-panel-sidebar-closed .wpforms-panel-sidebar-toggle-vertical-line:hover {
|
|
z-index: 15;
|
|
}
|
|
|
|
#wpforms-panel-fields .wpforms-panel-sidebar-content.wpforms-panel-sidebar-closed .wpforms-panel-sidebar-toggle-icon {
|
|
justify-content: center;
|
|
inset-inline-start: 95px;
|
|
}
|
|
|
|
#wpforms-panel-fields .wpforms-panel-sidebar-content.wpforms-panel-sidebar-closed .wpforms-panel-sidebar-toggle-icon i {
|
|
inset-inline-start: -1.5px;
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
#wpforms-panel-fields .wpforms-panel-sidebar-content.wpforms-panel-sidebar-closed .wpforms-panel-sidebar,
|
|
#wpforms-panel-fields .wpforms-panel-sidebar-content.wpforms-panel-sidebar-closed .wpforms-panel-sidebar .wpforms-tabs {
|
|
inset-inline-start: -305px;
|
|
}
|
|
|
|
#wpforms-panel-fields .wpforms-panel-sidebar-content.wpforms-panel-sidebar-closed .wpforms-panel-content-wrap {
|
|
inset-inline-start: 95px;
|
|
}
|
|
|
|
#wpforms-panel-fields .wpforms-panel-sidebar-content.wpforms-panel-sidebar-closed .wpforms-panel-sidebar-toggle:hover .wpforms-panel-sidebar-toggle-vertical-line {
|
|
z-index: 15;
|
|
}
|
|
|
|
#wpforms-panel-fields .wpforms-panel-sidebar-content.wpforms-panel-sidebar-closed .wpforms-panel-sidebar-toggle:hover .wpforms-panel-sidebar-toggle-icon {
|
|
width: 18px;
|
|
}
|
|
|
|
.wpforms-panel-corrupted-data .wpforms-panel-content-wrap {
|
|
inset-inline-start: 95px;
|
|
}
|
|
|
|
.wpforms-panel-corrupted-data .wpforms-builder-preview-corrupted-data-content .wpforms-builder-corrupted-data-title {
|
|
border-bottom: 1px solid #dcdcde;
|
|
padding-bottom: 30px;
|
|
margin: 0 0 15px 0;
|
|
}
|
|
|
|
.wpforms-panel-corrupted-data .wpforms-builder-preview-corrupted-data-content .wpforms-builder-corrupted-data-title h2 {
|
|
font-size: 28px;
|
|
font-weight: 600;
|
|
line-height: 28px;
|
|
margin: 0 !important;
|
|
padding: 0;
|
|
}
|
|
|
|
.wpforms-panel-corrupted-data .wpforms-builder-preview-corrupted-data-content p {
|
|
color: #3c434a;
|
|
font-size: 15px;
|
|
font-weight: 400;
|
|
line-height: 22px;
|
|
margin: 0;
|
|
}
|
|
|
|
.wpforms-panel-field {
|
|
margin-bottom: 20px;
|
|
max-width: 450px;
|
|
}
|
|
|
|
.wpforms-panel-field.wide, .wpforms-panel-field.wpforms-panel-field-tinymce, .wpforms-panel-field.wpforms-panel-field-warning, .wpforms-panel-field[id$="-redirect-wrap"] {
|
|
max-width: 800px;
|
|
}
|
|
|
|
.wpforms-panel-field input[type=text],
|
|
.wpforms-panel-field textarea {
|
|
width: 100%;
|
|
}
|
|
|
|
.wpforms-panel-field input[type=number] {
|
|
width: 20%;
|
|
}
|
|
|
|
.wpforms-panel-field select {
|
|
max-width: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.wpforms-panel-field input[type=number] {
|
|
height: auto;
|
|
}
|
|
|
|
.wpforms-panel-field .row {
|
|
clear: both;
|
|
display: block;
|
|
margin-bottom: 6px;
|
|
width: 100%;
|
|
}
|
|
|
|
.wpforms-panel-field label {
|
|
display: block;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
margin: 0 0 10px 0;
|
|
vertical-align: text-top;
|
|
}
|
|
|
|
.wpforms-panel-field label.inline {
|
|
display: inline-block;
|
|
font-weight: 400;
|
|
margin: 0 0 0 10px;
|
|
}
|
|
|
|
.wpforms-panel-field p {
|
|
font-size: 14px;
|
|
margin: 0;
|
|
}
|
|
|
|
.wpforms-panel-field p.note {
|
|
color: #6a6f76;
|
|
font-size: 12px;
|
|
margin: 5px 0 0 0;
|
|
}
|
|
|
|
.wpforms-panel-field-anti-spam-disallowed-keys textarea {
|
|
height: 200px;
|
|
}
|
|
|
|
.wpforms-panel-field .wpforms-panel-field-after {
|
|
color: #6a6f76;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.wpforms-panel-field.wpforms-panel-field-select label .wpforms-badge {
|
|
margin-left: 10px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.wpforms-panel-fields-group .wpforms-panel-fields-group-title {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
line-height: 19px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.wpforms-panel-fields-group .wpforms-panel-fields-group-description {
|
|
color: #6a6f76;
|
|
font-size: 14px;
|
|
line-height: 17px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.wpforms-panel-fields-group .wpforms-panel-fields-group-inner {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.wpforms-panel-fields-group .wpforms-panel-fields-group-border-top {
|
|
border-top: 1px solid #dcdcde;
|
|
margin-bottom: 20px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.wpforms-panel-fields-group .wpforms-panel-fields-group-border-bottom {
|
|
border-top: 1px solid #dcdcde;
|
|
margin-bottom: 20px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.wpforms-panel-fields-group.wpforms-builder-notifications-advanced .wpforms-panel-fields-group-border-top {
|
|
margin: 0 20px 10px;
|
|
}
|
|
|
|
.wpforms-panel-fields-group.wpforms-builder-notifications-advanced.unfoldable .wpforms-panel-fields-group-title {
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
.wpforms-panel-fields-group.wpforms-builder-notifications-advanced.unfoldable .wpforms-panel-fields-group-title i {
|
|
right: 20px;
|
|
}
|
|
|
|
.wpforms-panel-fields-group.unfoldable .wpforms-panel-fields-group-border-top {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.wpforms-panel-fields-group.unfoldable .wpforms-panel-fields-group-title {
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
margin-bottom: 10px;
|
|
padding: 10px 0;
|
|
position: relative;
|
|
}
|
|
|
|
.wpforms-panel-fields-group.unfoldable .wpforms-panel-fields-group-title i {
|
|
color: #b0b2b3;
|
|
position: absolute;
|
|
right: 0;
|
|
top: calc( 50% - 7px);
|
|
transition-property: transform;
|
|
transition-duration: 0.15s;
|
|
transition-timing-function: ease-in;
|
|
}
|
|
|
|
.wpforms-panel-fields-group.unfoldable .wpforms-panel-fields-group-title i::before {
|
|
content: "\f105";
|
|
}
|
|
|
|
.wpforms-panel-fields-group.unfoldable.opened .wpforms-panel-fields-group-title i {
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.wpforms-panel-content-section-general .wpforms-panel-fields-group.unfoldable .wpforms-panel-fields-group-title {
|
|
margin-bottom: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.wpforms-panel-content-section-general .wpforms-panel-fields-group.unfoldable .wpforms-panel-fields-group-title i {
|
|
top: calc( 50% - 2px);
|
|
}
|
|
|
|
.wpforms-panel-content-section-general .wpforms-panel-fields-group.unfoldable.opened .wpforms-panel-fields-group-title {
|
|
margin-bottom: 10px;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.wpforms-panel-content-section-general .wpforms-panel-fields-group.unfoldable.opened .wpforms-panel-fields-group-title i {
|
|
top: calc( 50% - 7px);
|
|
}
|
|
|
|
.rtl .wpforms-panel-fields-group.wpforms-builder-notifications-advanced .wpforms-panel-fields-group-title i {
|
|
left: 20px;
|
|
right: auto;
|
|
}
|
|
|
|
.rtl .wpforms-panel-fields-group .wpforms-panel-fields-group-title i {
|
|
left: 0;
|
|
right: auto;
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.rtl .wpforms-panel-field .wpforms-panel-field-after {
|
|
margin-left: 0;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.rtl .wpforms-panel-field label.inline {
|
|
margin: 0 10px 0 0;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-section {
|
|
border-bottom: 1px solid #ced7e0;
|
|
color: #3c434a;
|
|
display: block;
|
|
font-size: 16px;
|
|
height: 75px;
|
|
line-height: 18px;
|
|
margin: 0;
|
|
outline: 0;
|
|
padding: 17px 15px 17px 20px;
|
|
position: relative;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-section:hover {
|
|
background-color: #e0e8f0;
|
|
color: #3c434a;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-section.icon {
|
|
padding-block: 28px;
|
|
padding-inline-end: 15px;
|
|
padding-inline-start: 79px;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-section.education-modal {
|
|
opacity: .5;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-section.education-modal .wpforms-panel-sidebar-recommended {
|
|
margin-inline-start: 5px;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-section.default {
|
|
display: none;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-section.active, .wpforms-panel-sidebar-section.active:hover {
|
|
background-color: #036aab;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-section .fa-angle-right {
|
|
color: #b0b6bd;
|
|
float: inline-end;
|
|
font-size: 16px;
|
|
line-height: 16px;
|
|
text-align: center;
|
|
margin-inline-start: 10px;
|
|
margin-block-start: 2px;
|
|
}
|
|
|
|
.rtl .wpforms-panel-sidebar-section .fa-angle-right {
|
|
transform: scale(-1, 1);
|
|
}
|
|
|
|
.wpforms-panel-sidebar-section .fa-check-circle-o {
|
|
color: transparent;
|
|
float: inline-end;
|
|
margin-inline-start: 20px;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-section .fa-check-circle-o:before {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23B0B6BD'%3E%3Cdefs/%3E%3Cpath d='M8 .25a7.75 7.75 0 100 15.5A7.75 7.75 0 008 .25zm0 1.5a6.25 6.25 0 110 12.5 6.25 6.25 0 010-12.5zm4.38 4.1l-.72-.72c-.13-.16-.38-.16-.54 0L6.72 9.5 4.84 7.62a.36.36 0 00-.53 0l-.72.7c-.12.15-.12.4 0 .52l2.85 2.88c.15.15.37.15.53 0l5.4-5.35c.13-.15.13-.4 0-.53z'/%3E%3C/svg%3E");
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-section.active .fa-angle-right {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-section.active .fa-check-circle-o:before {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff'%3E%3Cdefs/%3E%3Cpath d='M8 .25a7.75 7.75 0 100 15.5A7.75 7.75 0 008 .25zm0 1.5a6.25 6.25 0 110 12.5 6.25 6.25 0 010-12.5zm4.38 4.1l-.72-.72c-.13-.16-.38-.16-.54 0L6.72 9.5 4.84 7.62a.36.36 0 00-.53 0l-.72.7c-.12.15-.12.4 0 .52l2.85 2.88c.15.15.37.15.53 0l5.4-5.35c.13-.15.13-.4 0-.53z'/%3E%3C/svg%3E");
|
|
}
|
|
|
|
.wpforms-panel-sidebar-section.active img {
|
|
border-color: #005387;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-section img {
|
|
border: 1px solid #b0b6bd;
|
|
border-radius: 4px;
|
|
inset-inline-start: 20px;
|
|
position: absolute;
|
|
top: 15px;
|
|
width: 44px;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-section .wpforms-panel-sidebar-recommended {
|
|
background-color: #00a32a;
|
|
border-radius: 3px;
|
|
color: #ffffff;
|
|
font-size: 9px;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
padding: 4px 5px 3px;
|
|
margin-inline-end: 10px;
|
|
display: inline-block;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.wpforms-panel-sidebar-section .wpforms-panel-sidebar-recommended i {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.wpforms-panel-content-section {
|
|
display: none;
|
|
}
|
|
|
|
.wpforms-panel-content-section .illustration {
|
|
height: 260px;
|
|
margin: 0 auto 30px auto;
|
|
width: 350px;
|
|
}
|
|
|
|
.wpforms-panel-content-section .illustration.illustration-marketing {
|
|
background: url("../../images/builder/illustration-marketing.svg") no-repeat center center;
|
|
background-size: 313px 260px;
|
|
}
|
|
|
|
.wpforms-panel-content-section .illustration.illustration-payments {
|
|
background: url("../../images/builder/illustration-payments.svg") no-repeat center center;
|
|
background-size: 269px 255px;
|
|
}
|
|
|
|
.wpforms-panel-content-section-title {
|
|
border-bottom: 1px solid #dcdcde;
|
|
font-size: 28px;
|
|
font-weight: 600;
|
|
line-height: 28px;
|
|
margin-bottom: 30px;
|
|
padding: 0 0 30px 0;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
}
|
|
|
|
.wpforms-panel-content-section-title button,
|
|
.wpforms-panel-content-section-title .button {
|
|
background-color: #036aab;
|
|
border: none;
|
|
border-radius: 4px;
|
|
box-shadow: none;
|
|
color: #ffffff;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
height: auto;
|
|
line-height: 17px;
|
|
padding: 10px 15px;
|
|
text-decoration: none;
|
|
appearance: none;
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
.wpforms-panel-content-section-title button:hover, .wpforms-panel-content-section-title button:focus,
|
|
.wpforms-panel-content-section-title .button:hover,
|
|
.wpforms-panel-content-section-title .button:focus {
|
|
background-color: #215d8f;
|
|
color: #ffffff;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.wpforms-panel-content-section-title button i,
|
|
.wpforms-panel-content-section-title .button i {
|
|
margin: 0 10px 0 0;
|
|
}
|
|
|
|
.wpforms-panel-content-section-title > a > i:before {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.wpforms-panel-content-section-title .wpforms-help-tooltip {
|
|
font-size: 24px !important;
|
|
vertical-align: 1px;
|
|
}
|
|
|
|
.wpforms-panel-content-section-description {
|
|
border-bottom: 1px solid #dcdcde;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
margin-bottom: 20px;
|
|
overflow: hidden;
|
|
padding-bottom: 20px;
|
|
position: relative;
|
|
transition-property: all;
|
|
transition-duration: 0.25s;
|
|
transition-timing-function: ease-in-out;
|
|
}
|
|
|
|
.wpforms-panel-content-section-description.out {
|
|
margin-bottom: 0;
|
|
max-height: 0;
|
|
opacity: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.wpforms-panel-content-section-description p {
|
|
line-height: 20px;
|
|
margin-bottom: 0;
|
|
margin-inline-end: 30px;
|
|
}
|
|
|
|
.wpforms-panel-content-section-description p:not(:first-of-type) {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.wpforms-panel-content-section-description .wpforms-dismiss-button {
|
|
position: absolute;
|
|
inset-inline-end: -3px;
|
|
top: -3px;
|
|
}
|
|
|
|
.wpforms-panel-content-section-default {
|
|
position: relative;
|
|
}
|
|
|
|
.wpforms-panel-content-section-default::after {
|
|
background-image: url("../../images/builder/default-arrow.svg");
|
|
background-repeat: no-repeat;
|
|
background-size: 97px 83px;
|
|
content: "";
|
|
height: 83px;
|
|
inset-inline-start: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 97px;
|
|
}
|
|
|
|
.rtl .wpforms-panel-content-section-default::after {
|
|
transform: scale(-1, 1);
|
|
}
|
|
|
|
.wpforms-panel-content-section-default,
|
|
.wpforms-panel-content-section-info {
|
|
align-content: center;
|
|
min-height: calc( 100vh - var( --wpforms-admin-bar-height ) - 195px);
|
|
padding: 50px 0;
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.wpforms-panel-content-section-default h5,
|
|
.wpforms-panel-content-section-info h5 {
|
|
color: #3c434a;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
line-height: normal;
|
|
margin: 0 auto 10px auto;
|
|
max-width: 600px;
|
|
}
|
|
|
|
.wpforms-panel-content-section-default p,
|
|
.wpforms-panel-content-section-info p {
|
|
color: #6a6f76;
|
|
font-size: 16px;
|
|
margin: 0 auto 20px auto;
|
|
max-width: 600px;
|
|
}
|
|
|
|
.wpforms-panel-content-section-default p:last-of-type,
|
|
.wpforms-panel-content-section-info p:last-of-type {
|
|
margin: 0 auto 0 auto;
|
|
}
|
|
|
|
.wpforms-panel-content-section-default .wpforms-btn,
|
|
.wpforms-panel-content-section-info .wpforms-btn {
|
|
margin: 20px auto;
|
|
}
|
|
|
|
.wpforms-panel-field:last-child,
|
|
.wpforms-builder-settings-block:last-child {
|
|
margin-bottom: 0 !important;
|
|
}
|
|
|
|
.wpforms-panel-content-section-tabs-content-tab {
|
|
display: none;
|
|
}
|
|
|
|
.wpforms-panel-content-section-tabs-content-tab-active {
|
|
display: block;
|
|
}
|
|
|
|
.wpforms-panel-content-section-title .wpforms-toggle-control .wpforms-toggle-control-icon {
|
|
width: 48px;
|
|
height: 28px;
|
|
border-radius: 14px;
|
|
}
|
|
|
|
.wpforms-panel-content-section-title .wpforms-toggle-control .wpforms-toggle-control-icon:after {
|
|
width: 22px;
|
|
height: 22px;
|
|
top: 3px;
|
|
inset-inline-start: 3px;
|
|
}
|
|
|
|
.wpforms-panel-content-section-title .wpforms-toggle-control input[type=checkbox]:checked + label.wpforms-toggle-control-icon:after {
|
|
inset-inline-start: calc(100% - 22px - 3px);
|
|
}
|
|
|
|
.wpforms-panel-content-section:has(.wpforms-panel-content-section-title + .wpforms-panel-content-section-tabs) .wpforms-panel-content-section-title {
|
|
border-bottom: none;
|
|
margin: 0;
|
|
}
|
|
|
|
.wpforms-panel-content-section:has(.wpforms-panel-content-section-title + .wpforms-panel-content-section-tabs) .wpforms-panel-content-section-tabs-content {
|
|
padding: 30px 0;
|
|
}
|
|
|
|
.wpforms-panel-content-section-tabs-list {
|
|
padding: 0 30px;
|
|
margin-left: -30px;
|
|
margin-right: -30px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
font-weight: 500;
|
|
background-color: #f6f7f7;
|
|
color: #6a6f76;
|
|
}
|
|
|
|
.wpforms-panel-content-section-tabs-list a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
display: block;
|
|
line-height: 18px;
|
|
padding: 10px 0;
|
|
border-top: 2px solid transparent;
|
|
border-bottom: 2px solid transparent;
|
|
}
|
|
|
|
.wpforms-panel-content-section-tabs-list .wpforms-panel-content-section-tabs-list-item {
|
|
margin: 0;
|
|
}
|
|
|
|
.wpforms-panel-content-section-tabs-list .wpforms-panel-content-section-tabs-list-item:hover {
|
|
color: #3c434a;
|
|
}
|
|
|
|
.wpforms-panel-content-section-tabs-list .wpforms-panel-content-section-tabs-list-item-active {
|
|
color: #3c434a;
|
|
}
|
|
|
|
.wpforms-panel-content-section-tabs-list .wpforms-panel-content-section-tabs-list-item-active a {
|
|
border-bottom-color: #e27730;
|
|
}
|
|
|
|
.wpforms-panel-content-section-tabs-list .wpforms-panel-content-section-tabs-list-item-end {
|
|
margin-inline-start: auto;
|
|
}
|
|
|
|
.wpforms-panel-content-section-tabs-list .wpforms-help {
|
|
color: #a7aaad;
|
|
border: none;
|
|
line-height: 20px;
|
|
font-weight: 500;
|
|
padding: 0;
|
|
}
|
|
|
|
.wpforms-panel-content-section-tabs-list .wpforms-help i {
|
|
margin-inline-end: 7px !important;
|
|
}
|
|
|
|
.wpforms-panel-content-section-tabs-list .wpforms-help i:before {
|
|
font-size: 16px;
|
|
position: relative;
|
|
top: 1px;
|
|
}
|
|
|
|
.wpforms-panel-content-section-tabs-list .wpforms-help:hover {
|
|
background: transparent;
|
|
}
|
|
|
|
.toggle-unfoldable-cont,
|
|
.toggle-smart-tag-display {
|
|
color: #86919e;
|
|
float: inline-end;
|
|
font-size: 12px;
|
|
margin-inline-end: 2px;
|
|
text-decoration: none;
|
|
text-align: end;
|
|
margin-inline-start: auto;
|
|
max-width: 150px;
|
|
}
|
|
|
|
.toggle-unfoldable-cont:hover,
|
|
.toggle-smart-tag-display:hover {
|
|
color: #6a6f76;
|
|
}
|
|
|
|
.toggle-unfoldable-cont:hover span,
|
|
.toggle-smart-tag-display:hover span {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.toggle-unfoldable-cont i,
|
|
.toggle-smart-tag-display i {
|
|
font-size: 14px;
|
|
margin: 0 5px;
|
|
}
|
|
|
|
.unfoldable-cont {
|
|
display: none;
|
|
margin: 0 2px 10px 1px;
|
|
}
|
|
|
|
.unfoldable-cont .heading {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
margin: 0 0 5px 0;
|
|
display: flex;
|
|
width: 100%;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.unfoldable-cont .heading a {
|
|
color: #86919e;
|
|
display: inline-block;
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
text-decoration: none;
|
|
padding-inline-start: 3px;
|
|
margin-inline-start: auto;
|
|
text-align: end;
|
|
line-height: 16px;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.unfoldable-cont .heading a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.unfoldable-cont ul {
|
|
background-color: #ffffff;
|
|
border: 1px solid #b0b6bd;
|
|
border-radius: 4px;
|
|
display: none;
|
|
margin: 1px 1px 10px 1px !important;
|
|
overflow: hidden;
|
|
width: 100% !important;
|
|
}
|
|
|
|
.unfoldable-cont li {
|
|
border-bottom: 1px solid #dcdcde;
|
|
list-style: none;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.unfoldable-cont li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.unfoldable-cont li a {
|
|
color: #215d8f;
|
|
display: block;
|
|
font-size: 14px;
|
|
line-height: 17px;
|
|
padding: 10px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.unfoldable-cont li a:hover {
|
|
background-color: #f6f7f7;
|
|
color: #036aab;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.unfoldable-cont textarea {
|
|
border-radius: 4px;
|
|
color: #3c434a;
|
|
display: block;
|
|
font-size: 14px;
|
|
height: 85px;
|
|
line-height: 21px;
|
|
padding: 8px 10px;
|
|
width: 100% !important;
|
|
}
|
|
|
|
.unfoldable-cont button.wpforms-btn {
|
|
margin-inline-start: 1px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.wpforms-field-map-table {
|
|
margin: 0 0 10px 0;
|
|
max-width: 1040px;
|
|
}
|
|
|
|
.wpforms-field-map-table h3 {
|
|
color: #3c434a;
|
|
margin: 0 0 8px 0;
|
|
}
|
|
|
|
.wpforms-field-map-table table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.wpforms-field-map-table table td {
|
|
padding: 0 10px 10px 0;
|
|
}
|
|
|
|
.wpforms-field-map-table table td select,
|
|
.wpforms-field-map-table table td input:not([type=checkbox]):not([type=radio]) {
|
|
max-width: 100%;
|
|
width: 100% !important;
|
|
}
|
|
|
|
.wpforms-field-map-table table td.key {
|
|
width: 50%;
|
|
}
|
|
|
|
.wpforms-field-map-table table td.field {
|
|
width: calc( 50% - 76px);
|
|
}
|
|
|
|
.wpforms-field-map-table table td.actions {
|
|
width: 42px;
|
|
}
|
|
|
|
.wpforms-field-map-table table tr td:last-child {
|
|
padding-right: 0;
|
|
}
|
|
|
|
.wpforms-field-map-table .actions i {
|
|
display: inline-block;
|
|
width: auto;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.wpforms-field-map-table .actions .remove {
|
|
color: #d63638;
|
|
margin-left: 6px;
|
|
}
|
|
|
|
.wpforms-field-map-table .actions .remove:hover {
|
|
color: #ee5c5c;
|
|
}
|
|
|
|
.wpforms-field-map-table tr:first-of-type .remove {
|
|
display: none;
|
|
}
|
|
|
|
.wpforms-builder-dropdown-list {
|
|
position: absolute;
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: 14px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
z-index: 100;
|
|
width: 370px;
|
|
background: #ffffff;
|
|
border-radius: 4px;
|
|
border: 1px solid #6a6f76;
|
|
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
|
|
visibility: visible;
|
|
overflow: hidden;
|
|
transition: visibility 0.05s, opacity 0.05s ease-in;
|
|
}
|
|
|
|
.wpforms-builder-dropdown-list.closed {
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.wpforms-builder-dropdown-list .title {
|
|
color: #3c434a;
|
|
background: #f6f7f7;
|
|
border-bottom: 1px solid #dcdcde;
|
|
padding: 10px 12px;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
cursor: default;
|
|
}
|
|
|
|
.wpforms-builder-dropdown-list ul {
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-height: 170px;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.wpforms-builder-dropdown-list ul li {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-shrink: 0;
|
|
gap: 10px;
|
|
justify-content: space-between;
|
|
padding: 10px 12px;
|
|
background: #ffffff;
|
|
margin: 0;
|
|
border-bottom: 1px solid #e8e9e9;
|
|
cursor: pointer;
|
|
color: #6a6f76;
|
|
}
|
|
|
|
.wpforms-builder-dropdown-list ul li:hover {
|
|
color: #ffffff;
|
|
background: #036aab;
|
|
}
|
|
|
|
.wpforms-builder-dropdown-list ul li:hover .grey {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.wpforms-builder-dropdown-list ul li .grey {
|
|
color: #6a6f76;
|
|
}
|
|
|
|
.wpforms-builder-dropdown-list .wpforms-builder-dropdown-list-search-container {
|
|
position: relative;
|
|
padding: 10px;
|
|
border-bottom: 1px solid #dcdcde;
|
|
}
|
|
|
|
.wpforms-builder-dropdown-list .wpforms-builder-dropdown-list-search-container input {
|
|
width: 100%;
|
|
}
|
|
|
|
.wpforms-builder-dropdown-list .wpforms-builder-dropdown-list-search-container input::-webkit-search-cancel-button {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
}
|
|
|
|
.wpforms-builder-dropdown-list .wpforms-builder-dropdown-list-search-container .wpforms-builder-dropdown-list-search-close {
|
|
display: none;
|
|
position: absolute;
|
|
inset-inline-end: 20px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
cursor: pointer;
|
|
color: #b0b2b3;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.wpforms-builder-dropdown-list .wpforms-builder-dropdown-list-search-container .wpforms-builder-dropdown-list-search-close.active {
|
|
display: block;
|
|
}
|
|
|
|
.wpforms-builder-dropdown-list .wpforms-builder-dropdown-list-search-container .wpforms-builder-dropdown-list-search-close:hover {
|
|
color: #86919e;
|
|
}
|
|
|
|
.wpforms-builder-dropdown-list .wpforms-no-results {
|
|
display: none;
|
|
padding: 10px;
|
|
color: #6a6f76;
|
|
}
|
|
|
|
.wpforms-field-option-row .wpforms-builder-dropdown-list {
|
|
left: -5px;
|
|
width: auto;
|
|
right: -5px;
|
|
}
|
|
|
|
.wpforms-choices-list {
|
|
border: 1px solid #c3c4c7;
|
|
border-radius: 4px;
|
|
max-height: 177px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.wpforms-choices-list .checkbox-item {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.wpforms-choices-list .checkbox-item:first-child {
|
|
border-top-left-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
}
|
|
|
|
.wpforms-choices-list .checkbox-item:last-child {
|
|
border-bottom-left-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
}
|
|
|
|
.wpforms-choices-list .checkbox-item:nth-child(odd) {
|
|
background-color: #f6f7f7;
|
|
}
|
|
|
|
.wpforms-choices-list .checkbox-item:hover {
|
|
background-color: #e8e9e9;
|
|
}
|
|
|
|
.wpforms-choices-list .checkbox-item input[type="checkbox"] {
|
|
display: none;
|
|
}
|
|
|
|
.wpforms-choices-list .checkbox-item input[type="checkbox"]:focus + label::before {
|
|
outline: 2px solid #79c2f4;
|
|
outline-offset: 1px;
|
|
}
|
|
|
|
.wpforms-choices-list .checkbox-item input[type="checkbox"]:checked + label::before {
|
|
background-color: #036aab;
|
|
border-color: #036aab;
|
|
content: '✓';
|
|
color: #ffffff;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
line-height: 16px;
|
|
}
|
|
|
|
.wpforms-choices-list .checkbox-item input[type="checkbox"]:indeterminate + label::before {
|
|
background-color: #0399ed;
|
|
border-color: #0399ed;
|
|
content: '-';
|
|
color: #ffffff;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
line-height: 14px;
|
|
}
|
|
|
|
.wpforms-choices-list .checkbox-item label {
|
|
position: relative;
|
|
padding: 10px 0 10px 0;
|
|
padding-inline-start: calc(18px + 10px + 10px);
|
|
padding-inline-end: 10px;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
line-height: 1.25rem;
|
|
color: #1d2327;
|
|
flex-grow: 1;
|
|
margin: unset;
|
|
}
|
|
|
|
.wpforms-choices-list .checkbox-item label::before {
|
|
content: "";
|
|
position: absolute;
|
|
inset-inline-start: 10px;
|
|
width: 18px;
|
|
height: 18px;
|
|
border: 1px solid #c3c4c7;
|
|
border-radius: 4px;
|
|
background-color: #ffffff;
|
|
transition: background-color 0.2s ease, border-color 0.2s ease;
|
|
}
|
|
|
|
.wpforms-chocolate-choices {
|
|
display: grid;
|
|
grid-template-columns: repeat(7, 1fr);
|
|
gap: 10px;
|
|
}
|
|
|
|
.wpforms-chocolate-choices .choice-item {
|
|
position: relative;
|
|
height: 32px;
|
|
}
|
|
|
|
.wpforms-chocolate-choices .choice-item input[type="checkbox"] {
|
|
opacity: 0;
|
|
position: absolute;
|
|
width: 0;
|
|
height: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.wpforms-chocolate-choices .choice-item input[type="checkbox"]:checked + label {
|
|
background-color: #036aab;
|
|
color: #ffffff;
|
|
border-color: #036aab;
|
|
}
|
|
|
|
.wpforms-chocolate-choices .choice-item input[type="checkbox"]:checked + label:hover {
|
|
background-color: #215d8f;
|
|
border-color: #215d8f;
|
|
}
|
|
|
|
.wpforms-chocolate-choices .choice-item input[type="checkbox"]:focus-visible + label {
|
|
outline: 2px solid #4285f4;
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.wpforms-chocolate-choices .choice-item label {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0.5rem;
|
|
border: 1px solid #c3c4c7;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
|
user-select: none;
|
|
box-sizing: border-box;
|
|
background-color: #ffffff;
|
|
color: #1d2327;
|
|
font-size: 0.875rem;
|
|
line-height: 1.2;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.wpforms-chocolate-choices .choice-item label:hover {
|
|
background-color: #f3f4f6;
|
|
}
|
|
|
|
.wpforms-larger-icon-choice {
|
|
position: relative;
|
|
}
|
|
|
|
.wpforms-larger-icon-choice input[type="radio"] {
|
|
position: absolute;
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.wpforms-larger-icon-choice input[type="radio"]:focus-visible + label {
|
|
outline: 3px solid #79c2f4;
|
|
outline-offset: 3px;
|
|
border-color: #0399ed;
|
|
}
|
|
|
|
.wpforms-larger-icon-choice input[type="radio"]:checked + label {
|
|
color: #036aab;
|
|
box-shadow: 0 0 0 1px currentColor;
|
|
border-color: currentColor;
|
|
background-color: #f1f6fa;
|
|
}
|
|
|
|
.wpforms-larger-icon-choice input[type="radio"]:checked + label span {
|
|
color: inherit;
|
|
}
|
|
|
|
.wpforms-larger-icon-choice input[type="radio"]:checked + label svg path {
|
|
fill: currentColor;
|
|
}
|
|
|
|
.wpforms-larger-icon-choice label {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 15px;
|
|
height: 120px;
|
|
border-radius: 6px;
|
|
border: 1px solid #c3c4c7;
|
|
padding: 20px;
|
|
cursor: pointer;
|
|
transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
|
|
text-align: center;
|
|
background-color: #ffffff;
|
|
color: #a7aaad;
|
|
}
|
|
|
|
.wpforms-larger-icon-choice label svg {
|
|
height: 32px;
|
|
}
|
|
|
|
.wpforms-larger-icon-choice label svg path {
|
|
fill: currentColor;
|
|
}
|
|
|
|
.wpforms-larger-icon-choice label:hover {
|
|
color: #6a6f76;
|
|
box-shadow: 0 0 0 1px currentColor;
|
|
border-color: currentColor;
|
|
background-color: #f6f7f7;
|
|
}
|
|
|
|
.wpforms-larger-icon-choice label span {
|
|
color: #3c434a;
|
|
font-weight: 500;
|
|
}
|