File Editor: Eliminate gap inserted between code editor and heading in IE11 when CodeMirror initializes.
Props afercia, melchoyce, Clorith for testing, SergeyBiryukov for testing. See #12423. Fixes #42554 for 4.9. Built from https://develop.svn.wordpress.org/branches/4.9@42190 git-svn-id: http://core.svn.wordpress.org/branches/4.9@42020 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
567de560e9
commit
73615e0bc4
|
@ -860,7 +860,7 @@ hr {
|
||||||
#media-items a.delete,
|
#media-items a.delete,
|
||||||
#media-items a.delete-permanently,
|
#media-items a.delete-permanently,
|
||||||
#nav-menu-footer .menu-delete,
|
#nav-menu-footer .menu-delete,
|
||||||
#delete-link a.delete {
|
#delete-link a.delete {
|
||||||
color: #a00;
|
color: #a00;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3042,6 +3042,7 @@ img {
|
||||||
min-height: 60vh;
|
min-height: 60vh;
|
||||||
height: calc( 100vh - 295px );
|
height: calc( 100vh - 295px );
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
#templateside > h2 {
|
#templateside > h2 {
|
||||||
|
@ -3060,8 +3061,8 @@ img {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
min-height: calc(60vh + 2px);
|
min-height: 60vh;
|
||||||
height: calc(100vh - 293px);
|
height: calc(100vh - 295px);
|
||||||
background-color: #f7f7f7;
|
background-color: #f7f7f7;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
border-right: none;
|
border-right: none;
|
||||||
|
@ -3849,7 +3850,7 @@ img {
|
||||||
.fileedit-sub #theme,
|
.fileedit-sub #theme,
|
||||||
.fileedit-sub #plugin {
|
.fileedit-sub #plugin {
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
max-width: 70%;
|
max-width: 70%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fileedit-sub input[type="submit"] {
|
.fileedit-sub input[type="submit"] {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -860,7 +860,7 @@ hr {
|
||||||
#media-items a.delete,
|
#media-items a.delete,
|
||||||
#media-items a.delete-permanently,
|
#media-items a.delete-permanently,
|
||||||
#nav-menu-footer .menu-delete,
|
#nav-menu-footer .menu-delete,
|
||||||
#delete-link a.delete {
|
#delete-link a.delete {
|
||||||
color: #a00;
|
color: #a00;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3042,6 +3042,7 @@ img {
|
||||||
min-height: 60vh;
|
min-height: 60vh;
|
||||||
height: calc( 100vh - 295px );
|
height: calc( 100vh - 295px );
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
#templateside > h2 {
|
#templateside > h2 {
|
||||||
|
@ -3060,8 +3061,8 @@ img {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
min-height: calc(60vh + 2px);
|
min-height: 60vh;
|
||||||
height: calc(100vh - 293px);
|
height: calc(100vh - 295px);
|
||||||
background-color: #f7f7f7;
|
background-color: #f7f7f7;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
border-left: none;
|
border-left: none;
|
||||||
|
@ -3849,7 +3850,7 @@ img {
|
||||||
.fileedit-sub #theme,
|
.fileedit-sub #theme,
|
||||||
.fileedit-sub #plugin {
|
.fileedit-sub #plugin {
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
max-width: 70%;
|
max-width: 70%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fileedit-sub input[type="submit"] {
|
.fileedit-sub input[type="submit"] {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.9-RC3-42188';
|
$wp_version = '4.9-RC3-42190';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue