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:
parent
4f9d20fe5a
commit
b8bc5ed95d
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user