Make WordPress Core

Changeset 27771


Ignore:
Timestamp:
03/27/2014 02:35:43 AM (11 years ago)
Author:
helen
Message:

Match TinyMCE modal form element focus styling to the admin. props paulwilde. see #27173.

File:
1 edited

Legend:

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

    r27765 r27771  
    7878}
    7979
    80 .mce-textbox {
     80.mce-textbox,
     81.mce-checkbox i.mce-i-checkbox {
    8182    border: 1px solid #ddd;
    8283    -webkit-border-radius: 0;
     
    8485    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
    8586    box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
    86     -webkit-transition: none;
    87     transition: none;
     87    -webkit-transition: .05s border-color ease-in-out;
     88    transition: .05s border-color ease-in-out;
    8889}
    8990
    9091.mce-textbox:focus,
    91 .mce-textbox.mce-focus {
    92     border-color: #999;
    93     -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    94     box-shadow: 0 1px 2px rgba(0,0,0,0.1);
     92.mce-textbox.mce-focus,
     93.mce-checkbox:focus i.mce-i-checkbox {
     94    border-color: #5b9dd9;
     95    -webkit-box-shadow: 0 0 2px rgba(30,140,190,0.8);
     96    box-shadow: 0 0 2px rgba(30,140,190,0.8);
    9597}
    9698
Note: See TracChangeset for help on using the changeset viewer.