mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Remove unnecessary CSS overriding on Add Plugins screen.
props pavelevap. fixes #29753. Built from https://develop.svn.wordpress.org/trunk@29775 git-svn-id: http://core.svn.wordpress.org/trunk@29547 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ebdfe06843
commit
9bf3007b55
@ -1408,10 +1408,6 @@ div.action-links,
|
||||
content: '\f147';
|
||||
}
|
||||
|
||||
.plugin-card .compatibility-untested strong {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.plugin-icon {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
|
@ -1408,10 +1408,6 @@ div.action-links,
|
||||
content: '\f147';
|
||||
}
|
||||
|
||||
.plugin-card .compatibility-untested strong {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.plugin-icon {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
|
2
wp-admin/css/wp-admin-rtl.min.css
vendored
2
wp-admin/css/wp-admin-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
2
wp-admin/css/wp-admin.min.css
vendored
2
wp-admin/css/wp-admin.min.css
vendored
File diff suppressed because one or more lines are too long
@ -467,7 +467,7 @@ class WP_Plugin_Install_List_Table extends WP_List_Table {
|
||||
<div class="column-compatibility">
|
||||
<?php
|
||||
if ( ! empty( $plugin['tested'] ) && version_compare( substr( $GLOBALS['wp_version'], 0, strlen( $plugin['tested'] ) ), $plugin['tested'], '>' ) ) {
|
||||
echo '<span class="compatibility-untested">' . __( '<strong>Untested</strong> with your version of WordPress' ) . '</span>';
|
||||
echo '<span class="compatibility-untested">' . __( 'Untested with your version of WordPress' ) . '</span>';
|
||||
} elseif ( ! empty( $plugin['requires'] ) && version_compare( substr( $GLOBALS['wp_version'], 0, strlen( $plugin['requires'] ) ), $plugin['requires'], '<' ) ) {
|
||||
echo '<span class="compatibility-incompatible">' . __( '<strong>Incompatible</strong> with your version of WordPress' ) . '</span>';
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user