]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
clarify
authorMark Otto <otto@github.com>
Fri, 23 May 2014 04:39:47 +0000 (21:39 -0700)
committerMark Otto <otto@github.com>
Fri, 23 May 2014 04:39:47 +0000 (21:39 -0700)
docs/_includes/css/tables.html

index d9a1cd2cfa0db359a12046f880b9fd104fe44c6e..6555451128e031a0a9bbf5f1d21776e00c3576b5 100644 (file)
 
   <div class="bs-callout bs-callout-warning">
     <h4>Firefox and fieldsets</h4>
-    <p>Firefox has some awkward fieldset styling involving <code>width</code> that interferes with the responsive table. This cannot be overriden without a Firefox-specific hack:</p>
+    <p>Firefox has some awkward fieldset styling involving <code>width</code> that interferes with the responsive table. This cannot be overriden without a Firefox-specific hack that we <strong>don't</strong> provide in Bootstrap:</p>
 {% highlight css %}
 @-moz-document url-prefix() {
-  fieldset {
-    display: table-cell;
-  }
+  fieldset { display: table-cell; }
 }
 {% endhighlight %}
     <p>For more information, read <a href="http://stackoverflow.com/questions/17408815/fieldset-resizes-wrong-appears-to-have-unremovable-min-width-min-content/17863685#17863685">this Stack Overflow answer</a>.</p>