Changeset 27877
- Timestamp:
- 03/31/2014 09:21:18 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.8/src/wp-includes/post-template.php
r27874 r27877 1443 1443 echo "</ul>"; 1444 1444 } 1445 1446 /** 1447 * Dashboard CSS fixes for 3.8.2. 1448 * 1449 * This function cheaply fixes #WP27082 and #WP26910 in lieu of 1450 * changing the massive wp-admin.css file in a point release. 1451 * This lucky includes file was already receiving an update. 1452 * 1453 * @since 3.8.2 1454 * @access private 1455 */ 1456 function wp_382_css_hotfix() { 1457 echo '<style type="text/css"> 1458 #activity-widget #the-comment-list .comment-item { position: relative; } 1459 .tagsdiv .newtag { padding: 6px 10px; height: auto; } 1460 </style> 1461 '; 1462 } 1463 add_action( 'admin_print_styles', 'wp_382_css_hotfix', 30 );
Note: See TracChangeset
for help on using the changeset viewer.