TinyMCE, inline link toolbar: fix styling on small screens so the displayed URL is not needlessly truncated.
See #32604. Built from https://develop.svn.wordpress.org/trunk@32956 git-svn-id: http://core.svn.wordpress.org/trunk@32927 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a6b7a691be
commit
5f041b37bf
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-alpha-32955';
|
||||
$wp_version = '4.3-alpha-32956';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue