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

fixes #7977: prevent some table bullshit on input groups

parent 5156234c
Showing with 2 additions and 0 deletions
+2 -0
...@@ -1679,6 +1679,7 @@ input[type="color"].input-small { ...@@ -1679,6 +1679,7 @@ input[type="color"].input-small {
.input-group { .input-group {
display: table; display: table;
border-collapse: separate;
} }
.input-group.col { .input-group.col {
......
...@@ -291,6 +291,7 @@ input[type="color"] { ...@@ -291,6 +291,7 @@ input[type="color"] {
// ------------------------- // -------------------------
.input-group { .input-group {
display: table; display: table;
border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table
// Undo padding and float of grid classes // Undo padding and float of grid classes
&.col { &.col {
......
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