From ef8926c0766170ef1a4ee15b81dc6b11948899de Mon Sep 17 00:00:00 2001 From: Daryl Koopersmith Date: Fri, 20 Apr 2012 04:46:02 +0000 Subject: [PATCH] Theme Customizer: Firefox CSS love. props helenyhou, see #19910. git-svn-id: https://develop.svn.wordpress.org/trunk@20547 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/css/customize-controls.dev.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/wp-includes/css/customize-controls.dev.css b/wp-includes/css/customize-controls.dev.css index ec40685e19..01687ebfbc 100644 --- a/wp-includes/css/customize-controls.dev.css +++ b/wp-includes/css/customize-controls.dev.css @@ -46,7 +46,12 @@ body { } .control-section .customize-section-title:hover { - background: -webkit-linear-gradient( top, #f5f5f5, #eee ); + background-color: #efefef; + background-image: -webkit-linear-gradient( top, #f5f5f5, #eee ); + background-image: -moz-linear-gradient( top, #f5f5f5, #eee ); + background-image: -ms-linear-gradient( top, #f5f5f5, #eee ); + background-image: -o-linear-gradient( top, #f5f5f5, #eee ); + background-image: linear-gradient( top, #f5f5f5, #eee ); box-shadow: inset -11px 0 8px -8px rgba( 0, 0, 0, 0.1 ); } @@ -308,6 +313,7 @@ body { .customize-section .color-picker-hex input[type="text"] { width: 50px; + height: 22px; line-height: 16px; color: #777; background: transparent;