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

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

parent 5c2a9fc9
Showing with 8 additions and 5 deletions
+8 -5
......@@ -2976,6 +2976,7 @@ legend {
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
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 {
}
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: bold;
}
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
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.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -31,6 +31,7 @@ legend {
label {
display: inline-block;
max-width: 100%; // Force IE8 to wrap long content (see #13141)
margin-bottom: 5px;
font-weight: bold;
}
......
Supports Markdown
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