TinyMCE: inline toolbar: reduce size arrow
The size of the arrow box was too big. It prevented the user from moving the cursor to a place right above the arrow. See #32604. Built from https://develop.svn.wordpress.org/trunk@33416 git-svn-id: http://core.svn.wordpress.org/trunk@33384 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0433e258b9
commit
ba900970f7
|
@ -269,30 +269,30 @@ div.mce-inline-toolbar-grp:after {
|
|||
}
|
||||
|
||||
div.mce-inline-toolbar-grp.mce-arrow-up:before {
|
||||
top: -18px;
|
||||
top: -9px;
|
||||
border-bottom-color: #a0a5aa;
|
||||
border-width: 9px;
|
||||
border-width: 0 9px 9px;
|
||||
margin-right: -9px;
|
||||
}
|
||||
|
||||
div.mce-inline-toolbar-grp.mce-arrow-down:before {
|
||||
bottom: -18px;
|
||||
bottom: -9px;
|
||||
border-top-color: #a0a5aa;
|
||||
border-width: 9px;
|
||||
border-width: 9px 9px 0;
|
||||
margin-right: -9px;
|
||||
}
|
||||
|
||||
div.mce-inline-toolbar-grp.mce-arrow-up:after {
|
||||
top: -16px;
|
||||
top: -8px;
|
||||
border-bottom-color: #f5f5f5;
|
||||
border-width: 8px;
|
||||
border-width: 0 8px 8px;
|
||||
margin-right: -8px;
|
||||
}
|
||||
|
||||
div.mce-inline-toolbar-grp.mce-arrow-down:after {
|
||||
bottom: -16px;
|
||||
bottom: -8px;
|
||||
border-top-color: #f5f5f5;
|
||||
border-width: 8px;
|
||||
border-width: 8px 8px 0;
|
||||
margin-right: -8px;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -269,30 +269,30 @@ div.mce-inline-toolbar-grp:after {
|
|||
}
|
||||
|
||||
div.mce-inline-toolbar-grp.mce-arrow-up:before {
|
||||
top: -18px;
|
||||
top: -9px;
|
||||
border-bottom-color: #a0a5aa;
|
||||
border-width: 9px;
|
||||
border-width: 0 9px 9px;
|
||||
margin-left: -9px;
|
||||
}
|
||||
|
||||
div.mce-inline-toolbar-grp.mce-arrow-down:before {
|
||||
bottom: -18px;
|
||||
bottom: -9px;
|
||||
border-top-color: #a0a5aa;
|
||||
border-width: 9px;
|
||||
border-width: 9px 9px 0;
|
||||
margin-left: -9px;
|
||||
}
|
||||
|
||||
div.mce-inline-toolbar-grp.mce-arrow-up:after {
|
||||
top: -16px;
|
||||
top: -8px;
|
||||
border-bottom-color: #f5f5f5;
|
||||
border-width: 8px;
|
||||
border-width: 0 8px 8px;
|
||||
margin-left: -8px;
|
||||
}
|
||||
|
||||
div.mce-inline-toolbar-grp.mce-arrow-down:after {
|
||||
bottom: -16px;
|
||||
bottom: -8px;
|
||||
border-top-color: #f5f5f5;
|
||||
border-width: 8px;
|
||||
border-width: 8px 8px 0;
|
||||
margin-left: -8px;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-beta4-33415';
|
||||
$wp_version = '4.3-beta4-33416';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue