- Timestamp:
- 03/05/2025 11:25:14 PM (6 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/customize/class-wp-customize-date-time-control.php
r55276 r59942 155 155 ?> 156 156 </label> 157 <input id="{{ idPrefix }}date-time-day" type="number" size="2" autocomplete="off" class="date-input day " data-component="day" min="1" max="31" />157 <input id="{{ idPrefix }}date-time-day" type="number" size="2" autocomplete="off" class="date-input day tiny-text" data-component="day" min="1" max="31" /> 158 158 <?php $day_field = trim( ob_get_clean() ); ?> 159 159 … … 165 165 ?> 166 166 </label> 167 <input id="{{ idPrefix }}date-time-year" type="number" size="4" autocomplete="off" class="date-input year " data-component="year" min="{{ data.minYear }}" max="{{ data.maxYear }}">167 <input id="{{ idPrefix }}date-time-year" type="number" size="4" autocomplete="off" class="date-input year tiny-text" data-component="year" min="{{ data.minYear }}" max="{{ data.maxYear }}"> 168 168 <?php $year_field = trim( ob_get_clean() ); ?> 169 169 … … 183 183 <# var maxHour = data.twelveHourFormat ? 12 : 23; #> 184 184 <# var minHour = data.twelveHourFormat ? 1 : 0; #> 185 <input id="{{ idPrefix }}date-time-hour" type="number" size="2" autocomplete="off" class="date-input hour " data-component="hour" min="{{ minHour }}" max="{{ maxHour }}">185 <input id="{{ idPrefix }}date-time-hour" type="number" size="2" autocomplete="off" class="date-input hour tiny-text" data-component="hour" min="{{ minHour }}" max="{{ maxHour }}"> 186 186 : 187 187 <label for="{{ idPrefix }}date-time-minute" class="screen-reader-text"> … … 191 191 ?> 192 192 </label> 193 <input id="{{ idPrefix }}date-time-minute" type="number" size="2" autocomplete="off" class="date-input minute " data-component="minute" min="0" max="59">193 <input id="{{ idPrefix }}date-time-minute" type="number" size="2" autocomplete="off" class="date-input minute tiny-text" data-component="minute" min="0" max="59"> 194 194 <# if ( data.twelveHourFormat ) { #> 195 195 <label for="{{ idPrefix }}date-time-meridian" class="screen-reader-text">
Note: See TracChangeset
for help on using the changeset viewer.