Commit 853b69f2 authored by Mark Otto's avatar Mark Otto
Browse files

Fixes #11351: Correct grid class reset on input groups by using attribute...

Fixes #11351: Correct grid class reset on input groups by using attribute selector, not an old class from v3 betas
parent a52e528d
Showing with 3 additions and 3 deletions
+3 -3
...@@ -3860,7 +3860,7 @@ input[type="button"].btn-block { ...@@ -3860,7 +3860,7 @@ input[type="button"].btn-block {
border-collapse: separate; border-collapse: separate;
} }
.input-group.col { .input-group[class*="col-"] {
float: none; float: none;
padding-right: 0; padding-right: 0;
padding-left: 0; padding-left: 0;
......
This diff is collapsed.
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a 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 { &[class*="col-"] {
float: none; float: none;
padding-left: 0; padding-left: 0;
padding-right: 0; padding-right: 0;
......
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