Commit acf57073 authored by Mark Otto's avatar Mark Otto

Fixes #13066: Add z-index to the form control feedback icons so input groups...

Fixes #13066: Add z-index to the form control feedback icons so input groups don't render on top of them
parent b4f4c7b1
......@@ -3218,6 +3218,7 @@ select[multiple].input-lg {
position: absolute;
top: 25px;
left: 0;
z-index: 2;
display: block;
width: 34px;
height: 34px;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -2492,6 +2492,7 @@ select[multiple].input-lg {
position: absolute;
top: 25px;
right: 0;
z-index: 2;
display: block;
width: 34px;
height: 34px;
......
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.
......@@ -292,6 +292,7 @@ input[type="checkbox"],
position: absolute;
top: (@line-height-computed + 5); // Height of the `label` and its margin
right: 0;
z-index: 2; // Ensure icon is above input groups
display: block;
width: @input-height-base;
height: @input-height-base;
......
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