Ticket #60501: 60501-2.diff
File 60501-2.diff, 1.3 KB (added by , 11 months ago) |
---|
-
wp-admin/css/list-tables.css
1598 1598 .plugin-card .plugin-dependencies { 1599 1599 background-color: #e5f5fa; 1600 1600 border-left: 3px solid #72aee6; 1601 margin-bottom: .5em;1602 1601 padding: 15px; 1603 1602 } 1604 1603 … … 1661 1660 margin-bottom: 10px; 1662 1661 } 1663 1662 1663 .plugin-card-center { 1664 position: relative; 1665 padding: 0 20px 20px; 1666 margin-top: auto; 1667 } 1668 1664 1669 .plugin-card-bottom { 1665 1670 clear: both; 1666 1671 padding: 12px 20px; -
wp-admin/includes/class-wp-plugin-install-list-table.php
673 673 <p><?php echo $description; ?></p> 674 674 <p class="authors"><?php echo $author; ?></p> 675 675 </div> 676 <?php echo $this->get_dependencies_notice( $plugin ); ?>677 676 </div> 677 <?php 678 $dependencies_notice = $this->get_dependencies_notice( $plugin ); 679 if ( ! empty( $dependencies_notice ) ) { 680 echo '<div class="plugin-card-center">' . $dependencies_notice . '</div>'; 681 } 682 ?> 678 683 <div class="plugin-card-bottom"> 679 684 <div class="vers column-rating"> 680 685 <?php