Commit eb20d6f1 authored by Mark Otto's avatar Mark Otto

Fixes #11659, #12698, and #12349: Always apply position and z-index form...

Fixes #11659, #12698, and #12349: Always apply position and z-index form controls in input groups for proper borders
parent 24bf4398
...@@ -3304,6 +3304,8 @@ input[type="button"].btn-block { ...@@ -3304,6 +3304,8 @@ input[type="button"].btn-block {
padding-left: 0; padding-left: 0;
} }
.input-group .form-control { .input-group .form-control {
position: relative;
z-index: 2;
float: left; float: left;
width: 100%; width: 100%;
margin-bottom: 0; margin-bottom: 0;
......
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 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.
...@@ -17,6 +17,11 @@ ...@@ -17,6 +17,11 @@
} }
.form-control { .form-control {
// Ensure that the input is always above the *appended* addon button for
// proper border colors.
position: relative;
z-index: 2;
// IE9 fubars the placeholder attribute in text inputs and the arrows on // IE9 fubars the placeholder attribute in text inputs and the arrows on
// select elements in input groups. To fix it, we float the input. Details: // select elements in input groups. To fix it, we float the input. Details:
// https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855 // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855
......
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