diff options
| author | Mark Otto <[email protected]> | 2013-12-07 11:56:35 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-12-07 11:56:35 -0800 |
| commit | fe58357df182b52f5905f432a3b2629c717656f1 (patch) | |
| tree | 16cab0c0bb942a69c600098e753e5cf373c46374 /css.html | |
| parent | c07632e4e8398f55d796d00b520ca43df38dbf29 (diff) | |
| download | bootstrap-fe58357df182b52f5905f432a3b2629c717656f1.tar.xz bootstrap-fe58357df182b52f5905f432a3b2629c717656f1.zip | |
Fixes #10884: Adds .info variant to contextual table classes
Diffstat (limited to 'css.html')
| -rw-r--r-- | css.html | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -1327,6 +1327,12 @@ For example, <code><section></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><section></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><section></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><section></code> should be wrapped as inline. <td class="success">...</td> <td class="warning">...</td> <td class="danger">...</td> + <td class="info">...</td> </tr> {% endhighlight %} |
