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

fixes #27358.

git-svn-id: https://develop.svn.wordpress.org/trunk@27814 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90) 2014-03-28 13:32:53 +00:00
parent e94f08380e
commit cc102fe0ff
2 changed files with 4 additions and 4 deletions

View File

@ -104,8 +104,8 @@
.control-section.accordion-section.widget-customizer-highlighted > .accordion-section-title,
.customize-control-widget_form.widget-customizer-highlighted {
outline: none;
-webkit-box-shadow: 0 0 3px #ce0000;
box-shadow: 0 0 3px #ce0000;
-webkit-box-shadow: 0 0 2px rgba(30,140,190,0.8);
box-shadow: 0 0 2px rgba(30,140,190,0.8);
position: relative;
z-index: 1;
}

View File

@ -875,8 +875,8 @@ class WP_Customize_Widgets {
<style>
.widget-customizer-highlighted-widget {
outline: none;
-webkit-box-shadow: 0 0 3px #ce0000;
box-shadow: 0 0 3px #ce0000;
-webkit-box-shadow: 0 0 2px rgba(30,140,190,0.8);
box-shadow: 0 0 2px rgba(30,140,190,0.8);
position: relative;
z-index: 1;
}