TinyMCE, inline link toolbar: tweak styling on small screens to fix wrapping in iOS.

Fixes #32604.
Built from https://develop.svn.wordpress.org/trunk@33350


git-svn-id: http://core.svn.wordpress.org/trunk@33322 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2015-07-21 22:25:24 +00:00
parent 253d9db831
commit 8a090123ce
5 changed files with 7 additions and 7 deletions

View File

@ -1708,8 +1708,8 @@ i.mce-i-wp_code:before {
.wp-link-preview {
margin: 8px 5px 8px 0;
max-width: 70%;
max-width: -webkit-calc(100% - 82px);
max-width: calc(100% - 82px);
max-width: -webkit-calc(100% - 86px);
max-width: calc(100% - 86px);
}
}

File diff suppressed because one or more lines are too long

View File

@ -1708,8 +1708,8 @@ i.mce-i-wp_code:before {
.wp-link-preview {
margin: 8px 0 8px 5px;
max-width: 70%;
max-width: -webkit-calc(100% - 82px);
max-width: calc(100% - 82px);
max-width: -webkit-calc(100% - 86px);
max-width: calc(100% - 86px);
}
}

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-beta3-33349';
$wp_version = '4.3-beta3-33350';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.