Changeset 36153
- Timestamp:
- 01/02/2016 04:33:08 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.4/src/wp-includes/formatting.php
r36101 r36153 4803 4803 return $short_url; 4804 4804 } 4805 4806 /** 4807 * 4.4.x hotfix for hidden configure links on admin dashboard. 4808 * 4809 * @ignore 4810 */ 4811 function _wp_441_dashboard_display_configure_links_css() { 4812 echo '<style type="text/css"> 4813 .postbox .button-link .edit-box { display: none; } 4814 .wp-admin .edit-box { display: block; opacity: 0; } 4815 .hndle:hover .edit-box, .edit-box:focus { opacity: 1; } 4816 #dashboard-widgets h2 a { text-decoration: underline; } 4817 #dashboard-widgets .hndle .postbox-title-action { float: right; line-height: 1.2; } 4818 </style>'; 4819 } 4820 add_action( 'admin_print_styles-index.php', '_wp_441_dashboard_display_configure_links_css' );
Note: See TracChangeset
for help on using the changeset viewer.