Plugin Directory

Changeset 3479486


Ignore:
Timestamp:
03/10/2026 07:48:17 PM (3 weeks ago)
Author:
davelabs
Message:

Fix dashboard layout overflow in Recently Modified Pages and Posts boxes

Location:
folderra-smart-folder-organizer/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • folderra-smart-folder-organizer/trunk/readme.txt

    r3475276 r3479486  
    55Tested up to: 6.9.1
    66Requires PHP: 7.4
    7 Stable tag: 1.3.0
     7Stable tag: 1.3.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1141148. Media Organizer: Used tab with usage preview
    1151159. Media Organizer: Duplicates detection
    116 10. Media Organizer: Unused tab
    117 11. Recently Modified workflow panels
     11610. Recently Modified workflow panels
    118117
    119118== Privacy ==
     
    122121
    123122== Changelog ==
     123
     124= 1.3.1 =
     125* Fixed dashboard layout issue where Recently Modified boxes could overflow horizontally with long content titles.
     126* Improved alignment and width consistency of dashboard cards.
    124127
    125128= 1.3.0 =
  • folderra-smart-folder-organizer/trunk/wpsmartfolder.php

    r3475276 r3479486  
    44 * Plugin URI: https://wpsmartfolder.com
    55 * Description: Organize your WordPress pages and posts with smart folders, drag & drop, and advanced structure management.
    6  * Version: 1.3.0
     6 * Version: 1.3.1
    77 * Author: DaveLabs
    88 * Text Domain: folderra-smart-folder-organizer
     
    2121
    2222// Main version constant
    23 define('FOLD82SM_VERSION', '1.3.0');
     23define('FOLD82SM_VERSION', '1.3.1');
    2424
    2525// Backward compatibility for PRO plugin integration
     
    732732   
    733733// ===== RECENTLY MODIFIED (FREE) =====
    734 echo '<div style="display:grid; grid-template-columns: 1fr 1fr; gap:20px; margin-top:20px;">';
     734echo '<div style="display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:20px; margin-top:20px;">';
    735735fold82sm_render_recently_modified_box(
    736736    'page',
     
    21242124    ) );
    21252125
    2126     echo '<div class="fold82sm-recent-box" style="background:#fff; padding:20px; border-radius:8px; border-left:4px solid ' . esc_attr( $border_color ) . '; box-shadow:0 4px 12px ' . esc_attr( $shadow_color ) . ';">';
     2126    echo '<div class="fold82sm-recent-box" style="background:#fff; padding:20px; border-radius:8px; border-left:4px solid ' . esc_attr( $border_color ) . '; box-shadow:0 4px 12px ' . esc_attr( $shadow_color ) . '; min-width:0; width:100%; box-sizing:border-box;">';
    21272127    echo '  <div style="display:flex; align-items:center; gap:10px; margin-bottom:10px;">';
    21282128    echo '    <span class="dashicons dashicons-' . esc_attr( $icon ) . '" style="font-size:22px; color:' . esc_attr( $icon_color ) . ';"></span>';
     
    21752175            }
    21762176
    2177             echo '<div class="fold82sm-recent-item" style="display:flex; align-items:center; justify-content:space-between; gap:12px; padding:12px; background:#f8f9fa; border-radius:6px; border:1px solid #e9ecef;">';
    2178 
    2179             echo '  <div style="min-width:0;">';
     2177            echo '<div class="fold82sm-recent-item" style="display:flex; align-items:center; justify-content:space-between; gap:12px; padding:12px; background:#f8f9fa; border-radius:6px; border:1px solid #e9ecef; min-width:0; width:100%; box-sizing:border-box;">';
     2178
     2179            echo '  <div style="flex:1 1 auto; min-width:0; overflow:hidden;">';
    21802180            echo '    <div style="font-size:13px; font-weight:600; color:#2c3338; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;">';
    21812181            echo esc_html( $item_title ) . $badge;
     
    30703070        plugins_url( 'js/wpsmartfolder-metabox.js', __FILE__ ),
    30713071        array( 'jquery' ),
    3072         defined( 'FOLD82SM_VERSION' ) ? FOLD82SM_VERSION : '1.3.0',
     3072        defined( 'FOLD82SM_VERSION' ) ? FOLD82SM_VERSION : '1.3.1',
    30733073        true
    30743074    );
     
    31153115        plugins_url( 'js/folderra-editor-fixes.js', __FILE__ ),
    31163116        array( 'wp-data', 'wp-dom-ready', 'wp-edit-post' ),
    3117         '1.3.0',
     3117        '1.3.1',
    31183118        true
    31193119    );
Note: See TracChangeset for help on using the changeset viewer.