Make WordPress Core


Ignore:
Timestamp:
03/25/2014 11:47:27 AM (11 years ago)
Author:
ocean90
Message:

Widget Customizer: Improve widget highlighting.

  • Prefix box-shadow in inject_preview_css()
  • Remove border-radius in inject_preview_css()
  • Prevent hidden box-shadows in Customizer

see #27358.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-customize-widgets.php

    r27653 r27702  
    735735        <style>
    736736        .widget-customizer-highlighted-widget {
    737             border-radius: 2px;
    738737            outline: none;
     738            -webkit-box-shadow: 0 0 3px #ce0000;
    739739            box-shadow: 0 0 3px #ce0000;
     740            position: relative;
     741            z-index: 1;
    740742        }
    741743        </style>
Note: See TracChangeset for help on using the changeset viewer.