Make WordPress Core

Changeset 33416


Ignore:
Timestamp:
07/25/2015 04:45:29 PM (8 years ago)
Author:
iseulde
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/css/editor.css

    r33372 r33416  
    270270
    271271div.mce-inline-toolbar-grp.mce-arrow-up:before {
    272     top: -18px;
     272    top: -9px;
    273273    border-bottom-color: #a0a5aa;
    274     border-width: 9px;
     274    border-width: 0 9px 9px;
    275275    margin-left: -9px;
    276276}
    277277
    278278div.mce-inline-toolbar-grp.mce-arrow-down:before {
    279     bottom: -18px;
     279    bottom: -9px;
    280280    border-top-color: #a0a5aa;
    281     border-width: 9px;
     281    border-width: 9px 9px 0;
    282282    margin-left: -9px;
    283283}
    284284
    285285div.mce-inline-toolbar-grp.mce-arrow-up:after {
    286     top: -16px;
     286    top: -8px;
    287287    border-bottom-color: #f5f5f5;
    288     border-width: 8px;
     288    border-width: 0 8px 8px;
    289289    margin-left: -8px;
    290290}
    291291
    292292div.mce-inline-toolbar-grp.mce-arrow-down:after {
    293     bottom: -16px;
     293    bottom: -8px;
    294294    border-top-color: #f5f5f5;
    295     border-width: 8px;
     295    border-width: 8px 8px 0;
    296296    margin-left: -8px;
    297297}
Note: See TracChangeset for help on using the changeset viewer.