Commit acf57073 authored by Mark Otto's avatar Mark Otto
Browse files

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
Showing with 7 additions and 4 deletions
+7 -4
...@@ -3218,6 +3218,7 @@ select[multiple].input-lg { ...@@ -3218,6 +3218,7 @@ select[multiple].input-lg {
position: absolute; position: absolute;
top: 25px; top: 25px;
left: 0; left: 0;
z-index: 2;
display: block; display: block;
width: 34px; width: 34px;
height: 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 { ...@@ -2492,6 +2492,7 @@ select[multiple].input-lg {
position: absolute; position: absolute;
top: 25px; top: 25px;
right: 0; right: 0;
z-index: 2;
display: block; display: block;
width: 34px; width: 34px;
height: 34px; height: 34px;
......
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.
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.
...@@ -292,6 +292,7 @@ input[type="checkbox"], ...@@ -292,6 +292,7 @@ input[type="checkbox"],
position: absolute; position: absolute;
top: (@line-height-computed + 5); // Height of the `label` and its margin top: (@line-height-computed + 5); // Height of the `label` and its margin
right: 0; right: 0;
z-index: 2; // Ensure icon is above input groups
display: block; display: block;
width: @input-height-base; width: @input-height-base;
height: @input-height-base; height: @input-height-base;
......
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