Plugins: Properly wrap long tab names to a second line in plugin details modal.
Fixes #33221. Built from https://develop.svn.wordpress.org/trunk@37218 git-svn-id: http://core.svn.wordpress.org/trunk@37184 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f760d05a63
commit
4109e8b9f8
|
@ -2408,7 +2408,8 @@ div.action-links {
|
|||
position: relative;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 36px;
|
||||
min-height: 36px;
|
||||
font-size: 0;
|
||||
z-index: 1;
|
||||
border-bottom: 1px solid #ddd;
|
||||
background: #f3f3f3;
|
||||
|
@ -2416,7 +2417,7 @@ div.action-links {
|
|||
|
||||
#plugin-information-tabs a {
|
||||
position: relative;
|
||||
float: right;
|
||||
display: inline-block;
|
||||
padding: 9px 10px;
|
||||
margin: 0;
|
||||
height: 18px;
|
||||
|
@ -2428,7 +2429,7 @@ div.action-links {
|
|||
}
|
||||
|
||||
#plugin-information-tabs a.current {
|
||||
margin: 0 -1px 0;
|
||||
margin: 0 -1px -1px;
|
||||
background: #fff;
|
||||
border: 1px solid #ddd;
|
||||
border-bottom-color: #fff;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2408,7 +2408,8 @@ div.action-links {
|
|||
position: relative;
|
||||
right: 0;
|
||||
left: 0;
|
||||
height: 36px;
|
||||
min-height: 36px;
|
||||
font-size: 0;
|
||||
z-index: 1;
|
||||
border-bottom: 1px solid #ddd;
|
||||
background: #f3f3f3;
|
||||
|
@ -2416,7 +2417,7 @@ div.action-links {
|
|||
|
||||
#plugin-information-tabs a {
|
||||
position: relative;
|
||||
float: left;
|
||||
display: inline-block;
|
||||
padding: 9px 10px;
|
||||
margin: 0;
|
||||
height: 18px;
|
||||
|
@ -2428,7 +2429,7 @@ div.action-links {
|
|||
}
|
||||
|
||||
#plugin-information-tabs a.current {
|
||||
margin: 0 -1px 0;
|
||||
margin: 0 -1px -1px;
|
||||
background: #fff;
|
||||
border: 1px solid #ddd;
|
||||
border-bottom-color: #fff;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.6-alpha-37217';
|
||||
$wp_version = '4.6-alpha-37218';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue