Plugin Directory

Changeset 3251505


Ignore:
Timestamp:
03/06/2025 07:23:19 AM (13 months ago)
Author:
DesignPlus
Message:

Release version 1.2.2

Location:
tcd-classic-editor/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • tcd-classic-editor/trunk/assets/css/utility.css

    r3248450 r3251505  
    917917    overflow: auto;
    918918    white-space: nowrap;
     919    padding-inline: var(--tcdce-utility-scroll-table-margin, 20px);
     920    margin-inline: calc(var(--tcdce-utility-scroll-table-margin, 20px) * -1);
     921  }
     922
     923  .s_table table {
     924    position: relative;
     925  }
     926
     927  .s_table table:after {
     928    content: "";
     929    position: absolute;
     930    top: 0;
     931    left: 100%;
     932    height: 1px;
     933    width: var(--tcdce-utility-scroll-table-margin, 20px);
    919934  }
    920935}
  • tcd-classic-editor/trunk/classes/class-tcdce-editor.php

    r3248450 r3251505  
    396396            $atts = shortcode_atts(
    397397                array(
    398                     'url' => ''
     398                    'url' => '',
     399                    // 更新日付を非表示にできるオプション
     400                    'hide-modify-date' => 0,
    399401                ),
    400402                $atts
     
    431433
    432434                return '<div class="tcdce-caution">' . __( 'Please enter the correct URL.', 'tcd-classic-editor' ) . '</div>';
    433 
    434435            }
    435436
     
    449450                    <?php echo esc_html( $date ); ?>
    450451                </span>
    451                 <span class="tcdce-card__meta-date tcdce-card__meta-date--modify">
    452                     <?php echo esc_html( $update_date ); ?>
    453                 </span>
     452                <?php if( ! $atts['hide-modify-date'] ){ ?>
     453                    <span class="tcdce-card__meta-date tcdce-card__meta-date--modify">
     454                        <?php echo esc_html( $update_date ); ?>
     455                    </span>
     456                <?php } ?>
    454457            </div>
    455458            <?php } ?>
  • tcd-classic-editor/trunk/readme.txt

    r3250078 r3251505  
    44Requires at least: 6.7
    55Tested up to: 6.7
    6 Stable tag: 1.2.1
     6Stable tag: 1.2.2
    77Requires PHP: 8.0
    88License: GPLv2 or later
     
    4747
    4848== Changelog ==
     49= 1.2.2 =
     50* Updated: Minor CSS adjustments for improved design.
     51
    4952= 1.2.1 =
    5053* Updated: Minor CSS adjustments for improved design.
  • tcd-classic-editor/trunk/tcd-classic-editor.php

    r3250078 r3251505  
    44 * Plugin URI:
    55 * Description: This is a classic editor extension plug-in for TCD users.
    6  * Version: 1.2.1
     6 * Version: 1.2.2
    77 * Author: TCD
    88 * Author URI: https://tcd-theme.com/
Note: See TracChangeset for help on using the changeset viewer.