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
This commit is contained in:
Konstantin Obenland 2016-03-07 19:14:05 +00:00
parent 3a51ff4d2e
commit ae79b4f91f
3 changed files with 6 additions and 0 deletions

View File

@ -123,6 +123,10 @@ td {
text-align: left; text-align: left;
} }
fieldset {
min-width: inherit;
}
blockquote:before, blockquote:before,
blockquote:after, blockquote:after,
q:before, q:before,

View File

@ -347,6 +347,7 @@ figure {
fieldset { fieldset {
border: 1px solid rgba(0, 0, 0, 0.1); border: 1px solid rgba(0, 0, 0, 0.1);
margin: 0 0 24px; margin: 0 0 24px;
min-width: inherit;
padding: 11px 12px 0; padding: 11px 12px 0;
} }

View File

@ -349,6 +349,7 @@ form {
fieldset { fieldset {
border: 1px solid #c0c0c0; border: 1px solid #c0c0c0;
margin: 0 2px; margin: 0 2px;
min-width: inherit;
padding: 0.35em 0.625em 0.75em; padding: 0.35em 0.625em 0.75em;
} }