From b6eb753618455cc441c72e1dc176cac6af8d3f6f Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Sat, 27 Jun 2015 02:20:30 +0000 Subject: [PATCH] TinyMCE, inline link toolbar: tweak styling on small screens to fix wrapping in iOS. See #32604. git-svn-id: https://develop.svn.wordpress.org/trunk@32967 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/css/editor.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/css/editor.css b/src/wp-includes/css/editor.css index 71a625b0d4..59552907c0 100644 --- a/src/wp-includes/css/editor.css +++ b/src/wp-includes/css/editor.css @@ -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); } }