Commit 2f955907 authored by Mark Otto's avatar Mark Otto

Fixes #12669: Properly reset line-height on date inputs for all sizes; Fix...

Fixes #12669: Properly reset line-height on date inputs for all sizes; Fix IE8+'s misaslignment of text within date inputs
parent 37b342b1
......@@ -3080,6 +3080,15 @@ input[type="search"] {
input[type="date"] {
line-height: 34px;
line-height: 1.42857143 \0;
}
input[type="date"].input-sm {
line-height: 30px;
}
input[type="date"].input-lg {
line-height: 46px;
}
.form-group {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -2373,6 +2373,13 @@ input[type="search"] {
}
input[type="date"] {
line-height: 34px;
line-height: 1.42857143 \0;
}
input[type="date"].input-sm {
line-height: 30px;
}
input[type="date"].input-lg {
line-height: 46px;
}
.form-group {
margin-bottom: 15px;
......
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.
......@@ -167,10 +167,20 @@ input[type="search"] {
// Special styles for iOS date input
//
// In Mobile Safari, date inputs require a pixel line-height that matches the
// given height of the input.
// given height of the input. Since this fucks up everything else, we have to
// appropriately reset it for Internet Explorer and the size variations.
input[type="date"] {
line-height: @input-height-base;
// IE8+ misaligns the text within date inputs, so we reset
line-height: @line-height-base ~"\0";
&.input-sm {
line-height: @input-height-small;
}
&.input-lg {
line-height: @input-height-large;
}
}
......
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