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:
Ella Iseulde Van Dorpe 2015-07-25 16:46:25 +00:00
parent 0433e258b9
commit ba900970f7
5 changed files with 19 additions and 19 deletions

View File

@ -269,30 +269,30 @@ div.mce-inline-toolbar-grp:after {
} }
div.mce-inline-toolbar-grp.mce-arrow-up:before { div.mce-inline-toolbar-grp.mce-arrow-up:before {
top: -18px; top: -9px;
border-bottom-color: #a0a5aa; border-bottom-color: #a0a5aa;
border-width: 9px; border-width: 0 9px 9px;
margin-right: -9px; margin-right: -9px;
} }
div.mce-inline-toolbar-grp.mce-arrow-down:before { div.mce-inline-toolbar-grp.mce-arrow-down:before {
bottom: -18px; bottom: -9px;
border-top-color: #a0a5aa; border-top-color: #a0a5aa;
border-width: 9px; border-width: 9px 9px 0;
margin-right: -9px; margin-right: -9px;
} }
div.mce-inline-toolbar-grp.mce-arrow-up:after { div.mce-inline-toolbar-grp.mce-arrow-up:after {
top: -16px; top: -8px;
border-bottom-color: #f5f5f5; border-bottom-color: #f5f5f5;
border-width: 8px; border-width: 0 8px 8px;
margin-right: -8px; margin-right: -8px;
} }
div.mce-inline-toolbar-grp.mce-arrow-down:after { div.mce-inline-toolbar-grp.mce-arrow-down:after {
bottom: -16px; bottom: -8px;
border-top-color: #f5f5f5; border-top-color: #f5f5f5;
border-width: 8px; border-width: 8px 8px 0;
margin-right: -8px; margin-right: -8px;
} }

File diff suppressed because one or more lines are too long

View File

@ -269,30 +269,30 @@ div.mce-inline-toolbar-grp:after {
} }
div.mce-inline-toolbar-grp.mce-arrow-up:before { div.mce-inline-toolbar-grp.mce-arrow-up:before {
top: -18px; top: -9px;
border-bottom-color: #a0a5aa; border-bottom-color: #a0a5aa;
border-width: 9px; border-width: 0 9px 9px;
margin-left: -9px; margin-left: -9px;
} }
div.mce-inline-toolbar-grp.mce-arrow-down:before { div.mce-inline-toolbar-grp.mce-arrow-down:before {
bottom: -18px; bottom: -9px;
border-top-color: #a0a5aa; border-top-color: #a0a5aa;
border-width: 9px; border-width: 9px 9px 0;
margin-left: -9px; margin-left: -9px;
} }
div.mce-inline-toolbar-grp.mce-arrow-up:after { div.mce-inline-toolbar-grp.mce-arrow-up:after {
top: -16px; top: -8px;
border-bottom-color: #f5f5f5; border-bottom-color: #f5f5f5;
border-width: 8px; border-width: 0 8px 8px;
margin-left: -8px; margin-left: -8px;
} }
div.mce-inline-toolbar-grp.mce-arrow-down:after { div.mce-inline-toolbar-grp.mce-arrow-down:after {
bottom: -16px; bottom: -8px;
border-top-color: #f5f5f5; border-top-color: #f5f5f5;
border-width: 8px; border-width: 8px 8px 0;
margin-left: -8px; margin-left: -8px;
} }

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.