Snapshot: MLS sync fixes, image refresh, plugin/theme updates

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>
This commit is contained in:
root
2026-04-29 15:32:23 +00:00
parent 57b752f54e
commit b6df4dbb92
5385 changed files with 838580 additions and 2416 deletions
@@ -0,0 +1,339 @@
.wpforms-admin-page .wpforms-alert {
background-color: #ffffff;
border: none;
border-inline-start: 4px solid #dcdcde;
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
color: #3c434a;
font-size: 14px;
font-weight: 400;
line-height: 18px;
margin-bottom: 20px;
padding: 10px;
}
.wpforms-admin-page .wpforms-alert-dismissible {
align-content: stretch;
align-items: center;
display: flex;
justify-content: flex-start;
margin: 30px 15px 20px 15px;
max-height: 100px;
opacity: 1;
overflow: hidden;
transition-property: all;
transition-duration: 0.25s;
transition-timing-function: ease-out;
}
.wpforms-admin-page .wpforms-alert-dismissible.out {
margin-bottom: 0;
margin-top: 0;
max-height: 0;
opacity: 0;
padding-bottom: 0;
padding-top: 0;
}
.wpforms-admin-page .wpforms-alert-dismissible h4 {
margin: 0 0 2px 0;
}
.wpforms-admin-page .wpforms-alert-dismissible p {
color: #3c434a;
}
.wpforms-admin-page .wpforms-alert-buttons {
display: flex;
margin-inline-start: auto;
padding-inline-start: 10px;
}
.wpforms-admin-page .wpforms-alert-buttons .wpforms-dismiss-button {
color: rgba(68, 68, 68, 0.35);
margin-inline-start: 7px;
margin-inline-end: -3px;
}
.wpforms-admin-page .wpforms-alert-buttons .wpforms-dismiss-button:hover {
color: rgba(68, 68, 68, 0.75);
}
.wpforms-admin-page .wpforms-alert h4 {
color: #3c434a;
font-size: 14px;
font-weight: 600;
line-height: 18px;
margin: 0 0 3px 0;
}
.wpforms-admin-page .wpforms-alert p {
line-height: 18px;
margin: 0 0 10px 0;
}
.wpforms-admin-page .wpforms-alert p:last-of-type {
margin: 0;
}
.wpforms-admin-page .wpforms-alert p.wpforms-alert-heading {
font-size: 16px;
font-weight: 500;
margin-bottom: 3px !important;
}
.wpforms-admin-page .wpforms-alert p.wpforms-alert-content {
font-size: 14px;
font-weight: 400;
margin-bottom: 0 !important;
}
.wpforms-admin-page .wpforms-alert.wpforms-alert-nomargin {
margin: 0;
}
.wpforms-admin-page .wpforms-alert.wpforms-alert-success {
border-inline-start-color: #00a32a;
}
.wpforms-admin-page .wpforms-alert.wpforms-alert-info {
border-inline-start-color: #036aab;
}
.wpforms-admin-page .wpforms-alert.wpforms-alert-warning {
border-inline-start-color: #ffb900;
}
.wpforms-admin-page .wpforms-alert.wpforms-alert-danger {
border-inline-start-color: #d63638;
}
.wpforms-admin-page .wpforms-alert.wpforms-alert-ai {
border-inline-start-color: #7a30e2;
}
.wpforms-admin-page .wpforms-alert.wpforms-alert-field-requirements .wpforms-alert-buttons {
padding: 10px 0 0 0;
}
.wpforms-admin-page .wpforms-alert .wpforms-aside-left {
float: left;
}
.wpforms-admin-page .wpforms-alert .wpforms-aside-right {
float: right;
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert {
box-shadow: none;
overflow: auto;
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert.wpforms-alert-success {
background-color: #edfaef;
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert.wpforms-alert-info {
background-color: #f1f6fa;
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert.wpforms-alert-warning {
background-color: #fcf9e8;
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert.wpforms-alert-danger {
background-color: #fcf0f1;
}
.wpforms-fullscreen-notice {
background: #036aab;
cursor: default;
height: 100%;
min-width: 0;
padding: 0 20px;
overflow: scroll;
position: fixed;
z-index: 100110;
text-align: center;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.wpforms-fullscreen-notice img {
height: 130px;
width: 130px;
}
.wpforms-fullscreen-notice img.sullie-icon {
background-color: #f0f0f1;
border: 5px solid #ffffff;
border-radius: 50%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.wpforms-fullscreen-notice h3 {
color: #ffffff;
font-weight: 700;
font-size: 18px;
line-height: 22px;
margin: 25px 0 5px 0;
}
.wpforms-fullscreen-notice p {
color: #cce0ed;
font-size: 16px;
font-weight: 300;
line-height: 22px;
margin: 0;
max-width: 640px;
}
.wpforms-fullscreen-notice a {
color: #cce0ed;
}
.wpforms-fullscreen-notice a:hover {
color: #ffffff;
}
.wpforms-fullscreen-notice .wpforms-fullscreen-notice-buttons {
display: flex;
flex-wrap: wrap;
gap: 25px;
/* Gap is unsupported in IE, but we have only one button on IE notice. */
justify-content: center;
margin-top: 25px;
}
.wpforms-fullscreen-notice .wpforms-fullscreen-notice-button {
border-radius: 4px;
cursor: pointer;
font-weight: 500;
font-size: 16px;
line-height: 20px;
height: auto;
padding: 10px 20px;
text-decoration: none;
text-shadow: none;
transition-property: all;
transition-duration: 0.05s;
transition-timing-function: ease-out;
}
.wpforms-fullscreen-notice .wpforms-fullscreen-notice-button-primary {
background-color: #e27730;
border: 2px solid #e27730;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
color: #ffffff;
}
.wpforms-fullscreen-notice .wpforms-fullscreen-notice-button-primary:hover {
background-color: #cd6622;
border-color: #cd6622;
}
.wpforms-fullscreen-notice .wpforms-fullscreen-notice-button-secondary {
background-color: transparent;
border: 2px solid #ffffff;
color: #ffffff;
opacity: .5;
}
.wpforms-fullscreen-notice .wpforms-fullscreen-notice-button-secondary:hover {
opacity: 1;
}
.wpforms-fullscreen-notice .close,
.wpforms-fullscreen-notice .dismiss {
background-color: transparent;
background-image: url("../../images/times-circle.svg");
border: none;
color: #81b5d5;
cursor: pointer;
height: 31px;
opacity: .5;
overflow: hidden;
position: absolute;
inset-inline-end: 20px;
top: 20px;
width: 31px;
transition-property: all;
transition-duration: 0.05s;
transition-timing-function: ease-out;
}
.wpforms-fullscreen-notice .close:hover,
.wpforms-fullscreen-notice .dismiss:hover {
opacity: 1;
}
.wpforms-fullscreen-notice .close:focus,
.wpforms-fullscreen-notice .dismiss:focus {
outline: none;
}
.wpforms-fullscreen-notice-light {
background: #e8e9e9;
}
.wpforms-fullscreen-notice-light h3 {
color: #3c434a;
}
.wpforms-fullscreen-notice-light p {
color: #6a6f76;
}
.wpforms-fullscreen-notice img {
height: auto;
width: auto;
max-width: 120px;
}
@supports (display: grid) {
#wpforms-builder-ie-notice {
display: none;
}
}
#wpforms-builder-abort-message h3 {
font-size: 24px;
line-height: 24px;
margin-bottom: 20px;
}
#wpforms-builder-abort-message img {
width: 400px;
height: auto;
margin: 30px 30px 0 30px;
}
#wpforms-builder-abort-message .wpforms-fullscreen-notice-button {
text-transform: initial;
}
#wpforms-builder-abort-message .waving-hand-emoji {
display: inline-block;
background-image: url("../../images/empty-states/waving-hand-emoji.png");
background-repeat: no-repeat;
background-size: 24px 24px;
background-position: 0 0;
padding-left: 34px;
}
@media (max-width: 640px) {
#wpforms-builder-abort-message img {
width: 250px;
}
}
@media (min-width: 1024px) {
#wpforms-builder-mobile-notice {
display: none;
}
}
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 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
File diff suppressed because one or more lines are too long
@@ -0,0 +1,69 @@
#wpforms-builder-overlay {
background: radial-gradient(50% 50% at 50% 50%, #f6f7f7 37.5%, #e8e9e9 100%);
cursor: default;
height: 100%;
min-width: 0;
overflow: hidden;
position: fixed;
z-index: 100;
top: 0;
right: 0;
bottom: 0;
left: 0;
transition-property: opacity;
transition-duration: 0.5s;
transition-timing-function: ease-out;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#wpforms-builder-overlay.fade-out {
opacity: 0;
}
.wpforms-builder-overlay-content {
text-align: center;
position: relative;
height: 100px;
width: 100px;
}
.wpforms-builder-overlay-content i {
display: block;
position: absolute;
left: 0;
top: 0;
}
.wpforms-builder-overlay-content i.spinner {
background-image: url("../../images/builder/loading-spinner.svg");
border-radius: 50%;
height: 100px;
width: 100px;
-webkit-animation: wpforms-spinner-rotation 0.8s linear infinite;
-moz-animation: wpforms-spinner-rotation 0.8s linear infinite;
-ms-animation: wpforms-spinner-rotation 0.8s linear infinite;
-o-animation: wpforms-spinner-rotation 0.8s linear infinite;
animation: wpforms-spinner-rotation 0.8s linear infinite;
}
.wpforms-builder-overlay-content i.avatar {
background-color: #ffffff;
background-image: url("../../images/builder/loading-avatar.svg");
border-radius: 50%;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
height: 80px;
margin: 10px;
width: 80px;
}
@keyframes wpforms-spinner-rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@@ -0,0 +1 @@
#wpforms-builder-overlay{background:radial-gradient(50% 50% at 50% 50%, #f6f7f7 37.5%, #e8e9e9 100%);cursor:default;height:100%;min-width:0;overflow:hidden;position:fixed;z-index:100;top:0;right:0;bottom:0;left:0;transition-property:opacity;transition-duration:0.5s;transition-timing-function:ease-out;display:flex;flex-direction:column;justify-content:center;align-items:center}#wpforms-builder-overlay.fade-out{opacity:0}.wpforms-builder-overlay-content{text-align:center;position:relative;height:100px;width:100px}.wpforms-builder-overlay-content i{display:block;position:absolute;left:0;top:0}.wpforms-builder-overlay-content i.spinner{background-image:url("../../images/builder/loading-spinner.svg");border-radius:50%;height:100px;width:100px;-webkit-animation:wpforms-spinner-rotation 0.8s linear infinite;-moz-animation:wpforms-spinner-rotation 0.8s linear infinite;-ms-animation:wpforms-spinner-rotation 0.8s linear infinite;-o-animation:wpforms-spinner-rotation 0.8s linear infinite;animation:wpforms-spinner-rotation 0.8s linear infinite}.wpforms-builder-overlay-content i.avatar{background-color:#ffffff;background-image:url("../../images/builder/loading-avatar.svg");border-radius:50%;box-shadow:0 2px 5px rgba(0,0,0,0.15);height:80px;margin:10px;width:80px}@keyframes wpforms-spinner-rotation{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1,330 @@
textarea::-webkit-scrollbar,
.wpforms-panel-content-wrap::-webkit-scrollbar,
.wpforms-panels-toggle::-webkit-scrollbar,
.smart-tags-list::-webkit-scrollbar,
.smart-tags-list-display::-webkit-scrollbar,
#wpforms-panel-fields .wpforms-tab-content::-webkit-scrollbar,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar::-webkit-scrollbar,
#wpforms-builder-help::-webkit-scrollbar,
.wpforms-builder-themes-sidebar-content::-webkit-scrollbar,
.wpforms-scrollbar-compact::-webkit-scrollbar {
background: transparent;
width: 15px;
height: 15px;
}
textarea::-webkit-scrollbar-track,
.wpforms-panel-content-wrap::-webkit-scrollbar-track,
.wpforms-panels-toggle::-webkit-scrollbar-track,
.smart-tags-list::-webkit-scrollbar-track,
.smart-tags-list-display::-webkit-scrollbar-track,
#wpforms-panel-fields .wpforms-tab-content::-webkit-scrollbar-track,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar::-webkit-scrollbar-track,
#wpforms-builder-help::-webkit-scrollbar-track,
.wpforms-builder-themes-sidebar-content::-webkit-scrollbar-track,
.wpforms-scrollbar-compact::-webkit-scrollbar-track {
background: transparent;
}
textarea::-webkit-scrollbar-thumb,
.wpforms-panel-content-wrap::-webkit-scrollbar-thumb,
.wpforms-panels-toggle::-webkit-scrollbar-thumb,
.smart-tags-list::-webkit-scrollbar-thumb,
.smart-tags-list-display::-webkit-scrollbar-thumb,
#wpforms-panel-fields .wpforms-tab-content::-webkit-scrollbar-thumb,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar::-webkit-scrollbar-thumb,
#wpforms-builder-help::-webkit-scrollbar-thumb,
.wpforms-builder-themes-sidebar-content::-webkit-scrollbar-thumb,
.wpforms-scrollbar-compact::-webkit-scrollbar-thumb {
box-shadow: inset 0 0 5px 5px rgba(0, 0, 0, 0);
background: transparent;
border-radius: 15px;
border: solid 4px transparent;
}
textarea::-webkit-resizer, textarea::-webkit-scrollbar-button, textarea::-webkit-scrollbar-corner,
.wpforms-panel-content-wrap::-webkit-resizer,
.wpforms-panel-content-wrap::-webkit-scrollbar-button,
.wpforms-panel-content-wrap::-webkit-scrollbar-corner,
.wpforms-panels-toggle::-webkit-resizer,
.wpforms-panels-toggle::-webkit-scrollbar-button,
.wpforms-panels-toggle::-webkit-scrollbar-corner,
.smart-tags-list::-webkit-resizer,
.smart-tags-list::-webkit-scrollbar-button,
.smart-tags-list::-webkit-scrollbar-corner,
.smart-tags-list-display::-webkit-resizer,
.smart-tags-list-display::-webkit-scrollbar-button,
.smart-tags-list-display::-webkit-scrollbar-corner,
#wpforms-panel-fields .wpforms-tab-content::-webkit-resizer,
#wpforms-panel-fields .wpforms-tab-content::-webkit-scrollbar-button,
#wpforms-panel-fields .wpforms-tab-content::-webkit-scrollbar-corner,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar::-webkit-resizer,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar::-webkit-scrollbar-button,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar::-webkit-scrollbar-corner,
#wpforms-builder-help::-webkit-resizer,
#wpforms-builder-help::-webkit-scrollbar-button,
#wpforms-builder-help::-webkit-scrollbar-corner,
.wpforms-builder-themes-sidebar-content::-webkit-resizer,
.wpforms-builder-themes-sidebar-content::-webkit-scrollbar-button,
.wpforms-builder-themes-sidebar-content::-webkit-scrollbar-corner,
.wpforms-scrollbar-compact::-webkit-resizer,
.wpforms-scrollbar-compact::-webkit-scrollbar-button,
.wpforms-scrollbar-compact::-webkit-scrollbar-corner {
display: none;
}
@-moz-document url-prefix() {
textarea,
.wpforms-panel-content-wrap,
.wpforms-panels-toggle,
.smart-tags-list,
.smart-tags-list-display,
#wpforms-panel-fields .wpforms-tab-content,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar,
#wpforms-builder-help,
.wpforms-builder-themes-sidebar-content,
.wpforms-scrollbar-compact {
scrollbar-color: rgba(0, 0, 0, 0) transparent;
scrollbar-gutter: initial !important;
scrollbar-width: thin;
}
}
textarea:hover::-webkit-scrollbar, textarea:focus::-webkit-scrollbar,
.wpforms-panel-content-wrap:hover::-webkit-scrollbar,
.wpforms-panel-content-wrap:focus::-webkit-scrollbar,
.wpforms-panels-toggle:hover::-webkit-scrollbar,
.wpforms-panels-toggle:focus::-webkit-scrollbar,
.smart-tags-list:hover::-webkit-scrollbar,
.smart-tags-list:focus::-webkit-scrollbar,
.smart-tags-list-display:hover::-webkit-scrollbar,
.smart-tags-list-display:focus::-webkit-scrollbar,
#wpforms-panel-fields .wpforms-tab-content:hover::-webkit-scrollbar,
#wpforms-panel-fields .wpforms-tab-content:focus::-webkit-scrollbar,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar:hover::-webkit-scrollbar,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar:focus::-webkit-scrollbar,
#wpforms-builder-help:hover::-webkit-scrollbar,
#wpforms-builder-help:focus::-webkit-scrollbar,
.wpforms-builder-themes-sidebar-content:hover::-webkit-scrollbar,
.wpforms-builder-themes-sidebar-content:focus::-webkit-scrollbar,
.wpforms-scrollbar-compact:hover::-webkit-scrollbar,
.wpforms-scrollbar-compact:focus::-webkit-scrollbar {
background: transparent;
width: 15px;
height: 15px;
}
textarea:hover::-webkit-scrollbar-track, textarea:focus::-webkit-scrollbar-track,
.wpforms-panel-content-wrap:hover::-webkit-scrollbar-track,
.wpforms-panel-content-wrap:focus::-webkit-scrollbar-track,
.wpforms-panels-toggle:hover::-webkit-scrollbar-track,
.wpforms-panels-toggle:focus::-webkit-scrollbar-track,
.smart-tags-list:hover::-webkit-scrollbar-track,
.smart-tags-list:focus::-webkit-scrollbar-track,
.smart-tags-list-display:hover::-webkit-scrollbar-track,
.smart-tags-list-display:focus::-webkit-scrollbar-track,
#wpforms-panel-fields .wpforms-tab-content:hover::-webkit-scrollbar-track,
#wpforms-panel-fields .wpforms-tab-content:focus::-webkit-scrollbar-track,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar:hover::-webkit-scrollbar-track,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar:focus::-webkit-scrollbar-track,
#wpforms-builder-help:hover::-webkit-scrollbar-track,
#wpforms-builder-help:focus::-webkit-scrollbar-track,
.wpforms-builder-themes-sidebar-content:hover::-webkit-scrollbar-track,
.wpforms-builder-themes-sidebar-content:focus::-webkit-scrollbar-track,
.wpforms-scrollbar-compact:hover::-webkit-scrollbar-track,
.wpforms-scrollbar-compact:focus::-webkit-scrollbar-track {
background: transparent;
}
textarea:hover::-webkit-scrollbar-thumb, textarea:focus::-webkit-scrollbar-thumb,
.wpforms-panel-content-wrap:hover::-webkit-scrollbar-thumb,
.wpforms-panel-content-wrap:focus::-webkit-scrollbar-thumb,
.wpforms-panels-toggle:hover::-webkit-scrollbar-thumb,
.wpforms-panels-toggle:focus::-webkit-scrollbar-thumb,
.smart-tags-list:hover::-webkit-scrollbar-thumb,
.smart-tags-list:focus::-webkit-scrollbar-thumb,
.smart-tags-list-display:hover::-webkit-scrollbar-thumb,
.smart-tags-list-display:focus::-webkit-scrollbar-thumb,
#wpforms-panel-fields .wpforms-tab-content:hover::-webkit-scrollbar-thumb,
#wpforms-panel-fields .wpforms-tab-content:focus::-webkit-scrollbar-thumb,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar:hover::-webkit-scrollbar-thumb,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar:focus::-webkit-scrollbar-thumb,
#wpforms-builder-help:hover::-webkit-scrollbar-thumb,
#wpforms-builder-help:focus::-webkit-scrollbar-thumb,
.wpforms-builder-themes-sidebar-content:hover::-webkit-scrollbar-thumb,
.wpforms-builder-themes-sidebar-content:focus::-webkit-scrollbar-thumb,
.wpforms-scrollbar-compact:hover::-webkit-scrollbar-thumb,
.wpforms-scrollbar-compact:focus::-webkit-scrollbar-thumb {
box-shadow: inset 0 0 5px 5px rgba(0, 0, 0, 0.5);
background: transparent;
border-radius: 15px;
border: solid 4px transparent;
}
textarea:hover::-webkit-resizer, textarea:hover::-webkit-scrollbar-button, textarea:hover::-webkit-scrollbar-corner, textarea:focus::-webkit-resizer, textarea:focus::-webkit-scrollbar-button, textarea:focus::-webkit-scrollbar-corner,
.wpforms-panel-content-wrap:hover::-webkit-resizer,
.wpforms-panel-content-wrap:hover::-webkit-scrollbar-button,
.wpforms-panel-content-wrap:hover::-webkit-scrollbar-corner,
.wpforms-panel-content-wrap:focus::-webkit-resizer,
.wpforms-panel-content-wrap:focus::-webkit-scrollbar-button,
.wpforms-panel-content-wrap:focus::-webkit-scrollbar-corner,
.wpforms-panels-toggle:hover::-webkit-resizer,
.wpforms-panels-toggle:hover::-webkit-scrollbar-button,
.wpforms-panels-toggle:hover::-webkit-scrollbar-corner,
.wpforms-panels-toggle:focus::-webkit-resizer,
.wpforms-panels-toggle:focus::-webkit-scrollbar-button,
.wpforms-panels-toggle:focus::-webkit-scrollbar-corner,
.smart-tags-list:hover::-webkit-resizer,
.smart-tags-list:hover::-webkit-scrollbar-button,
.smart-tags-list:hover::-webkit-scrollbar-corner,
.smart-tags-list:focus::-webkit-resizer,
.smart-tags-list:focus::-webkit-scrollbar-button,
.smart-tags-list:focus::-webkit-scrollbar-corner,
.smart-tags-list-display:hover::-webkit-resizer,
.smart-tags-list-display:hover::-webkit-scrollbar-button,
.smart-tags-list-display:hover::-webkit-scrollbar-corner,
.smart-tags-list-display:focus::-webkit-resizer,
.smart-tags-list-display:focus::-webkit-scrollbar-button,
.smart-tags-list-display:focus::-webkit-scrollbar-corner,
#wpforms-panel-fields .wpforms-tab-content:hover::-webkit-resizer,
#wpforms-panel-fields .wpforms-tab-content:hover::-webkit-scrollbar-button,
#wpforms-panel-fields .wpforms-tab-content:hover::-webkit-scrollbar-corner,
#wpforms-panel-fields .wpforms-tab-content:focus::-webkit-resizer,
#wpforms-panel-fields .wpforms-tab-content:focus::-webkit-scrollbar-button,
#wpforms-panel-fields .wpforms-tab-content:focus::-webkit-scrollbar-corner,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar:hover::-webkit-resizer,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar:hover::-webkit-scrollbar-button,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar:hover::-webkit-scrollbar-corner,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar:focus::-webkit-resizer,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar:focus::-webkit-scrollbar-button,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar:focus::-webkit-scrollbar-corner,
#wpforms-builder-help:hover::-webkit-resizer,
#wpforms-builder-help:hover::-webkit-scrollbar-button,
#wpforms-builder-help:hover::-webkit-scrollbar-corner,
#wpforms-builder-help:focus::-webkit-resizer,
#wpforms-builder-help:focus::-webkit-scrollbar-button,
#wpforms-builder-help:focus::-webkit-scrollbar-corner,
.wpforms-builder-themes-sidebar-content:hover::-webkit-resizer,
.wpforms-builder-themes-sidebar-content:hover::-webkit-scrollbar-button,
.wpforms-builder-themes-sidebar-content:hover::-webkit-scrollbar-corner,
.wpforms-builder-themes-sidebar-content:focus::-webkit-resizer,
.wpforms-builder-themes-sidebar-content:focus::-webkit-scrollbar-button,
.wpforms-builder-themes-sidebar-content:focus::-webkit-scrollbar-corner,
.wpforms-scrollbar-compact:hover::-webkit-resizer,
.wpforms-scrollbar-compact:hover::-webkit-scrollbar-button,
.wpforms-scrollbar-compact:hover::-webkit-scrollbar-corner,
.wpforms-scrollbar-compact:focus::-webkit-resizer,
.wpforms-scrollbar-compact:focus::-webkit-scrollbar-button,
.wpforms-scrollbar-compact:focus::-webkit-scrollbar-corner {
display: none;
}
@-moz-document url-prefix() {
textarea:hover, textarea:focus,
.wpforms-panel-content-wrap:hover,
.wpforms-panel-content-wrap:focus,
.wpforms-panels-toggle:hover,
.wpforms-panels-toggle:focus,
.smart-tags-list:hover,
.smart-tags-list:focus,
.smart-tags-list-display:hover,
.smart-tags-list-display:focus,
#wpforms-panel-fields .wpforms-tab-content:hover,
#wpforms-panel-fields .wpforms-tab-content:focus,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar:hover,
.wpforms-panel:not(#wpforms-panel-fields) .wpforms-panel-sidebar:focus,
#wpforms-builder-help:hover,
#wpforms-builder-help:focus,
.wpforms-builder-themes-sidebar-content:hover,
.wpforms-builder-themes-sidebar-content:focus,
.wpforms-scrollbar-compact:hover,
.wpforms-scrollbar-compact:focus {
scrollbar-color: rgba(0, 0, 0, 0.5) transparent;
scrollbar-gutter: initial !important;
scrollbar-width: thin;
}
}
#wpforms-panel-fields .wpforms-panel-sidebar-content .wpforms-tab-content {
scrollbar-gutter: stable;
}
#wpforms-panel-fields .wpforms-panel-sidebar-content .wpforms-tab-content.wpforms-add-fields,
#wpforms-panel-fields .wpforms-panel-sidebar-content .wpforms-tab-content .wpforms-field-option-group-inner,
#wpforms-panel-fields .wpforms-panel-sidebar-content .wpforms-tab-content .wpforms-field-option-field-title-notice {
padding-inline-end: 6px;
}
.wpforms-panel .wpforms-panel-sidebar-content .wpforms-panel-content-wrap {
scroll-behavior: smooth;
scrollbar-gutter: stable;
padding-inline-end: 16px;
}
.wpforms-builder-dropdown-list ul::-webkit-scrollbar {
background: transparent;
width: 4px;
height: 4px;
}
.wpforms-builder-dropdown-list ul::-webkit-scrollbar-track {
background: transparent;
}
.wpforms-builder-dropdown-list ul::-webkit-scrollbar-thumb {
box-shadow: inset 0 0 4px 4px rgba(0, 0, 0, 0);
background: transparent;
border-radius: 4px;
border: solid -1px transparent;
}
.wpforms-builder-dropdown-list ul::-webkit-resizer, .wpforms-builder-dropdown-list ul::-webkit-scrollbar-button, .wpforms-builder-dropdown-list ul::-webkit-scrollbar-corner {
display: none;
}
@-moz-document url-prefix() {
.wpforms-builder-dropdown-list ul {
scrollbar-color: rgba(0, 0, 0, 0) transparent;
scrollbar-gutter: initial !important;
scrollbar-width: thin;
}
}
.wpforms-builder-dropdown-list ul:hover::-webkit-scrollbar {
background: transparent;
width: 4px;
height: 4px;
}
.wpforms-builder-dropdown-list ul:hover::-webkit-scrollbar-track {
background: transparent;
}
.wpforms-builder-dropdown-list ul:hover::-webkit-scrollbar-thumb {
box-shadow: inset 0 0 4px 4px rgba(0, 0, 0, 0.5);
background: transparent;
border-radius: 4px;
border: solid -1px transparent;
}
.wpforms-builder-dropdown-list ul:hover::-webkit-resizer, .wpforms-builder-dropdown-list ul:hover::-webkit-scrollbar-button, .wpforms-builder-dropdown-list ul:hover::-webkit-scrollbar-corner {
display: none;
}
@-moz-document url-prefix() {
.wpforms-builder-dropdown-list ul:hover {
scrollbar-color: rgba(0, 0, 0, 0.5) transparent;
scrollbar-gutter: initial !important;
scrollbar-width: thin;
}
}
@-moz-document url-prefix() {
#wpforms-panel-fields .wpforms-panel-sidebar-content .wpforms-tab-content.wpforms-add-fields,
#wpforms-panel-fields .wpforms-panel-sidebar-content .wpforms-tab-content .wpforms-field-option-group-inner {
padding-inline-end: 20px !important;
}
.wpforms-panel .wpforms-panel-sidebar-content .wpforms-panel-content-wrap {
padding-inline-end: 30px !important;
}
}
File diff suppressed because one or more lines are too long
@@ -0,0 +1,933 @@
.tooltipster-base.tooltipster-sidetip .tooltipster-content {
font-size: 14px;
padding: 8px 16px;
}
.tooltipster-base.tooltipster-sidetip .tooltipster-arrow-border {
display: none;
}
.tooltipster-base.tooltipster-sidetip .tooltipster-arrow-background {
border-width: 6px;
border-color: transparent;
}
.tooltipster-base.tooltipster-sidetip .tooltipster-box {
background: rgba(34, 34, 34, 0.95);
border: none;
}
.tooltipster-base.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background, .tooltipster-base.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
top: 0;
}
.tooltipster-base.tooltipster-sidetip.tooltipster-top .tooltipster-content, .tooltipster-base.tooltipster-sidetip.tooltipster-bottom .tooltipster-content {
text-align: center;
}
.tooltipster-base.tooltipster-sidetip.tooltipster-top .tooltipster-arrow, .tooltipster-base.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
height: 6px;
margin-left: -6px;
width: 12px;
}
.tooltipster-base.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background, .tooltipster-base.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
left: 0;
}
.tooltipster-base.tooltipster-sidetip.tooltipster-left .tooltipster-arrow, .tooltipster-base.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
height: 12px;
margin-top: -6px;
width: 6px;
}
.tooltipster-base.tooltipster-sidetip.tooltipster-top .tooltipster-box {
margin-bottom: 6px;
}
.tooltipster-base.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
border-top-color: rgba(34, 34, 34, 0.95);
}
.tooltipster-base.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
margin-top: 6px;
}
.tooltipster-base.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
border-bottom-color: rgba(34, 34, 34, 0.95);
}
.tooltipster-base.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
top: -6px;
}
.tooltipster-base.tooltipster-sidetip.tooltipster-right .tooltipster-box {
margin-left: 6px;
}
.tooltipster-base.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
border-right-color: rgba(34, 34, 34, 0.95);
}
.tooltipster-base.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
left: -6px;
}
.tooltipster-base.tooltipster-sidetip.tooltipster-left .tooltipster-box {
margin-right: 6px;
}
.tooltipster-base.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
border-left-color: rgba(34, 34, 34, 0.95);
}
.wpforms-admin-popup-container {
background-color: rgba(0, 0, 0, 0.5);
display: none;
height: 100vh;
left: 0;
overflow: hidden;
position: fixed;
top: 0;
width: 100%;
z-index: 100100;
}
.wpforms-admin-popup {
background-color: white;
border-radius: 6px;
-moz-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
display: block !important;
left: 50%;
max-width: 550px;
min-width: 550px;
position: absolute;
text-align: center;
top: 50%;
transform: translate(-50%, -50%);
overflow: visible;
}
.wpforms-admin-popup-content {
padding: 40px 50px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.wpforms-admin-popup-content h3 {
color: #3c434a;
font-size: 24px;
font-weight: 600;
letter-spacing: 0;
margin: 0 0 20px 0;
text-align: center;
}
.wpforms-admin-popup-content p {
color: #6a6f76;
font-size: 16px;
letter-spacing: 0;
line-height: 22px;
margin: 0 0 15px 0;
text-align: center;
}
.wpforms-admin-popup-content p.no-gap {
margin-bottom: 0;
}
.wpforms-admin-popup-content p.secondary {
font-size: 14px;
line-height: 17px;
}
.wpforms-admin-popup-content p:last-of-type {
margin-bottom: 0;
}
.wpforms-admin-popup-content b {
font-weight: 600;
}
.wpforms-admin-popup-content select, .wpforms-admin-popup-content input[type=text] {
border: 1px solid #dcdcde;
border-radius: 4px;
color: #6a6f76;
font-size: 14px;
height: auto;
line-height: 21px;
padding: 8px 12px 8px 12px;
vertical-align: middle;
width: 320px;
}
.wpforms-admin-popup-content select:focus, .wpforms-admin-popup-content input[type=text]:focus {
border-color: #036aab;
}
.wpforms-admin-popup-content .choices__inner {
padding: 0;
width: 320px;
}
.wpforms-admin-popup-content input[type=text].wpforms-admin-popup-shortcode {
background: #f6f7f7;
color: #3c434a;
font-family: monospace;
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: 15px;
margin: 20px 0 0 0;
padding: 12px 22px;
text-align: center;
width: 100%;
}
.wpforms-admin-popup-content a.wpforms-admin-popup-toggle {
color: #6a6f76;
text-decoration-line: underline;
}
.wpforms-admin-popup-content a.wpforms-admin-popup-toggle:hover, .wpforms-admin-popup-content a.wpforms-admin-popup-toggle:focus {
box-shadow: none;
color: #3c434a;
}
.wpforms-admin-popup-content iframe {
height: 253px;
margin: 20px 0 0 0;
width: 449px;
}
.wpforms-admin-popup-close {
color: #b0b2b3;
cursor: pointer;
display: block;
font-size: 16px !important;
line-height: 12px;
position: absolute;
inset-inline-end: 10px;
top: 10px;
}
.wpforms-admin-popup-close:hover {
color: #6a6f76;
}
.wpforms-admin-popup-btn {
background-color: #e27730;
border: none;
border-radius: 4px;
box-shadow: none;
color: #ffffff;
cursor: pointer;
display: inline-block;
font-size: 16px;
font-weight: 600;
line-height: 19px;
max-width: calc( 50% - 15px);
width: calc( 50% - 15px);
overflow: hidden;
padding: 10px 20px;
text-align: center;
text-decoration: none;
text-overflow: ellipsis;
vertical-align: middle;
white-space: nowrap;
}
.wpforms-admin-popup-btn:hover {
background-color: #cd6622;
}
.wpforms-admin-popup-btn .dashicons-external {
margin-inline-start: 6px;
}
.wpforms-admin-popup-btn[data-action="go"] {
width: 120px;
}
.wpforms-admin-popup-btn:first-child {
margin-inline-end: 10px;
}
.wpforms-admin-popup-btn:last-child {
margin-inline-start: 10px;
}
.wpforms-admin-popup-btn:only-child {
margin-left: 0;
margin-right: 0;
}
.wpforms-admin-popup-btn:disabled {
cursor: default;
opacity: .5;
}
.wpforms-admin-popup-btn:disabled:hover {
background-color: #e27730;
}
.wpforms-admin-popup-bottom {
margin: 20px 0 0 0;
}
.wpforms-admin-popup-flex {
align-items: stretch;
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
}
#wpforms-admin-form-embed-wizard .is-flipped .choices__list--dropdown {
top: 100%;
bottom: auto;
margin-top: -1px;
margin-bottom: 0;
}
#wpforms-admin-form-embed-wizard .choices__list--single {
color: #6a6f76;
line-height: 21px;
padding: 8px 12px 8px 12px;
vertical-align: middle;
}
#wpforms-admin-form-embed-wizard .choices__item {
color: #6a6f76;
}
#wpforms-admin-form-embed-wizard-shortcode-wrap {
display: table;
margin: 0 auto;
}
#wpforms-admin-form-embed-wizard-shortcode {
inset-inline-start: 15px;
position: relative;
width: 400px;
}
#wpforms-admin-form-embed-wizard-shortcode-copy {
position: relative;
inset-inline-end: 25px;
top: 10px;
}
#wpforms-admin-form-embed-wizard-shortcode-copy i {
background: #ffffff;
border: 1px solid #c3c4c7;
border-radius: 3px;
color: #a7aaad;
cursor: pointer;
padding: 8px;
width: 32px;
vertical-align: middle;
}
#wpforms-admin-form-embed-wizard-shortcode-copy:hover i {
border-color: #8c8f94;
color: #3c434a;
}
#wpforms-builder-help {
background-color: #ffffff;
display: block;
height: 100%;
max-height: 100vh;
opacity: 1;
overflow-y: auto;
position: fixed;
width: 100vw;
z-index: 100100;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
#wpforms-builder-help * {
opacity: 1;
}
#wpforms-builder-help .wpforms-builder-help-docs {
margin: 0 0 25px 0;
}
#wpforms-builder-help .wpforms-builder-help-docs li {
margin: 0;
padding-bottom: 14px;
padding-inline-start: 4px;
}
#wpforms-builder-help .wpforms-builder-help-docs li i {
color: #b0b2b3;
font-size: 16px;
margin-inline-end: 14px;
}
#wpforms-builder-help .wpforms-builder-help-docs li a {
border-bottom: 1px solid transparent;
color: #6a6f76;
font-size: 15px;
text-decoration: none;
}
#wpforms-builder-help .wpforms-builder-help-docs li a:hover {
border-bottom: 1px solid #79c2f4;
color: #036aab;
}
#wpforms-builder-help .wpforms-builder-help-docs .viewall {
margin: 10px 0 0 0;
}
#wpforms-builder-help .wpforms-btn.wpforms-btn-md {
font-size: 15px;
font-weight: 600;
min-height: auto;
padding: 11px 17px 11px 17px;
}
#wpforms-builder-help-logo {
height: 50px;
inset-inline-start: 20px;
position: fixed;
top: 20px;
width: 64px;
}
#wpforms-builder-help-close {
cursor: pointer;
font-size: 32px;
height: 28px;
position: fixed;
inset-inline-end: 20px;
top: 20px;
width: 28px;
transition-property: all;
transition-duration: 0.05s;
transition-timing-function: ease-out;
}
#wpforms-builder-help-close svg {
height: 100% !important;
width: 100% !important;
}
#wpforms-builder-help-close svg path {
fill: #a7aaad !important;
}
#wpforms-builder-help-close:hover svg path {
fill: #6a6f76 !important;
}
#wpforms-builder-help-content {
background-color: #ffffff;
margin: 0 auto 50px auto;
width: 700px;
}
#wpforms-builder-help-content #wpforms-builder-help-search {
background-color: #ffffff;
padding: 74px 0 50px 0;
position: relative;
text-align: center;
top: 0;
}
#wpforms-builder-help-content #wpforms-builder-help-search input {
background-image: none;
background-position: 22px center;
background-repeat: no-repeat;
background-size: 20px 20px;
border: 1px solid #a7aaad;
border-radius: 25px;
color: #3c434a;
font-size: 20px;
letter-spacing: 0;
line-height: 20px;
min-height: 48px;
padding-block: 10px;
padding-inline-end: 10px;
padding-inline-start: 54px;
text-align: start;
width: 700px;
}
#wpforms-builder-help-content #wpforms-builder-help-search input:focus {
border: 1px solid #036aab;
}
#wpforms-builder-help-content #wpforms-builder-help-search input::placeholder {
color: #b0b2b3;
}
.rtl #wpforms-builder-help-content #wpforms-builder-help-search input {
background-position: calc(100% - 22px) center;
}
#wpforms-builder-help-content #wpforms-builder-help-search #wpforms-builder-help-search-clear {
cursor: pointer;
height: 20px;
inset-inline-start: 22px;
opacity: .7;
position: absolute;
top: 89px;
width: 20px;
}
#wpforms-builder-help-content #wpforms-builder-help-search #wpforms-builder-help-search-clear svg {
height: 100% !important;
width: 100% !important;
}
#wpforms-builder-help-content #wpforms-builder-help-search #wpforms-builder-help-search-clear svg path {
fill: #a7aaad !important;
}
#wpforms-builder-help-content #wpforms-builder-help-search #wpforms-builder-help-search-clear:hover {
opacity: 1;
}
#wpforms-builder-help-content #wpforms-builder-help-search.wpforms-empty #wpforms-builder-help-search-clear {
display: none;
}
#wpforms-builder-help-content #wpforms-builder-help-search.wpforms-empty input {
background-image: url("../../images/search.svg");
}
#wpforms-builder-help-content .wpforms-builder-help-error {
font-size: 16px;
font-weight: 600;
margin: 220px 0 100px 0;
text-align: center;
}
#wpforms-builder-help-result .wpforms-builder-help-docs, #wpforms-builder-help-no-result .wpforms-builder-help-docs {
margin: 0 0 36px 0;
}
#wpforms-builder-help-result span, #wpforms-builder-help-no-result span {
color: #6a6f76;
font-size: 15px;
}
#wpforms-builder-help-categories .wpforms-builder-help-categories-toggle .wpforms-builder-help-category {
border-top: 1px solid #dcdcde;
margin: 0;
}
#wpforms-builder-help-categories .wpforms-builder-help-categories-toggle .wpforms-builder-help-category:last-child {
border-bottom: 1px solid #dcdcde;
}
#wpforms-builder-help-categories .wpforms-builder-help-categories-toggle .wpforms-builder-help-category header {
align-items: center;
cursor: pointer;
display: flex;
flex-direction: row;
justify-content: flex-start;
}
#wpforms-builder-help-categories .wpforms-builder-help-categories-toggle .wpforms-builder-help-category header:hover span {
color: #036aab;
}
#wpforms-builder-help-categories .wpforms-builder-help-categories-toggle .wpforms-builder-help-category header i.wpforms-folder {
color: #a7aaad;
font-size: 21px;
margin-block: 23px;
margin-inline-end: 11px;
}
#wpforms-builder-help-categories .wpforms-builder-help-categories-toggle .wpforms-builder-help-category header i.wpforms-arrow {
color: #c3c4c7;
font-size: 24px;
margin-inline-start: auto;
transition-property: transform;
transition-duration: 0.25s;
transition-timing-function: ease-out;
}
.rtl #wpforms-builder-help-categories .wpforms-builder-help-categories-toggle .wpforms-builder-help-category header i.wpforms-arrow {
transform: scale(-1, 1);
}
#wpforms-builder-help-categories .wpforms-builder-help-categories-toggle .wpforms-builder-help-category header span {
color: #3c434a;
font-size: 16px;
font-weight: 600;
}
#wpforms-builder-help-categories .wpforms-builder-help-categories-toggle .wpforms-builder-help-category.opened i.wpforms-arrow {
transform: rotate(90deg);
}
#wpforms-builder-help-footer {
align-items: center;
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
margin: 50px 0 0 0;
}
#wpforms-builder-help-footer .wpforms-builder-help-footer-block {
border: 1px solid #dcdcde;
border-radius: 6px;
box-sizing: border-box;
max-width: 325px;
padding: 25px;
text-align: center;
}
#wpforms-builder-help-footer .wpforms-builder-help-footer-block i {
color: #a7aaad;
font-size: 48px;
margin: 0 0 20px 0;
}
#wpforms-builder-help-footer .wpforms-builder-help-footer-block h3 {
color: #3c434a;
font-size: 16px;
margin: 0 0 10px 0;
}
#wpforms-builder-help-footer .wpforms-builder-help-footer-block p {
color: #6a6f76;
font-size: 14px;
margin: 0 0 20px 0;
}
@-webkit-keyframes rotation {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes rotation {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@media screen and (max-width: 750px) {
#wpforms-builder-help {
display: none;
}
}
@media screen and (max-width: 1023px) {
.wpforms-dyk-row {
display: none !important;
}
}
.wpforms-dyk .wpforms-dyk-fbox {
align-content: stretch;
align-items: center;
background-color: #f1f6fa;
border-inline-start: 4px solid #036aab;
display: flex;
font-size: 14px;
gap: 10px;
justify-content: space-between;
opacity: 1;
padding-block: 12px;
padding-inline-end: 12px;
padding-inline-start: 20px;
transition-property: all;
transition-duration: 0.25s;
transition-timing-function: ease-out;
}
.wpforms-dyk .wpforms-dyk-fbox.out {
opacity: 0;
transform: scaleY(0);
}
.wpforms-dyk .wpforms-dyk-message b {
font-weight: 700;
}
.wpforms-dyk .wpforms-dyk-buttons {
align-items: center;
display: flex;
gap: 10px;
}
.wpforms-dyk .wpforms-dyk-buttons .learn-more {
text-decoration: underline;
}
.wpforms-dyk .wpforms-dyk-buttons .learn-more:hover {
color: #3c434a;
}
.wpforms-dyk .wpforms-dyk-buttons .wpforms-btn-md {
font-size: 14px;
min-height: auto;
}
.wpforms-smtp-education-notice {
background: #f0f0f1;
border-radius: 3px;
margin: 30px 0;
padding-block: 18px;
padding-inline-end: 100px;
padding-inline-start: 20px;
position: relative;
}
.wpforms-smtp-education-notice:after {
content: '';
display: block;
width: 97px;
height: 78px;
position: absolute;
bottom: 0;
inset-inline-end: 0;
background-image: url("../../images/smtp/pattie-2.svg");
background-size: 100%;
z-index: 1;
}
.wpforms-smtp-education-notice-title {
font-weight: 600;
font-size: 16px;
line-height: 20px;
}
.wpforms-smtp-education-notice-description {
font-weight: 400;
font-size: 14px;
line-height: 17px;
color: #6a6f76;
margin-top: 5px;
}
.wpforms-smtp-education-notice-description a {
color: #e27730;
font-weight: 600;
}
.wpforms-smtp-education-notice-description a:hover {
color: #cd6622;
}
.wpforms-smtp-education-notice-dismiss-button {
z-index: 2;
position: absolute;
inset-inline-end: 0;
top: 0;
padding: 5px;
color: #b0b2b3;
}
.wpforms-smtp-education-notice-dismiss-button:before {
content: none !important;
}
.wpforms-smtp-education-notice-dismiss-button:hover {
color: #6a6f76;
}
@media (max-width: 1024px) {
.wpforms-smtp-education-notice {
padding: 18px 20px;
}
.wpforms-smtp-education-notice::after {
margin-top: -18px;
position: relative;
bottom: -18px;
margin-inline-start: auto;
inset-inline-end: auto;
}
}
.wpforms-educational-alert.wpforms-calculations {
position: relative;
padding-right: 30px;
}
.wpforms-educational-alert.wpforms-calculations .wpforms-dismiss-button {
position: absolute;
inset-inline-end: 1px;
top: 2px;
}
.wpforms-educational-alert.wpforms-calculations .wpforms-badge-block {
margin-bottom: 5px;
}
.wpforms-educational-alert.wpforms-calculations h3 {
font-size: inherit;
margin: inherit;
margin-bottom: 1px;
}
.wpforms-educational-alert .wpforms-educational-badge {
font-size: 8px;
font-style: normal;
font-weight: 700;
line-height: 10px;
letter-spacing: 0.4px;
text-transform: uppercase;
text-align: center;
padding: 5px 7px;
border-radius: 3px;
background-color: #E5F6E9;
}
.wpforms-educational-alert .wpforms-educational-badge-green {
color: #30B450;
}
.wpforms-educational-alert .wpforms-educational-badge + h4 {
margin-top: 10px;
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert.wpforms-pro-fields-notice {
margin: 30px 0 10px 0;
align-items: flex-start;
padding: 0;
background: #FDFAF2;
border: 1px solid rgba(0, 0, 0, 0.07);
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.07);
border-radius: 6px;
overflow: hidden;
max-height: none;
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert.wpforms-pro-fields-notice .wpforms-alert-message {
padding: 20px 20px 20px 50px;
background-image: url("../../images/integrations/ai/bulb-orange.svg");
background-size: 14px 21px;
background-repeat: no-repeat;
background-position: 20px 22px;
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert.wpforms-pro-fields-notice .wpforms-alert-message h3 {
margin-top: 0;
margin-bottom: 4px;
line-height: 21px;
font-size: 17px;
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert.wpforms-pro-fields-notice .wpforms-alert-message p {
margin: 0;
line-height: 21px;
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert.wpforms-pro-fields-notice .wpforms-alert-message a {
color: #e27730;
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert.wpforms-pro-fields-notice .wpforms-alert-message a:hover {
color: #cd6622;
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert.wpforms-pro-fields-notice.wpforms-alert-error {
background: #fcf0f1;
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert.wpforms-pro-fields-notice.wpforms-alert-error .wpforms-alert-message {
background-image: url("../../images/integrations/ai/bulb-red.svg");
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert.wpforms-pro-fields-notice .wpforms-alert-buttons {
padding: 20px;
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert.wpforms-pro-fields-notice .wpforms-alert-buttons button {
padding: 0;
opacity: 0.7;
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert.wpforms-pro-fields-notice .wpforms-alert-buttons button:before {
content: '';
background-image: url("../../images/integrations/ai/close.svg");
background-size: 12px 12px;
width: 12px;
height: 12px;
}
.wpforms-admin-page .wpforms-panel-content .wpforms-alert.wpforms-pro-fields-notice .wpforms-alert-buttons button:hover {
opacity: 1;
}
.wpforms-pdf-popup {
position: fixed;
bottom: 16px;
inset-inline-end: 16px;
width: 280px;
height: 258px;
padding: 63px 30px 30px 30px;
background-color: white;
z-index: 100109;
text-align: center;
box-shadow: 5px 10px 30px -5px rgba(0, 0, 0, 0.15);
border-radius: 12px;
}
.wpforms-pdf-popup .wpforms-pdf-popup-content .icon {
position: absolute;
top: -26px;
left: 50%;
transform: translateX(-50%);
}
.wpforms-pdf-popup .wpforms-pdf-popup-content .icon img {
width: 64px;
height: 69px;
}
.wpforms-pdf-popup .wpforms-pdf-popup-content .close-popup {
position: absolute;
top: 10px;
inset-inline-end: 11px;
cursor: pointer;
transform: scale(1.4);
color: #bbbbbb;
}
.wpforms-pdf-popup .wpforms-pdf-popup-content .badge {
color: #30b450;
text-transform: uppercase;
font-weight: 700;
font-size: 10px;
line-height: 100%;
}
.wpforms-pdf-popup .wpforms-pdf-popup-content h2 {
font-weight: 700;
font-size: 20px;
line-height: 100%;
margin: 8px;
}
.wpforms-pdf-popup .wpforms-pdf-popup-content p {
line-height: 20px;
margin-top: 15px;
}
.wpforms-pdf-popup .wpforms-pdf-popup-content button {
margin-top: 10px;
}
File diff suppressed because one or more lines are too long
@@ -0,0 +1,624 @@
.wpforms-screen-reader-element,
.screen-reader-text {
border: 0 !important;
clip: rect(0, 0, 0, 0) !important;
height: 1px !important;
margin: 0 !important;
overflow: hidden !important;
padding: 0 !important;
position: absolute !important;
width: 1px !important;
word-wrap: normal !important;
}
.wpforms_page_wpforms-builder #wpadminbar {
display: none;
}
.wpforms_page_wpforms-builder .flatpickr-calendar.open {
z-index: 100100;
}
@media only screen and (max-width: 600px) {
.flatpickr-calendar .flatpickr-current-month .numInputWrapper {
width: calc(6ch - 14px);
}
.flatpickr-calendar .flatpickr-current-month .numInputWrapper span.arrowUp,
.flatpickr-calendar .flatpickr-current-month .numInputWrapper span.arrowDown {
display: none;
}
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box {
display: grid;
grid-template-columns: repeat(2, 1fr);
justify-items: center;
animation: none;
background: #ffffff;
border-radius: 6px;
border-top-style: solid;
border-top-width: 4px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
padding-top: 34px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c,
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane,
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c,
.block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane,
.block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c,
.elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane,
.elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons {
grid-column: 1 / -1;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default {
border-top-width: 0;
padding-top: 25px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default .jconfirm-title-c, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default .jconfirm-title-c, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default .jconfirm-title-c {
margin-bottom: 20px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default .jconfirm-title-c .jconfirm-icon-c, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default .jconfirm-title-c .jconfirm-icon-c, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default .jconfirm-title-c .jconfirm-icon-c {
font-size: 44px;
margin-bottom: -6px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default button.btn-confirm, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default button.btn-confirm, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default button.btn-confirm {
background-color: #e27730;
border-color: #e27730;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default button.btn-confirm:hover, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default button.btn-confirm:hover, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default button.btn-confirm:hover {
background-color: #cd6622;
border-color: #cd6622;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-red, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-red, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-red {
border-top-color: #d63638 !important;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-red .jconfirm-title-c .jconfirm-icon-c, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-red .jconfirm-title-c .jconfirm-icon-c, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-red .jconfirm-title-c .jconfirm-icon-c {
color: #d63638 !important;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-red button.btn-confirm, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-red button.btn-confirm, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-red button.btn-confirm {
background-color: #d63638;
border-color: #d63638;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-red button.btn-confirm:hover, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-red button.btn-confirm:hover, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-red button.btn-confirm:hover {
background-color: #b32d2e;
border-color: #b32d2e;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange {
border-top-color: #e27730 !important;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange .jconfirm-title-c .jconfirm-icon-c, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange .jconfirm-title-c .jconfirm-icon-c, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange .jconfirm-title-c .jconfirm-icon-c {
color: #e27730 !important;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange button.btn-confirm, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange button.btn-confirm, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange button.btn-confirm {
background-color: #e27730;
border-color: #e27730;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange button.btn-confirm:hover, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange button.btn-confirm:hover, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange button.btn-confirm:hover {
background-color: #cd6622;
border-color: #cd6622;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-yellow, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-yellow, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-yellow {
border-top-color: #ffb900 !important;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-yellow .jconfirm-title-c .jconfirm-icon-c, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-yellow .jconfirm-title-c .jconfirm-icon-c, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-yellow .jconfirm-title-c .jconfirm-icon-c {
color: #ffb900 !important;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-yellow button.btn-confirm, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-yellow button.btn-confirm, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-yellow button.btn-confirm {
background-color: #ffb900;
border-color: #ffb900;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-yellow button.btn-confirm:hover, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-yellow button.btn-confirm:hover, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-yellow button.btn-confirm:hover {
background-color: #ffaa00;
border-color: #ffaa00;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-blue, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-blue, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-blue {
border-top-color: #0399ed !important;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-blue .jconfirm-title-c .jconfirm-icon-c, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-blue .jconfirm-title-c .jconfirm-icon-c, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-blue .jconfirm-title-c .jconfirm-icon-c {
color: #0399ed !important;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-blue button.btn-confirm, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-blue button.btn-confirm, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-blue button.btn-confirm {
background-color: #0399ed;
border-color: #0399ed;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-blue button.btn-confirm:hover, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-blue button.btn-confirm:hover, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-blue button.btn-confirm:hover {
background-color: #036aab;
border-color: #036aab;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-green, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-green, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-green {
border-top-color: #00a32a !important;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-green .jconfirm-title-c .jconfirm-icon-c, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-green .jconfirm-title-c .jconfirm-icon-c, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-green .jconfirm-title-c .jconfirm-icon-c {
color: #00a32a !important;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-green button.btn-confirm, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-green button.btn-confirm, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-green button.btn-confirm {
background-color: #00a32a;
border-color: #00a32a;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-green button.btn-confirm:hover, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-green button.btn-confirm:hover, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-green button.btn-confirm:hover {
background-color: #008a20;
border-color: #008a20;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-purple, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-purple, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-purple {
border-top-color: #7a30e2 !important;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-purple .jconfirm-title-c .jconfirm-icon-c, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-purple .jconfirm-title-c .jconfirm-icon-c, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-purple .jconfirm-title-c .jconfirm-icon-c {
color: #7a30e2 !important;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-purple button.btn-confirm, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-purple button.btn-confirm, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-purple button.btn-confirm {
background-color: #7a30e2;
border-color: #7a30e2;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-purple button.btn-confirm:hover, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-purple button.btn-confirm:hover, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-purple button.btn-confirm:hover {
background-color: #5c24a9;
border-color: #5c24a9;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon {
color: transparent;
font-family: "FontAwesome";
height: 14px;
opacity: 1;
inset-inline-end: 10px;
top: 10px;
width: 14px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon:after, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon:after, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon:after {
color: #b0b2b3;
content: "\f00d";
font-size: 16px;
inset-inline-start: 0;
position: absolute;
top: 0;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon:hover:after, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon:hover:after, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon:hover:after {
color: #6a6f76 !important;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c {
margin: 0 0 20px 0;
padding: 0;
font-weight: 600;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c .jconfirm-icon-c, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c .jconfirm-icon-c, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
font-size: 47px;
margin: 0;
-ms-transform: none !important;
-webkit-transform: none !important;
transform: none !important;
-webkit-transition: none !important;
transition: none !important;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c .jconfirm-icon-c + .jconfirm-title, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c .jconfirm-icon-c + .jconfirm-title, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c .jconfirm-icon-c + .jconfirm-title {
margin-top: 20px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c .jconfirm-title, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c .jconfirm-title, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c .jconfirm-title {
color: #3c434a;
display: block;
line-height: 30px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane {
display: block;
margin-bottom: 20px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content {
color: #3c434a;
font-size: 16px;
line-height: 24px;
margin-bottom: 0;
overflow: inherit;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content.lite-upgrade p, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content.lite-upgrade p, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content.lite-upgrade p {
color: #6a6f76;
font-size: 18px;
padding: 0 20px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p {
font-size: inherit;
line-height: inherit;
margin: 0 0 16px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p:last-of-type, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p:last-of-type, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p:last-of-type {
margin: 0;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p.large, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p.large, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p.large {
font-size: 18px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p.small, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p.small, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p.small {
font-size: 14px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p.bold, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p.bold, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p.bold {
font-weight: 600;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content strong, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content strong, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content strong {
font-weight: 600;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=text],
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=number],
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=email],
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=url],
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=password],
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=search],
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=tel],
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content textarea,
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content select, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=text],
.block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=number],
.block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=email],
.block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=url],
.block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=password],
.block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=search],
.block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=tel],
.block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content textarea,
.block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content select, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=text],
.elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=number],
.elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=email],
.elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=url],
.elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=password],
.elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=search],
.elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=tel],
.elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content textarea,
.elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content select {
margin: 10px 2px;
width: calc( 100% - 4px);
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content .error, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content .error, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content .error {
color: #d63638;
font-size: 14px;
font-weight: 600;
line-height: 1.4;
margin-top: 10px;
display: none;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .already-purchased, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .already-purchased, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .already-purchased {
display: block;
grid-row: 5;
grid-column: 1 / -1;
color: #b0b2b3;
font-size: 14px;
margin-top: 15px;
text-decoration: underline;
text-align: center;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .already-purchased:hover, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .already-purchased:hover, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .already-purchased:hover {
color: #6a6f76;
text-decoration: underline;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .discount-note, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .discount-note, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .discount-note {
grid-row: 4;
grid-column: 1 / -1;
margin: 25px 0 0 0;
text-align: center;
width: 100%;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .discount-note p, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .discount-note p, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .discount-note p {
background-color: #fcf9e8;
color: #6a6f76;
font-size: 16px;
margin: 0 -30px;
padding: 22px 52px 12px 52px;
position: relative;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .discount-note p:after, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .discount-note p:after, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .discount-note p:after {
background-color: #ffffff;
border-radius: 50%;
color: #00a32a;
content: "\f058";
display: inline-block;
font: normal normal normal 14px "FontAwesome";
font-size: 26px;
margin-inline-end: -18px;
padding: 5px 6px;
position: absolute;
inset-inline-end: 50%;
text-rendering: auto;
top: -16px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .discount-note span, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .discount-note span, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .discount-note span {
color: #00a32a;
font-weight: 700;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .discount-note a, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .discount-note a, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .discount-note a {
color: #6a6f76;
display: block;
margin-top: 12px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .feature-video, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .feature-video, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .feature-video {
margin: 30px 0 0 0;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .pro-feature-video, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .pro-feature-video, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .pro-feature-video {
margin: 15px 0 10px 0;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box input[type=text]:not(.choices__input), .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box input[type=text]:not(.choices__input), .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box input[type=text]:not(.choices__input) {
display: block;
margin-top: 10px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box #wpforms-edu-modal-license-key, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box #wpforms-edu-modal-license-key, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box #wpforms-edu-modal-license-key {
margin-top: 20px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons {
margin-top: -10px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button {
background: #f6f7f7;
border: 1px solid #c3c4c7;
border-radius: 4px;
color: #6a6f76;
font-size: 16px;
font-weight: 600;
line-height: 20px;
outline: none;
padding: 11px 17px;
text-transform: none;
margin: 10px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button:hover, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button:hover, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button:hover {
background: #e8e9e9;
border-color: #c3c4c7;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button {
min-width: 83px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button[disabled], .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button[disabled], .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button[disabled] {
cursor: no-drop;
pointer-events: none;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-confirm, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-confirm, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-confirm {
color: #ffffff;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-fix-with-ai, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-fix-with-ai, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-fix-with-ai {
background-color: #faf5fe;
border-color: #7a30e2;
color: #7a30e2;
padding: 10px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-fix-with-ai:hover, .wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-fix-with-ai:focus, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-fix-with-ai:hover, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-fix-with-ai:focus, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-fix-with-ai:hover, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-fix-with-ai:focus {
background-color: #f5e9ff;
border-color: #5c24a9;
color: #5c24a9;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-fix-with-ai::before, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-fix-with-ai::before, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-fix-with-ai::before {
content: '';
display: inline-block;
vertical-align: middle;
width: 16px;
height: 16px;
background-image: url(../../images/integrations/ai/ai-feature.svg);
background-size: 16px 16px;
margin-inline-end: 8px;
opacity: .85;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.hidden + button, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.hidden + button, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.hidden + button {
margin-left: 0;
margin-right: 0;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-block, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-block, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-block {
display: block;
margin: 0 0 10px 0 !important;
text-align: center;
width: 100%;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-normal-case, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-normal-case, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-normal-case {
text-transform: none !important;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button i, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button i, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button i {
margin-inline-end: 10px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-providers-account-add-modal .jconfirm-content .description, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-providers-account-add-modal .jconfirm-content .description, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-providers-account-add-modal .jconfirm-content .description {
font-size: 13px;
line-height: 1.4;
margin-top: 15px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .jconfirm-content-pane, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .jconfirm-content-pane, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .jconfirm-content-pane {
max-height: calc( 100vh - 333px);
transition-property: max-height;
transition-duration: 0.25s;
transition-timing-function: ease-out;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .jconfirm-title-c, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .jconfirm-title-c, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .jconfirm-title-c {
margin-bottom: 15px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-columns, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-columns, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-columns {
margin: 30px 0 0 0;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-column, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-column, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-column {
border: 1px solid #c3c4c7;
border-radius: 4px;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-column li, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-column li, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-column li {
border-bottom: 1px solid #dcdcde;
font-size: 14px;
line-height: 30px;
margin: 0;
padding: 8px 10px;
text-align: start;
display: flex;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-column li:last-child, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-column li:last-child, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-column li:last-child {
border-bottom: none;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-column li span, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-column li span, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-column li span {
margin-inline-start: auto;
}
.wpforms_page_wpforms-builder .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-column li span i, .block-editor-page .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-column li span i, .elementor-editor-active .jconfirm .jconfirm-box-container .jconfirm-box.wpforms-builder-keyboard-shortcuts .wpforms-column li span i {
background-color: #ebf3fc;
border-radius: 4px;
color: #036aab;
display: inline-block;
font-style: normal;
line-height: 16px;
margin-inline-start: 5px;
min-width: 30px;
padding: 5px 10px;
text-transform: capitalize;
}
.wpforms_page_wpforms-builder .jconfirm.jconfirm-wpforms-education .jconfirm-content-pane, .block-editor-page .jconfirm.jconfirm-wpforms-education .jconfirm-content-pane, .elementor-editor-active .jconfirm.jconfirm-wpforms-education .jconfirm-content-pane {
height: auto !important;
min-height: fit-content;
}
.wpforms_page_wpforms-builder .choices, .block-editor-page .choices, .elementor-editor-active .choices {
font-size: 16px;
text-align: start;
}
.wpforms_page_wpforms-builder .choices input[type=text].choices__input:not(.wpforms-hidden), .block-editor-page .choices input[type=text].choices__input:not(.wpforms-hidden), .elementor-editor-active .choices input[type=text].choices__input:not(.wpforms-hidden) {
display: inline-block !important;
}
.wpforms_page_wpforms-builder .jconfirm.has-video .jconfirm-box-container .jconfirm-box, .block-editor-page .jconfirm.has-video .jconfirm-box-container .jconfirm-box, .elementor-editor-active .jconfirm.has-video .jconfirm-box-container .jconfirm-box {
padding-bottom: 0;
padding-top: 30px;
}
.wpforms_page_wpforms-builder .jconfirm.has-video .jconfirm-box-container .already-purchased, .block-editor-page .jconfirm.has-video .jconfirm-box-container .already-purchased, .elementor-editor-active .jconfirm.has-video .jconfirm-box-container .already-purchased {
grid-row: 4;
grid-column: 1 / 2;
display: block;
margin-top: 0;
}
.wpforms_page_wpforms-builder .jconfirm.has-video .jconfirm-box-container .already-purchased:hover, .block-editor-page .jconfirm.has-video .jconfirm-box-container .already-purchased:hover, .elementor-editor-active .jconfirm.has-video .jconfirm-box-container .already-purchased:hover {
color: #6a6f76;
}
.wpforms_page_wpforms-builder .jconfirm.has-video .jconfirm-box-container .discount-note, .block-editor-page .jconfirm.has-video .jconfirm-box-container .discount-note, .elementor-editor-active .jconfirm.has-video .jconfirm-box-container .discount-note {
grid-row: 5;
margin: 20px 0 0;
}
.wpforms_page_wpforms-builder .jconfirm.has-video .jconfirm-box-container .discount-note p, .block-editor-page .jconfirm.has-video .jconfirm-box-container .discount-note p, .elementor-editor-active .jconfirm.has-video .jconfirm-box-container .discount-note p {
margin: 0 -30px;
padding: 20px 52px;
border-radius: 0 0 6px 6px;
}
.wpforms_page_wpforms-builder .jconfirm.has-video .jconfirm-box-container .discount-note p:after, .block-editor-page .jconfirm.has-video .jconfirm-box-container .discount-note p:after, .elementor-editor-active .jconfirm.has-video .jconfirm-box-container .discount-note p:after {
display: none;
}
.wpforms_page_wpforms-builder .jconfirm.has-video .jconfirm-box-container .feature-video, .wpforms_page_wpforms-builder .jconfirm.has-video .jconfirm-box-container .pro-feature-video, .block-editor-page .jconfirm.has-video .jconfirm-box-container .feature-video, .block-editor-page .jconfirm.has-video .jconfirm-box-container .pro-feature-video, .elementor-editor-active .jconfirm.has-video .jconfirm-box-container .feature-video, .elementor-editor-active .jconfirm.has-video .jconfirm-box-container .pro-feature-video {
grid-row: 1 / span 4;
grid-column-start: 2;
margin-top: 0;
margin-inline-start: 15px;
}
.wpforms_page_wpforms-builder .jconfirm.has-video .jconfirm-box-container .jconfirm-title-c,
.wpforms_page_wpforms-builder .jconfirm.has-video .jconfirm-box-container .jconfirm-content-pane,
.wpforms_page_wpforms-builder .jconfirm.has-video .jconfirm-box-container .jconfirm-buttons, .block-editor-page .jconfirm.has-video .jconfirm-box-container .jconfirm-title-c,
.block-editor-page .jconfirm.has-video .jconfirm-box-container .jconfirm-content-pane,
.block-editor-page .jconfirm.has-video .jconfirm-box-container .jconfirm-buttons, .elementor-editor-active .jconfirm.has-video .jconfirm-box-container .jconfirm-title-c,
.elementor-editor-active .jconfirm.has-video .jconfirm-box-container .jconfirm-content-pane,
.elementor-editor-active .jconfirm.has-video .jconfirm-box-container .jconfirm-buttons {
grid-column: 1 / 2;
}
.wpforms_page_wpforms-builder .jconfirm.upgrade-modal .jconfirm-box-container .jconfirm-box, .block-editor-page .jconfirm.upgrade-modal .jconfirm-box-container .jconfirm-box, .elementor-editor-active .jconfirm.upgrade-modal .jconfirm-box-container .jconfirm-box {
padding-bottom: 30px;
}
.wpforms_page_wpforms-builder .jconfirm.upgrade-modal .jconfirm-box-container .jconfirm-box .pro-feature-video, .block-editor-page .jconfirm.upgrade-modal .jconfirm-box-container .jconfirm-box .pro-feature-video, .elementor-editor-active .jconfirm.upgrade-modal .jconfirm-box-container .jconfirm-box .pro-feature-video {
margin-bottom: 0;
}
.wpforms_page_wpforms-builder .jconfirm.upgrade-modal .jconfirm-box-container .jconfirm-box .jconfirm-buttons, .block-editor-page .jconfirm.upgrade-modal .jconfirm-box-container .jconfirm-box .jconfirm-buttons, .elementor-editor-active .jconfirm.upgrade-modal .jconfirm-box-container .jconfirm-box .jconfirm-buttons {
padding-bottom: 0;
}
.wpforms_page_wpforms-builder.rtl .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon, .block-editor-page.rtl .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon, .elementor-editor-active.rtl .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon {
left: 10px;
right: auto;
}
@media screen and (max-width: 1023px) {
.wpforms_page_wpforms-builder .jconfirm {
display: none;
}
}
.wpforms_page_wpforms-builder .media-modal .edit-attachment,
.wpforms_page_wpforms-builder .media-modal .delete-attachment {
display: none;
}
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,234 @@
.mce-content-body.wpforms-content-field-editor-body {
font-family: sans-serif;
color: #444444;
background-color: #ffffff;
word-break: break-word;
font-size: 16px;
line-height: 22px;
}
.mce-content-body.wpforms-content-field-editor-body h1, .mce-content-body.wpforms-content-field-editor-body h2, .mce-content-body.wpforms-content-field-editor-body h3, .mce-content-body.wpforms-content-field-editor-body h4, .mce-content-body.wpforms-content-field-editor-body h5, .mce-content-body.wpforms-content-field-editor-body h6 {
margin: 20px 0;
padding: 0;
clear: unset;
}
.mce-content-body.wpforms-content-field-editor-body h1:first-child, .mce-content-body.wpforms-content-field-editor-body h2:first-child, .mce-content-body.wpforms-content-field-editor-body h3:first-child, .mce-content-body.wpforms-content-field-editor-body h4:first-child, .mce-content-body.wpforms-content-field-editor-body h5:first-child, .mce-content-body.wpforms-content-field-editor-body h6:first-child {
margin-top: 0;
}
.mce-content-body.wpforms-content-field-editor-body h1 {
font-size: 32px;
line-height: 40px;
}
.mce-content-body.wpforms-content-field-editor-body h2 {
font-size: 28px;
line-height: 36px;
}
.mce-content-body.wpforms-content-field-editor-body h3 {
font-size: 24px;
line-height: 32px;
}
.mce-content-body.wpforms-content-field-editor-body h4 {
font-size: 20px;
line-height: 28px;
}
.mce-content-body.wpforms-content-field-editor-body h5 {
font-size: 18px;
line-height: 26px;
}
.mce-content-body.wpforms-content-field-editor-body h6 {
font-size: 16px;
line-height: 24px;
text-transform: uppercase;
}
.mce-content-body.wpforms-content-field-editor-body p, .mce-content-body.wpforms-content-field-editor-body blockquote, .mce-content-body.wpforms-content-field-editor-body pre, .mce-content-body.wpforms-content-field-editor-body table {
margin: 0 0 20px 0;
}
.mce-content-body.wpforms-content-field-editor-body li {
margin: 0 0 10px 0;
}
.mce-content-body.wpforms-content-field-editor-body a {
text-decoration: underline;
}
.mce-content-body.wpforms-content-field-editor-body a:hover {
text-decoration: none;
}
.mce-content-body.wpforms-content-field-editor-body code, .mce-content-body.wpforms-content-field-editor-body pre {
font-family: monospace;
overflow: auto;
}
.mce-content-body.wpforms-content-field-editor-body del {
text-decoration: line-through;
}
.mce-content-body.wpforms-content-field-editor-body ins {
text-decoration: underline;
}
.mce-content-body.wpforms-content-field-editor-body small {
font-size: smaller;
}
.mce-content-body.wpforms-content-field-editor-body dt {
margin: 5px 0;
}
.mce-content-body.wpforms-content-field-editor-body dd {
margin-left: 25px;
}
.mce-content-body.wpforms-content-field-editor-body abbr, .mce-content-body.wpforms-content-field-editor-body acronym {
text-decoration: underline dotted;
}
.mce-content-body.wpforms-content-field-editor-body ul {
list-style: disc outside none !important;
padding-inline-start: 29px !important;
margin-bottom: 20px !important;
}
.mce-content-body.wpforms-content-field-editor-body ul ul {
list-style-type: circle !important;
margin-top: 10px !important;
margin-bottom: 0 !important;
}
.mce-content-body.wpforms-content-field-editor-body ul ul ul {
list-style-type: square !important;
}
.mce-content-body.wpforms-content-field-editor-body ul ol {
margin-top: 10px;
margin-bottom: 0;
}
.mce-content-body.wpforms-content-field-editor-body ul li {
list-style: inherit !important;
margin-bottom: 10px !important;
}
.mce-content-body.wpforms-content-field-editor-body ol {
list-style: decimal outside none;
padding-inline-start: 29px;
margin-bottom: 20px;
}
.mce-content-body.wpforms-content-field-editor-body ol ol {
margin-top: 10px;
margin-bottom: 0;
}
.mce-content-body.wpforms-content-field-editor-body ol ul {
margin-top: 10px !important;
margin-bottom: 0 !important;
}
.mce-content-body.wpforms-content-field-editor-body ol li {
list-style: inherit;
}
.mce-content-body.wpforms-content-field-editor-body blockquote {
border-left: 4px solid rgba(0, 0, 0, 0.15);
padding-left: 20px;
}
.mce-content-body.wpforms-content-field-editor-body blockquote:before, .mce-content-body.wpforms-content-field-editor-body blockquote:after {
display: none;
}
.mce-content-body.wpforms-content-field-editor-body table {
width: 100%;
border-collapse: collapse;
word-break: normal;
}
.mce-content-body.wpforms-content-field-editor-body table th, .mce-content-body.wpforms-content-field-editor-body table td {
padding: 0.5em;
border: 1px solid;
}
.mce-content-body.wpforms-content-field-editor-body sup, .mce-content-body.wpforms-content-field-editor-body sub {
font-size: smaller;
line-height: calc( 100% + 11px);
}
.mce-content-body.wpforms-content-field-editor-body sup {
vertical-align: super;
}
.mce-content-body.wpforms-content-field-editor-body sub {
vertical-align: sub;
}
.mce-content-body.wpforms-content-field-editor-body h1, .mce-content-body.wpforms-content-field-editor-body h2, .mce-content-body.wpforms-content-field-editor-body h3, .mce-content-body.wpforms-content-field-editor-body h4, .mce-content-body.wpforms-content-field-editor-body h5, .mce-content-body.wpforms-content-field-editor-body h6 {
margin: 10px 0;
font-weight: 600;
}
.mce-content-body.wpforms-content-field-editor-body p {
line-height: inherit;
}
.mce-content-body.wpforms-content-field-editor-body img {
vertical-align: top;
}
.mce-content-body.wpforms-content-field-editor-body img {
max-width: 100%;
height: auto;
}
.mce-content-body.wpforms-content-field-editor-body .alignleft {
float: left;
margin: 0 30px 20px 0;
}
.mce-content-body.wpforms-content-field-editor-body .alignright {
float: right;
margin: 0 0 20px 30px;
}
.mce-content-body.wpforms-content-field-editor-body .aligncenter {
display: block;
clear: both;
text-align: center;
margin: 0 auto 20px;
}
.mce-content-body.wpforms-content-field-editor-body .alignnone {
display: block;
clear: both;
margin: 0 0 20px 0;
}
.mce-content-body.wpforms-content-field-editor-body .wp-caption-dt,
.mce-content-body.wpforms-content-field-editor-body .wp-caption-dd {
margin: 0;
}
.mce-content-body.wpforms-content-field-editor-body .wp-caption {
position: relative;
left: auto;
right: auto;
transform: none;
max-width: 100%;
}
.mce-content-body.wpforms-content-field-editor-body .wp-caption .wp-caption-text,
.mce-content-body.wpforms-content-field-editor-body .wp-caption .wp-caption-dd {
text-align: center;
font-size: 14px;
margin-top: 0.5em;
}
File diff suppressed because one or more lines are too long