Files
homeproz/wp-content/plugins/wpforms-lite/assets/css/admin-bar.css
T
root b6df4dbb92 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>
2026-04-29 15:32:23 +00:00

67 lines
1.6 KiB
CSS
Executable File

#wpadminbar .wpforms-menu-notification-counter {
display: inline-block !important;
min-width: 18px !important;
height: 18px !important;
border-radius: 9px !important;
margin: 7px 0 0 2px !important;
vertical-align: top !important;
font-size: 11px !important;
line-height: 1.6 !important;
text-align: center !important;
}
#wpadminbar .wpforms-menu-notification-indicator {
float: right !important;
margin: 10px 0 0 !important;
width: 8px !important;
height: 8px !important;
border-radius: 4px !important;
}
#wpadminbar .wpforms-menu-notification-indicator:after {
display: block !important;
content: "";
position: absolute !important;
width: inherit !important;
height: inherit !important;
border-radius: inherit !important;
background-color: inherit !important;
animation: wpforms-menu-notification-indicator-pulse 1.5s infinite !important;
}
@keyframes wpforms-menu-notification-indicator-pulse {
0% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(3);
opacity: 0;
}
}
#wpadminbar .wpforms-menu-form-notifications {
border-top: 1px solid #3c4146 !important;
margin-top: 6px !important;
padding-top: 6px !important;
}
#wpadminbar .wpforms-menu-form-notifications > .ab-item .wp-admin-bar-arrow::before {
top: 6px !important;
}
#wpadminbar #wp-admin-bar-wpforms-upgrade a {
background-color: #00a32a;
color: #ffffff;
}
#wpadminbar #wp-admin-bar-wpforms-upgrade a:hover {
background-color: #008a20;
}
#wpadminbar .wpforms-menu-form-last {
border-bottom: 1px solid #3c4146 !important;
margin-bottom: 6px !important;
padding-bottom: 6px !important;
}