TinyMCE, inline link toolbar: add a bit more specificity to the selectors in editor.css to fix overriding in IE < 10.
See #32604. Built from https://develop.svn.wordpress.org/trunk@33372 git-svn-id: http://core.svn.wordpress.org/trunk@33344 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a3f7fdffff
commit
333957fcbd
|
@ -1684,7 +1684,7 @@ i.mce-i-wp_code:before {
|
|||
}
|
||||
}
|
||||
|
||||
.wp-link-preview {
|
||||
div.wp-link-preview {
|
||||
float: right;
|
||||
margin: 5px;
|
||||
max-width: 694px;
|
||||
|
@ -1692,7 +1692,7 @@ i.mce-i-wp_code:before {
|
|||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.wp-link-preview a {
|
||||
div.wp-link-preview a {
|
||||
color: #0073aa;
|
||||
text-decoration: underline;
|
||||
-webkit-transition-property: border, background, color;
|
||||
|
@ -1705,7 +1705,7 @@ i.mce-i-wp_code:before {
|
|||
}
|
||||
|
||||
@media screen and ( max-width: 782px ) {
|
||||
.wp-link-preview {
|
||||
div.wp-link-preview {
|
||||
margin: 8px 5px 8px 0;
|
||||
max-width: 70%;
|
||||
max-width: -webkit-calc(100% - 86px);
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1684,7 +1684,7 @@ i.mce-i-wp_code:before {
|
|||
}
|
||||
}
|
||||
|
||||
.wp-link-preview {
|
||||
div.wp-link-preview {
|
||||
float: left;
|
||||
margin: 5px;
|
||||
max-width: 694px;
|
||||
|
@ -1692,7 +1692,7 @@ i.mce-i-wp_code:before {
|
|||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.wp-link-preview a {
|
||||
div.wp-link-preview a {
|
||||
color: #0073aa;
|
||||
text-decoration: underline;
|
||||
-webkit-transition-property: border, background, color;
|
||||
|
@ -1705,7 +1705,7 @@ i.mce-i-wp_code:before {
|
|||
}
|
||||
|
||||
@media screen and ( max-width: 782px ) {
|
||||
.wp-link-preview {
|
||||
div.wp-link-preview {
|
||||
margin: 8px 0 8px 5px;
|
||||
max-width: 70%;
|
||||
max-width: -webkit-calc(100% - 86px);
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-beta4-33371';
|
||||
$wp_version = '4.3-beta4-33372';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue