From aea136ec0648d4108ab73af99dd64379eedfeee1 Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Wed, 4 Jun 2014 17:34:14 +0000 Subject: [PATCH] Twenty Fourteen: apply `.widget` input and textarea styles only if they are inside `.widget-area`. Props jesin, fixes #27677. Built from https://develop.svn.wordpress.org/trunk@28663 git-svn-id: http://core.svn.wordpress.org/trunk@28481 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyfourteen/style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-content/themes/twentyfourteen/style.css b/wp-content/themes/twentyfourteen/style.css index 213bfa8bbe..13fa7d0591 100644 --- a/wp-content/themes/twentyfourteen/style.css +++ b/wp-content/themes/twentyfourteen/style.css @@ -2248,8 +2248,8 @@ a.post-thumbnail:hover { margin-bottom: 18px; } -.widget input, -.widget textarea { +.widget-area .widget input, +.widget-area .widget textarea { background-color: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); color: #fff; @@ -2257,8 +2257,8 @@ a.post-thumbnail:hover { padding: 1px 2px 2px 4px; } -.widget input:focus, -.widget textarea:focus { +.widget-area .widget input:focus, +.widget-area .widget textarea:focus { border-color: rgba(255, 255, 255, 0.3); }