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

See #32604.
Built from https://develop.svn.wordpress.org/trunk@32967


git-svn-id: http://core.svn.wordpress.org/trunk@32938 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2015-06-27 02:21:24 +00:00
parent 7715a50c0b
commit e311b53cfc
5 changed files with 9 additions and 9 deletions

View File

@ -1685,10 +1685,10 @@ i.mce-i-wp_code:before {
@media screen and ( max-width: 782px ) {
.wp-link-preview {
margin: 8px 5px;
margin: 8px 5px 8px 0;
max-width: 70%;
max-width: -webkit-calc(100% - 80px);
max-width: calc(100% - 80px);
max-width: -webkit-calc(100% - 82px);
max-width: calc(100% - 82px);
}
}

File diff suppressed because one or more lines are too long

View File

@ -1685,10 +1685,10 @@ i.mce-i-wp_code:before {
@media screen and ( max-width: 782px ) {
.wp-link-preview {
margin: 8px 5px;
margin: 8px 0 8px 5px;
max-width: 70%;
max-width: -webkit-calc(100% - 80px);
max-width: calc(100% - 80px);
max-width: -webkit-calc(100% - 82px);
max-width: calc(100% - 82px);
}
}

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-alpha-32966';
$wp_version = '4.3-alpha-32967';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.