Make WordPress Core

Changeset 27814


Ignore:
Timestamp:
03/28/2014 01:32:53 PM (11 years ago)
Author:
ocean90
Message:

Widget Customizer: Set hightlight color to blue. Same color as in [27741].

fixes #27358.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/customize-widgets.css

    r27798 r27814  
    105105.customize-control-widget_form.widget-customizer-highlighted {
    106106    outline: none;
    107     -webkit-box-shadow: 0 0 3px #ce0000;
    108     box-shadow: 0 0 3px #ce0000;
     107    -webkit-box-shadow: 0 0 2px rgba(30,140,190,0.8);
     108    box-shadow: 0 0 2px rgba(30,140,190,0.8);
    109109    position: relative;
    110110    z-index: 1;
  • trunk/src/wp-includes/class-wp-customize-widgets.php

    r27753 r27814  
    876876        .widget-customizer-highlighted-widget {
    877877            outline: none;
    878             -webkit-box-shadow: 0 0 3px #ce0000;
    879             box-shadow: 0 0 3px #ce0000;
     878            -webkit-box-shadow: 0 0 2px rgba(30,140,190,0.8);
     879            box-shadow: 0 0 2px rgba(30,140,190,0.8);
    880880            position: relative;
    881881            z-index: 1;
Note: See TracChangeset for help on using the changeset viewer.