Commit 6f6bce59 authored by Mark Otto's avatar Mark Otto

Fixes #13141: Add a max-width: 100%; to label elements so IE8 wraps text

parent 5c2a9fc9
...@@ -2976,6 +2976,7 @@ legend { ...@@ -2976,6 +2976,7 @@ legend {
label { label {
display: inline-block; display: inline-block;
max-width: 100%;
margin-bottom: 5px; margin-bottom: 5px;
font-weight: bold; font-weight: bold;
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -2285,6 +2285,7 @@ legend { ...@@ -2285,6 +2285,7 @@ legend {
} }
label { label {
display: inline-block; display: inline-block;
max-width: 100%;
margin-bottom: 5px; margin-bottom: 5px;
font-weight: bold; font-weight: bold;
} }
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -31,6 +31,7 @@ legend { ...@@ -31,6 +31,7 @@ legend {
label { label {
display: inline-block; display: inline-block;
max-width: 100%; // Force IE8 to wrap long content (see #13141)
margin-bottom: 5px; margin-bottom: 5px;
font-weight: bold; font-weight: bold;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment