Changeset 3251505
- Timestamp:
- 03/06/2025 07:23:19 AM (13 months ago)
- Location:
- tcd-classic-editor/trunk
- Files:
-
- 4 edited
-
assets/css/utility.css (modified) (1 diff)
-
classes/class-tcdce-editor.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
tcd-classic-editor.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tcd-classic-editor/trunk/assets/css/utility.css
r3248450 r3251505 917 917 overflow: auto; 918 918 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); 919 934 } 920 935 } -
tcd-classic-editor/trunk/classes/class-tcdce-editor.php
r3248450 r3251505 396 396 $atts = shortcode_atts( 397 397 array( 398 'url' => '' 398 'url' => '', 399 // 更新日付を非表示にできるオプション 400 'hide-modify-date' => 0, 399 401 ), 400 402 $atts … … 431 433 432 434 return '<div class="tcdce-caution">' . __( 'Please enter the correct URL.', 'tcd-classic-editor' ) . '</div>'; 433 434 435 } 435 436 … … 449 450 <?php echo esc_html( $date ); ?> 450 451 </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 } ?> 454 457 </div> 455 458 <?php } ?> -
tcd-classic-editor/trunk/readme.txt
r3250078 r3251505 4 4 Requires at least: 6.7 5 5 Tested up to: 6.7 6 Stable tag: 1.2. 16 Stable tag: 1.2.2 7 7 Requires PHP: 8.0 8 8 License: GPLv2 or later … … 47 47 48 48 == Changelog == 49 = 1.2.2 = 50 * Updated: Minor CSS adjustments for improved design. 51 49 52 = 1.2.1 = 50 53 * Updated: Minor CSS adjustments for improved design. -
tcd-classic-editor/trunk/tcd-classic-editor.php
r3250078 r3251505 4 4 * Plugin URI: 5 5 * Description: This is a classic editor extension plug-in for TCD users. 6 * Version: 1.2. 16 * Version: 1.2.2 7 7 * Author: TCD 8 8 * Author URI: https://tcd-theme.com/
Note: See TracChangeset
for help on using the changeset viewer.