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,505 @@
.wpforms-entries-list-upgrade .wpforms-sample-entry-notice {
display: none;
}
.wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification {
display: flex;
padding: 20px;
flex-direction: column;
align-items: flex-start;
gap: 10px;
border-radius: 6px;
background: #ffffff;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.07);
position: relative;
}
.wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification h2 {
color: #1d2327;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 18px;
margin: 0;
}
.wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification .notice-buttons {
margin: 0;
}
.wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification .notice-buttons .wpforms-btn {
min-height: auto;
}
.wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification .wpforms-sample-notification-content {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 5px;
}
.wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification .wpforms-sample-notification-content p {
color: #2c3338;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 22px;
opacity: 0.8;
margin: 0;
}
.wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification .wpforms-sample-notification-content p a {
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 22px;
text-decoration-line: underline;
}
.wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification #wpforms-hide-sample-data {
position: absolute;
top: 15px;
right: 20px;
font-size: 13px;
color: #a7aaad;
font-weight: 400;
cursor: pointer;
text-decoration: none;
transition: color 0.05s ease-in-out;
}
.wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification #wpforms-hide-sample-data:hover, .wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification #wpforms-hide-sample-data:focus {
color: #50575e;
box-shadow: none;
}
.wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification #wpforms-hide-sample-data .dashicons {
transition: none;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap {
position: relative;
display: grid;
grid-template-columns: 1fr;
margin-top: 20px;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal {
grid-row: 1;
grid-column: 1;
justify-self: center;
align-self: start;
margin: 5px 0 0 0;
height: fit-content;
width: 90%;
max-width: 730px;
text-align: center;
box-shadow: 0 5px 60px rgba(0, 0, 0, 0.2);
border-radius: 6px;
overflow: hidden;
opacity: 1;
z-index: 999;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal *,
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal *::before,
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal *::after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal h2 {
font-size: 22px;
line-height: 24px;
margin: 0 0 16px 0;
padding: 0;
color: #2c3338;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal p {
font-size: 16px;
line-height: 24px;
color: #50575e;
margin: 0 0 30px 0;
padding: 0;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal ul {
float: left;
width: 50%;
margin: 0;
padding: 0 0 0 30px;
text-align: left;
}
@media screen and (max-width: 500px) {
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal ul {
padding: 0;
float: none;
width: 100%;
}
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal ul li {
color: #50575e;
font-size: 16px;
line-height: 19px;
padding: 6px 0;
display: flex;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal ul .fa {
color: #008a20;
margin: 1px 12px 0 0;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal .entries-modal-content {
background-color: #ffffff;
padding: 40px;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal .entries-modal-button a {
white-space: unset !important;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal .entries-modal-button p {
margin: 20px 0 0 0;
font-size: 15px;
line-height: 18px;
text-align: center;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal .entries-modal-button p span {
display: inline-block;
margin-left: 20px;
vertical-align: bottom;
font-size: 14px;
line-height: 17px;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal .entries-modal-button p .wpforms-toggle-control .wpforms-toggle-control-label {
max-width: none;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal .entries-modal-button {
border-radius: 0 0 3px 3px;
padding: 30px;
background: #f5f5f5;
text-align: center;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal .entries-modal-button .entries-modal-button-before {
line-height: 24px;
margin: 0 0 20px 0;
color: #444444;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal .entries-modal-button .wpforms-entries-sample {
display: none !important;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal .entries-modal-button .wpforms-entries-sample a {
font-size: 15px;
font-weight: 600;
line-height: 18px;
text-align: center;
color: #50575e;
text-decoration: underline;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal .entries-modal-button .wpforms-entries-sample a:hover {
color: #056aab;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal .entries-modal-content-top-notice {
padding: 10px;
text-align: center;
font-style: normal;
font-weight: normal;
font-size: 15px;
line-height: 24px;
color: #2c3338;
background: #fcf9e8;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-sample-entries-modal .entries-modal-content-top-notice .wpforms-icon {
width: 18px;
height: 16px;
background-image: url("../../../../images/exclamation-triangle-orange.svg");
background-repeat: no-repeat;
background-size: 18px 16px;
display: inline-block;
margin-right: 10px;
vertical-align: -2px;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-admin-content {
filter: blur(1.5px);
user-select: none;
grid-row: 1;
grid-column: 1;
position: relative;
pointer-events: none;
transition: all 0.25s linear;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-admin-content.show-sample-entires {
filter: none;
user-select: auto;
margin-top: 20px;
pointer-events: unset;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-admin-content a, .wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-admin-content input, .wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-admin-content button:not(.toggle-row), .wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-admin-content select {
pointer-events: none;
}
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-admin-content .pagination-links .disabled,
.wpforms-entries-list-upgrade .wpforms-admin-content-wrap .wpforms-admin-content .bulkactions .disabled {
cursor: inherit;
}
.wpforms-entries-list-upgrade.wpforms-entires-sample-view .wpforms-admin-content {
filter: none;
user-select: auto;
pointer-events: unset;
}
.wpforms-entries-list-upgrade.wpforms-entires-sample-view .wpforms-sample-entry-notice {
display: block;
width: 100%;
}
#wpforms-entries-table .column-indicators > span {
pointer-events: none;
}
#wpforms-entries-table thead a,
#wpforms-entries-table tfoot a {
color: initial;
}
#wpforms-entries-table thead tr th #wpforms-list-table-ext-edit-columns-cog,
#wpforms-entries-table tfoot tr th #wpforms-list-table-ext-edit-columns-cog {
outline: none;
box-shadow: none;
font-size: 19px;
color: #8b8f95;
position: absolute;
inset-inline-end: 12px;
background-color: #ffffff;
top: 9px;
right: 10px;
padding: 0;
pointer-events: unset;
cursor: pointer;
}
#wpforms-entries-table thead tr th .wpforms-entries-settings-menu,
#wpforms-entries-table tfoot tr th .wpforms-entries-settings-menu {
width: 240px;
background: #fff;
border-radius: 6px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
color: #50575e;
inset-inline-start: 0;
margin-top: 6px;
padding-block: 5px;
position: absolute;
text-align: start;
right: 8px;
font-size: 14px;
left: auto;
cursor: not-allowed;
z-index: -99;
display: none;
}
#wpforms-entries-table thead tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap,
#wpforms-entries-table tfoot tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap {
display: flex;
flex-direction: column;
max-height: 350px;
overflow-y: auto;
padding-inline: 0;
border-bottom: 1px solid #dcdcde;
padding-bottom: 10px;
margin-bottom: 10px;
pointer-events: none;
}
#wpforms-entries-table thead tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap .wpforms-settings-title,
#wpforms-entries-table tfoot tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap .wpforms-settings-title {
color: #8C8F94;
font-weight: 500;
font-size: 12px;
line-height: 19px;
padding-left: 15px;
margin: 9px 0;
border-top: 1px solid #dcdcde;
padding-top: 10px;
}
#wpforms-entries-table thead tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap .wpforms-settings-title.first,
#wpforms-entries-table tfoot tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap .wpforms-settings-title.first {
border-top: none;
padding-top: 0;
}
#wpforms-entries-table thead tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap label,
#wpforms-entries-table tfoot tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap label {
align-items: flex-start;
display: flex;
gap: 10px;
padding-block: 5px;
margin: 0 15px;
opacity: .5;
}
#wpforms-entries-table thead tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap label input[type=checkbox],
#wpforms-entries-table tfoot tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap label input[type=checkbox] {
height: 16px;
margin: 0;
position: relative;
width: 16px;
}
#wpforms-entries-table thead tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap label input[type=checkbox]:checked,
#wpforms-entries-table tfoot tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap label input[type=checkbox]:checked {
background-color: #056aab;
border-color: #056aab !important;
box-shadow: none !important;
}
#wpforms-entries-table thead tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap label input[type=checkbox]:checked:before,
#wpforms-entries-table tfoot tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap label input[type=checkbox]:checked:before {
-webkit-mask-image: url(data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E);
background-color: #fff;
content: "";
height: 18px;
left: -2.5px;
margin: 0;
mask-image: url(data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E);
position: absolute;
top: -1.5px;
width: 18px;
}
#wpforms-entries-table thead tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap label span,
#wpforms-entries-table tfoot tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap label span {
width: 180px;
display: block;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
#wpforms-entries-table thead tr th .wpforms-entries-settings-menu button,
#wpforms-entries-table tfoot tr th .wpforms-entries-settings-menu button {
margin: 5px 15px 10px 15px;
height: 31px;
display: inline-block;
text-decoration: none;
font-size: 13px;
line-height: 2.15384615;
min-height: 30px;
padding: 0 10px;
border-width: 1px;
border-style: solid;
-webkit-appearance: none;
border-radius: 3px;
white-space: nowrap;
box-sizing: border-box;
opacity: .5;
pointer-events: none;
}
#wpforms-entries-table thead tr th.is_active #wpforms-list-table-ext-edit-columns-cog,
#wpforms-entries-table tfoot tr th.is_active #wpforms-list-table-ext-edit-columns-cog {
color: #046bab;
}
#wpforms-entries-table thead tr th.is_active .wpforms-entries-settings-menu,
#wpforms-entries-table tfoot tr th.is_active .wpforms-entries-settings-menu {
display: block;
z-index: 99;
}
#wpforms-entries-table .check-column {
width: 35px;
min-width: 35px;
max-width: 35px;
padding: 10px 8px 0 3px;
vertical-align: top;
}
#wpforms-entries-table .check-column input {
margin-top: -2px;
}
#wpforms-entries-table .check-column:hover input[type="checkbox"] {
box-shadow: none !important;
}
#wpforms-entries-table tbody .view {
cursor: pointer;
pointer-events: unset;
}
#wpforms-entries-table tbody tr.is-expanded td:not(.wpforms_field_1) {
padding-left: 35%;
}
#wpforms-entries-table th, #wpforms-entries-table td {
box-sizing: border-box;
}
.wpforms-input-disabled {
cursor: not-allowed;
}
.rtl .wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification #wpforms-hide-sample-data {
left: 20px;
right: auto;
}
.rtl #wpforms-entries-list .wp-list-table #wpforms-list-table-ext-edit-columns-cog {
inset-inline-start: 12px;
inset-inline-end: unset;
right: unset;
left: 10px;
}
.rtl #wpforms-entries-table thead tr th .wpforms-entries-settings-menu {
left: 8px;
right: auto;
}
.rtl #wpforms-entries-table thead tr th .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap .wpforms-settings-title {
padding-right: 15px;
padding-left: 0;
}
@media screen and (max-width: 782px) {
.wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification {
display: block;
}
.wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification .wpforms-sample-notification-content {
margin-bottom: 10px;
}
.wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification .notice-buttons {
margin-right: 20px;
}
.wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification .notice-buttons, .wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification #wpforms-hide-sample-data {
position: revert;
display: inline-block;
vertical-align: middle;
}
}
@media screen and (max-width: 340px) {
.wpforms-entries-list-upgrade .wpforms-sample-entry-notice .wpforms-sample-notification .notice-buttons {
margin-right: 0;
}
}
File diff suppressed because one or more lines are too long
@@ -0,0 +1,392 @@
.wpforms_page_wpforms-entries {
overflow-x: hidden;
}
#wpforms-entries-single .page-title {
padding-top: 14px;
padding-bottom: 14px;
}
#wpforms-entries-single .page-title .page-title-action svg {
fill: #50575e;
}
#wpforms-entries-single .page-title .page-title-action:hover svg, #wpforms-entries-single .page-title .page-title-action:focus svg {
fill: #2c3338;
}
#wpforms-entries-single.wpforms-entries-single-sample .postbox-header h2 {
display: flex;
align-items: center;
gap: 10px;
color: #32373c;
font-style: normal;
font-size: 16px;
font-weight: 500;
line-height: 20px;
padding: 10px 12px;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-fields .inside p {
padding: 0;
margin: 0;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-fields .inside .wpforms-entry-field-name {
font-weight: 600;
background: #f6f6f6;
padding: 8px 12px;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-fields .inside .wpforms-field-email .wpforms-entry-field-value {
color: #056aab;
text-decoration: underline;
cursor: not-allowed;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-fields .inside .wpforms-field-file-upload .file-name {
color: #056aab;
text-decoration: underline;
cursor: not-allowed;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-fields .inside .wpforms-entry-field-value {
padding: 8px 12px;
border-radius: 4px;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-notes {
color: #2c3338;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-notes .wpforms-entry-sample-notes-new {
padding: 10px;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-notes .wpforms-entry-notes-single {
padding: 10px;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-notes .wpforms-entry-notes-single.odd {
background-color: #f6f6f6;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-notes .wpforms-entry-notes-single .note-user {
color: #056aab;
text-decoration: underline;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-notes .wpforms-entry-notes-byline {
color: #888;
margin-bottom: 10px;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-notes .wpforms-entry-notes-byline .sample-note-delete {
color: #a00;
text-decoration: none;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey .inside {
padding: 0;
margin: 0;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table {
width: 100%;
border-spacing: 0;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr td, #wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr th {
vertical-align: top;
border-bottom: 1px solid #eee;
padding: 10px;
text-align: start;
color: #2c3338;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr td:first-of-type, #wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr th:first-of-type {
padding-left: 12px;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr td:last-of-type, #wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr th:last-of-type {
padding-right: 12px;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr td.date, #wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr th.date {
background: #f5f5f5;
font-weight: 600;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr td.time, #wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr th.time {
width: 65px;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr td .fa-circle, #wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr th .fa-circle {
font-size: 4px;
vertical-align: middle;
margin: 0 4px;
color: #ccc;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr td.title-area .path, #wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr th.title-area .path {
font-weight: 400;
color: #a6a6a6;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr td.title-area a, #wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr th.title-area a {
text-decoration: none;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr td.title-area .go, #wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr th.title-area .go {
color: #a6a6a6;
margin: 0 4px;
font-size: 12px;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr td .fa-check, #wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr th .fa-check {
color: #009933;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-user-journey table tr:last-child td {
border-bottom: 0;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-details .inside, #wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-actions .inside {
margin: 0;
padding: 0;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-entry-details-meta, #wpforms-entries-single.wpforms-entries-single-sample .wpforms-entry-actions-meta {
padding: 5px 0;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-entry-details-meta p, #wpforms-entries-single.wpforms-entries-single-sample .wpforms-entry-actions-meta p {
color: #32373c;
display: flex;
flex-wrap: wrap;
gap: 5px;
margin: 0;
padding: 6px 12px 6.5px 42px;
position: relative;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-entry-details-meta p .dashicons, #wpforms-entries-single.wpforms-entries-single-sample .wpforms-entry-actions-meta p .dashicons {
color: #8c8f94;
font-size: 22px;
height: 22px;
inset-inline-start: 12px;
position: absolute;
text-decoration: none;
top: 5px;
width: 22px;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-entry-details-meta p strong, #wpforms-entries-single.wpforms-entries-single-sample .wpforms-entry-actions-meta p strong {
font-weight: 600;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-details .trash-sample {
color: #a00;
text-decoration: none;
padding: 1px 2px;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-entry-actions-meta a {
text-decoration: none;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-entry-actions-meta p {
color: #056aab;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-entry-actions-meta p > span {
cursor: not-allowed;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-geolocation ul {
margin: 0;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-geolocation ul li {
border-bottom: 1px solid #eee;
margin: 0;
overflow: auto;
color: #2c3338;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-geolocation ul li:last-child {
border-bottom: 0;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-geolocation ul li .wpforms-geolocation-meta {
width: 65px;
float: left;
padding: 10px 0 10px 12px;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-geolocation ul li .wpforms-geolocation-value {
display: flex;
align-items: center;
gap: 5px;
padding: 10px 12px 10px 20px;
}
#wpforms-entries-single.wpforms-entries-single-sample #wpforms-entry-geolocation ul li .wpforms-geolocation-value .wpforms-geolocation-flag {
width: 16px;
height: 11px;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-entries-settings-container .button {
background: #ffffff;
border-color: #8c8f94;
color: #50575e;
padding: 5px;
height: auto;
width: 34px;
min-height: 32px;
box-shadow: none;
line-height: 17px;
margin-bottom: 0;
pointer-events: inherit;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-entries-settings-container .dashicons {
font-size: 19px;
line-height: 17px;
height: 17px;
width: 17px;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-entries-settings-container .wpforms-entries-settings-menu {
background: #ffffff;
border-radius: 6px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
display: none;
width: 240px;
position: absolute;
z-index: 30;
right: 10px;
top: 55px;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-entries-settings-container .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap .wpforms-settings-title {
display: block;
width: 100%;
font-size: 11px;
line-height: 13px;
text-transform: uppercase;
padding: 14px 15px;
border-top: 1px solid #dcdcde;
border-bottom: 1px solid #dcdcde;
margin: 7.5px 0;
font-weight: 600;
color: #50575e;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-entries-settings-container .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap .wpforms-settings-title:first-child {
border-top: 0;
margin-top: 0;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-entries-settings-container .wpforms-entries-settings-menu .wpforms-entries-settings-menu-wrap .wpforms-toggle-control {
padding: 8px 14px;
font-weight: 400;
opacity: .5;
pointer-events: none;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-sample-notification {
display: flex;
padding: 20px;
flex-direction: column;
align-items: flex-start;
gap: 10px;
border-radius: 6px;
background: #fff;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.07);
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-sample-notification h2 {
color: #1d2327;
font-size: 20px;
font-weight: 500;
line-height: 18px;
margin: 0;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-sample-notification .notice-buttons {
margin: 0;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-sample-notification .notice-buttons .wpforms-btn {
box-sizing: border-box;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-sample-notification .wpforms-sample-notification-content {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 5px;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-sample-notification .wpforms-sample-notification-content p {
color: #2c3338;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 22px;
opacity: 0.8;
margin: 0;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-sample-notification .wpforms-sample-notification-content p a {
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 22px;
text-decoration-line: underline;
}
#wpforms-entries-single.wpforms-entries-single-sample .wpforms-sample-notification #wpforms-hide-sample-data {
display: none;
}
#wpforms-entries-single.wpforms-entries-single-sample #poststuff {
padding-top: 20px;
}
.rtl #wpforms-entries-single .wpforms-entry-details-meta p, .rtl #wpforms-entries-single .wpforms-entry-actions-meta p, .rtl #wpforms-entries-single .wpforms-entry-payment-meta p {
padding: 6px 42px 6.5px 12px;
}
.rtl #wpforms-entries-single .wpforms-entries-settings-container .wpforms-entries-settings-menu {
left: 10px;
right: auto;
}
@media (max-width: 600px) {
#wpforms-entries-single.wpforms-admin-wrap .page-title a.page-title-action {
display: none !important;
}
#wpforms-entries-single .wpforms-admin-single-navigation {
display: flex;
}
#wpforms-entries-single .wpforms-admin-single-navigation .wpforms-admin-single-navigation-text {
display: none;
}
}
#publishing-action .button,
.wpforms-input-disabled {
cursor: not-allowed;
}
#wpforms-entries-single .button:hover {
background-color: #056aab;
border-color: #056aab;
color: #ffffff;
}
#wpforms-admin-single-navigation-next-link:hover {
background-color: #f0f0f1;
}
File diff suppressed because one or more lines are too long