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.


git-svn-id: https://develop.svn.wordpress.org/trunk@33416 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ella Iseulde Van Dorpe 2015-07-25 16:45:29 +00:00
parent 4f9d20fe5a
commit b8bc5ed95d
1 changed files with 8 additions and 8 deletions

View File

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