Ticket #41020: 41020.2.patch
File 41020.2.patch, 3.6 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
1116 1116 <p class="community-events-footer"> 1117 1117 <?php 1118 1118 printf( 1119 '<a href="%1$s" target="_blank" >%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>',1119 '<a href="%1$s" target="_blank" rel="noopener noreferrer">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>', 1120 1120 'https://make.wordpress.org/community/meetups-landing-page', 1121 1121 __( 'Meetups' ), 1122 1122 /* translators: accessibility text */ … … 1128 1128 1129 1129 <?php 1130 1130 printf( 1131 '<a href="%1$s" target="_blank" >%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>',1131 '<a href="%1$s" target="_blank" rel="noopener noreferrer">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>', 1132 1132 'https://central.wordcamp.org/schedule/', 1133 1133 __( 'WordCamps' ), 1134 1134 /* translators: accessibility text */ … … 1140 1140 1141 1141 <?php 1142 1142 printf( 1143 '<a href="%1$s" target="_blank" >%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>',1143 '<a href="%1$s" target="_blank" rel="noopener noreferrer">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>', 1144 1144 /* translators: If a Rosetta site exists (e.g. https://es.wordpress.org/news/), then use that. Otherwise, leave untranslated. */ 1145 1145 esc_url( _x( 'https://wordpress.org/news/', 'Events and News dashboard widget' ) ), 1146 1146 __( 'News' ), … … 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" rel="noopener noreferrer">{{ 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>