From 82d937a96ec15cfdce62ed44b8cc3b9415786d22 Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Fri, 26 Jun 2015 17:54:57 +0000 Subject: [PATCH] TinyMCE, inline link toolbar: fix styling on small screens so the displayed URL is not needlessly truncated. See #32604. git-svn-id: https://develop.svn.wordpress.org/trunk@32956 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/css/editor.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/css/editor.css b/src/wp-includes/css/editor.css index 9009d72a17..3ef458f166 100644 --- a/src/wp-includes/css/editor.css +++ b/src/wp-includes/css/editor.css @@ -1685,9 +1685,10 @@ i.mce-i-wp_code:before { @media screen and ( max-width: 782px ) { .wp-link-preview { + margin: 8px 5px; max-width: 70%; - max-width: -webkit-calc(100% - 88px); - max-width: calc(100% - 88px); + max-width: -webkit-calc(100% - 80px); + max-width: calc(100% - 80px); } }