Make WordPress Core

Changeset 30812


Ignore:
Timestamp:
12/10/2014 11:53:01 PM (10 years ago)
Author:
azaozz
Message:

TinyMCE, image toolbar: remove the animation and make the box-shadow lighter. Props melchoyce, fixes #30664.

File:
1 edited

Legend:

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

    r30594 r30812  
    159159    -webkit-border-radius: 2px;
    160160    border-radius: 2px;
    161     -webkit-box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.2 );
    162     box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.2 );
     161    -webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );
     162    box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );
    163163    -webkit-box-sizing: border-box;
    164164    -moz-box-sizing: border-box;
    165     -webkit-box-sizing: border-box;
    166165    box-sizing: border-box;
    167166    margin-bottom: 8px;
    168167    position: absolute;
    169     opacity: 0;
    170168    -moz-user-select: none;
    171169    -webkit-user-select: none;
     
    182180    margin-bottom: 0;
    183181    margin-top: 8px;
    184 }
    185 
    186 div.mce-inline-toolbar-grp.mce-inline-toolbar-grp-active {
    187     -webkit-transition:
    188         top 0.1s ease-out,
    189         left 0.1s ease-out,
    190         opacity 0.1s ease-in-out;
    191     transition:
    192         top 0.1s ease-out,
    193         left 0.1s ease-out,
    194         opacity 0.1s ease-in-out;
    195     opacity: 1;
    196182}
    197183
Note: See TracChangeset for help on using the changeset viewer.