aboutsummaryrefslogtreecommitdiff
path: root/css.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-12-07 11:56:35 -0800
committerMark Otto <[email protected]>2013-12-07 11:56:35 -0800
commitfe58357df182b52f5905f432a3b2629c717656f1 (patch)
tree16cab0c0bb942a69c600098e753e5cf373c46374 /css.html
parentc07632e4e8398f55d796d00b520ca43df38dbf29 (diff)
downloadbootstrap-fe58357df182b52f5905f432a3b2629c717656f1.tar.xz
bootstrap-fe58357df182b52f5905f432a3b2629c717656f1.zip
Fixes #10884: Adds .info variant to contextual table classes
Diffstat (limited to 'css.html')
-rw-r--r--css.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/css.html b/css.html
index ee9d3ec71..c120e3be3 100644
--- a/css.html
+++ b/css.html
@@ -1327,6 +1327,12 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
</td>
<td>Indicates a dangerous or potentially negative action</td>
</tr>
+ <tr>
+ <td>
+ <code>.info</code>
+ </td>
+ <td>Indicates a neutral informative change or action</td>
+ </tr>
</tbody>
</table>
</div>
@@ -1383,6 +1389,18 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<td>Column content</td>
<td>Column content</td>
</tr>
+ <tr>
+ <td>8</td>
+ <td>Column content</td>
+ <td>Column content</td>
+ <td>Column content</td>
+ </tr>
+ <tr class="info">
+ <td>9</td>
+ <td>Column content</td>
+ <td>Column content</td>
+ <td>Column content</td>
+ </tr>
</tbody>
</table>
</div><!-- /example -->
@@ -1392,6 +1410,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<tr class="success">...</tr>
<tr class="warning">...</tr>
<tr class="danger">...</tr>
+<tr class="info">...</tr>
<!-- On cells (`td` or `th`) -->
<tr>
@@ -1399,6 +1418,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<td class="success">...</td>
<td class="warning">...</td>
<td class="danger">...</td>
+ <td class="info">...</td>
</tr>
{% endhighlight %}