From d9a662ed1dbe3dbfe30980d45c831e3b454bff86 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 27 Jun 2013 20:15:44 -0700 Subject: [PATCH] fixes #7977: prevent some table bullshit on input groups --- docs/assets/css/bootstrap.css | 1 + less/forms.less | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index c362c1f094..dc62bef97f 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1679,6 +1679,7 @@ input[type="color"].input-small { .input-group { display: table; + border-collapse: separate; } .input-group.col { diff --git a/less/forms.less b/less/forms.less index a96849d5f5..ea340007c9 100644 --- a/less/forms.less +++ b/less/forms.less @@ -291,6 +291,7 @@ input[type="color"] { // ------------------------- .input-group { 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 &.col { -- 2.47.2