From 37acbb983d02518e5d90857a2f2b42bf9c00a4a0 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Fri, 13 Jun 2014 11:37:40 -0700 Subject: [PATCH] min-content is standard, so no need to vendor prefix it Also, makes little sense to say that Firefox sets a `-webkit`-prefixed value --- less/forms.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/less/forms.less b/less/forms.less index 92139d8a14..2f629b0a1d 100644 --- a/less/forms.less +++ b/less/forms.less @@ -11,7 +11,7 @@ fieldset { padding: 0; margin: 0; border: 0; - // Chrome and Firefox set a `min-width: -webkit-min-content;` on fieldsets, + // Chrome and Firefox set a `min-width: min-content;` on fieldsets, // so we reset that to ensure it behaves more like a standard block element. // See https://github.com/twbs/bootstrap/issues/12359. min-width: 0;