Plugins: Fix Upgrade icon alignment on mobile in Plugins Install screen.
This changeset ensures the upgrade icon is correctly aligned on small screens, in the Plugins Install screen. Props rajanpanchal2028, mukesh27, robinwpdeveloper. Fixes #55627. Built from https://develop.svn.wordpress.org/trunk@54361 git-svn-id: http://core.svn.wordpress.org/trunk@53920 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0296dc6d98
commit
1c1e37a8a4
|
@ -1373,11 +1373,11 @@ ul.cat-checklist {
|
|||
content: "\f463";
|
||||
display: inline-block;
|
||||
font: normal 20px/1 dashicons;
|
||||
margin: 3px -2px 0 5px;
|
||||
margin: -3px -2px 0 5px;
|
||||
speak: never;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
vertical-align: top;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.plugin-card .updating-message:before {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1372,11 +1372,11 @@ ul.cat-checklist {
|
|||
content: "\f463";
|
||||
display: inline-block;
|
||||
font: normal 20px/1 dashicons;
|
||||
margin: 3px 5px 0 -2px;
|
||||
margin: -3px 5px 0 -2px;
|
||||
speak: never;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
vertical-align: top;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.plugin-card .updating-message:before {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.1-beta2-54360';
|
||||
$wp_version = '6.1-beta2-54361';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue