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
This commit is contained in:
Andrew Ozz 2015-06-26 17:54:57 +00:00
parent d6ebee58c2
commit 82d937a96e
1 changed files with 3 additions and 2 deletions

View File

@ -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);
}
}