Ticket #41020: 41020.1.patch
File 41020.1.patch, 1.9 KB (added by , 5 years ago) |
---|
-
wp-admin/css/dashboard-rtl.css
430 430 .community-events .event-title { 431 431 font-weight: 600; 432 432 display: block; 433 line-height: 1.5; 433 434 } 434 435 436 .community-events .event-title .dashicons-external { 437 display: inline-block; /* Display for all users even those not visually impaired */ 438 } 439 435 440 .community-events .event-date, 436 441 .community-events .event-time { 437 442 display: block; -
wp-admin/css/dashboard.css
430 430 .community-events .event-title { 431 431 font-weight: 600; 432 432 display: block; 433 line-height: 1.5; 433 434 } 434 435 436 .community-events .event-title .dashicons-external { 437 display: inline-block; /* Display for all users even those not visually impaired */ 438 } 439 435 440 .community-events .event-date, 436 441 .community-events .event-time { 437 442 display: block; -
wp-admin/includes/dashboard.php
1263 1263 <div class="event-info"> 1264 1264 <div class="dashicons event-icon" aria-hidden="true"></div> 1265 1265 <div class="event-info-inner"> 1266 <a class="event-title" href="{{ event.url }}">{{ event.title }}</a> 1266 <?php 1267 printf( 1268 '<a class="event-title" href="{{ event.url }}" target="_blank">{{ event.title }} <span class="screen-reader-text">%1$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>', 1269 /* translators: accessibility text */ 1270 __( '(opens in a new window)' ) 1271 ); 1272 ?> 1267 1273 <span class="event-city">{{ event.location.location }}</span> 1268 1274 </div> 1269 1275 </div>