From fce0254b2a90e99804e6433d01ca45a5378285ac Mon Sep 17 00:00:00 2001 From: Billy Matthews Date: Sat, 5 Apr 2014 18:33:57 -0400 Subject: Fixed typo in Responsive Tables CSS docs --- docs/_includes/css/tables.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/_includes/css/tables.html') diff --git a/docs/_includes/css/tables.html b/docs/_includes/css/tables.html index 99db2af72..affe17ffa 100644 --- a/docs/_includes/css/tables.html +++ b/docs/_includes/css/tables.html @@ -348,7 +348,7 @@

Responsive tables

-

Create responsive tables by wrapping any .table in .table-responsive to make them scroll horizontally up to small devices (under 768px). When viewing on anything larger than 768px wide, you will not see any difference in these tables.

+

Create responsive tables by wrapping any .table in .table-responsive to make them scroll horizontally on small devices (under 768px). When viewing on anything larger than 768px wide, you will not see any difference in these tables.

-- cgit v1.2.3 From abbf6da6aaa37e337a527217982838bfff1d8027 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 22 May 2014 21:12:13 -0700 Subject: tighten up callouts and remove backgrounds --- docs/_includes/css/tables.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'docs/_includes/css/tables.html') diff --git a/docs/_includes/css/tables.html b/docs/_includes/css/tables.html index affe17ffa..d9a1cd2cf 100644 --- a/docs/_includes/css/tables.html +++ b/docs/_includes/css/tables.html @@ -349,6 +349,20 @@

Responsive tables

Create responsive tables by wrapping any .table in .table-responsive to make them scroll horizontally on small devices (under 768px). When viewing on anything larger than 768px wide, you will not see any difference in these tables.

+ +
+

Firefox and fieldsets

+

Firefox has some awkward fieldset styling involving width that interferes with the responsive table. This cannot be overriden without a Firefox-specific hack:

+{% highlight css %} +@-moz-document url-prefix() { + fieldset { + display: table-cell; + } +} +{% endhighlight %} +

For more information, read this Stack Overflow answer.

+
+
-- cgit v1.2.3 From 338cff13593a5e10abcab37da9f197fa4eafa3de Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 22 May 2014 21:39:47 -0700 Subject: clarify --- docs/_includes/css/tables.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'docs/_includes/css/tables.html') diff --git a/docs/_includes/css/tables.html b/docs/_includes/css/tables.html index d9a1cd2cf..655545112 100644 --- a/docs/_includes/css/tables.html +++ b/docs/_includes/css/tables.html @@ -352,12 +352,10 @@

Firefox and fieldsets

-

Firefox has some awkward fieldset styling involving width that interferes with the responsive table. This cannot be overriden without a Firefox-specific hack:

+

Firefox has some awkward fieldset styling involving width that interferes with the responsive table. This cannot be overriden without a Firefox-specific hack that we don't provide in Bootstrap:

{% highlight css %} @-moz-document url-prefix() { - fieldset { - display: table-cell; - } + fieldset { display: table-cell; } } {% endhighlight %}

For more information, read this Stack Overflow answer.

-- cgit v1.2.3