From ae79b4f91f9ccd8c0ef4c6ea6230ab297ae9c26a Mon Sep 17 00:00:00 2001
From: Konstantin Obenland <obenland@git.wordpress.org>
Date: Mon, 7 Mar 2016 19:14:05 +0000
Subject: [PATCH] Bundled Themes: Prevent elements within fieldsets from
 overflowing in Webkit.

Fixes #35421.


git-svn-id: https://develop.svn.wordpress.org/trunk@36875 602fd350-edb4-49c9-b593-d223f7449a82
---
 src/wp-content/themes/twentyfifteen/style.css  | 4 ++++
 src/wp-content/themes/twentyfourteen/style.css | 1 +
 src/wp-content/themes/twentythirteen/style.css | 1 +
 3 files changed, 6 insertions(+)

diff --git a/src/wp-content/themes/twentyfifteen/style.css b/src/wp-content/themes/twentyfifteen/style.css
index 141bec426b..a3187b5440 100644
--- a/src/wp-content/themes/twentyfifteen/style.css
+++ b/src/wp-content/themes/twentyfifteen/style.css
@@ -123,6 +123,10 @@ td {
 	text-align: left;
 }
 
+fieldset {
+	min-width: inherit;
+}
+
 blockquote:before,
 blockquote:after,
 q:before,
diff --git a/src/wp-content/themes/twentyfourteen/style.css b/src/wp-content/themes/twentyfourteen/style.css
index 29aec641fa..a6c03cacd1 100644
--- a/src/wp-content/themes/twentyfourteen/style.css
+++ b/src/wp-content/themes/twentyfourteen/style.css
@@ -347,6 +347,7 @@ figure {
 fieldset {
 	border: 1px solid rgba(0, 0, 0, 0.1);
 	margin: 0 0 24px;
+	min-width: inherit;
 	padding: 11px 12px 0;
 }
 
diff --git a/src/wp-content/themes/twentythirteen/style.css b/src/wp-content/themes/twentythirteen/style.css
index fe635a8e95..c5d536218a 100644
--- a/src/wp-content/themes/twentythirteen/style.css
+++ b/src/wp-content/themes/twentythirteen/style.css
@@ -349,6 +349,7 @@ form {
 fieldset {
 	border: 1px solid #c0c0c0;
 	margin: 0 2px;
+	min-width: inherit;
 	padding: 0.35em 0.625em 0.75em;
 }