mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-29 21:52:22 +01:00
Add .warning to table rows
This commit is contained in:
parent
5d41742f17
commit
361889def9
4
docs/assets/css/bootstrap.css
vendored
4
docs/assets/css/bootstrap.css
vendored
@ -2034,6 +2034,10 @@ table .span24 {
|
|||||||
background-color: #f2dede;
|
background-color: #f2dede;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.table tbody tr.warning td {
|
||||||
|
background-color: #fcf8e3;
|
||||||
|
}
|
||||||
|
|
||||||
.table tbody tr.info td {
|
.table tbody tr.info td {
|
||||||
background-color: #d9edf7;
|
background-color: #d9edf7;
|
||||||
}
|
}
|
||||||
|
@ -686,6 +686,12 @@ For example, <code><section></code> should be wrapped as inlin
|
|||||||
</td>
|
</td>
|
||||||
<td>Indicates a dangerous or potentially negative action.</td>
|
<td>Indicates a dangerous or potentially negative action.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<code>.warning</code>
|
||||||
|
</td>
|
||||||
|
<td>Indicates a warning that might need attention.</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<code>.info</code>
|
<code>.info</code>
|
||||||
@ -717,12 +723,18 @@ For example, <code><section></code> should be wrapped as inlin
|
|||||||
<td>02/04/2012</td>
|
<td>02/04/2012</td>
|
||||||
<td>Declined</td>
|
<td>Declined</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="info">
|
<tr class="warning">
|
||||||
<td>3</td>
|
<td>3</td>
|
||||||
<td>TB - Monthly</td>
|
<td>TB - Monthly</td>
|
||||||
<td>03/04/2012</td>
|
<td>03/04/2012</td>
|
||||||
<td>Pending</td>
|
<td>Pending</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr class="info">
|
||||||
|
<td>4</td>
|
||||||
|
<td>TB - Monthly</td>
|
||||||
|
<td>04/04/2012</td>
|
||||||
|
<td>Call in to confirm</td>
|
||||||
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
14
docs/templates/pages/base-css.mustache
vendored
14
docs/templates/pages/base-css.mustache
vendored
@ -623,6 +623,12 @@
|
|||||||
</td>
|
</td>
|
||||||
<td>{{_i}}Indicates a dangerous or potentially negative action.{{/i}}</td>
|
<td>{{_i}}Indicates a dangerous or potentially negative action.{{/i}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<code>.warning</code>
|
||||||
|
</td>
|
||||||
|
<td>{{_i}}Indicates a warning that might need attention.{{/i}}</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<code>.info</code>
|
<code>.info</code>
|
||||||
@ -654,12 +660,18 @@
|
|||||||
<td>02/04/2012</td>
|
<td>02/04/2012</td>
|
||||||
<td>Declined</td>
|
<td>Declined</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="info">
|
<tr class="warning">
|
||||||
<td>3</td>
|
<td>3</td>
|
||||||
<td>TB - Monthly</td>
|
<td>TB - Monthly</td>
|
||||||
<td>03/04/2012</td>
|
<td>03/04/2012</td>
|
||||||
<td>Pending</td>
|
<td>Pending</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr class="info">
|
||||||
|
<td>4</td>
|
||||||
|
<td>TB - Monthly</td>
|
||||||
|
<td>04/04/2012</td>
|
||||||
|
<td>Call in to confirm</td>
|
||||||
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>{{! /example }}
|
</div>{{! /example }}
|
||||||
|
@ -219,6 +219,9 @@ table {
|
|||||||
tbody tr.error td {
|
tbody tr.error td {
|
||||||
background-color: @errorBackground;
|
background-color: @errorBackground;
|
||||||
}
|
}
|
||||||
|
tbody tr.warning td {
|
||||||
|
background-color: @warningBackground;
|
||||||
|
}
|
||||||
tbody tr.info td {
|
tbody tr.info td {
|
||||||
background-color: @infoBackground;
|
background-color: @infoBackground;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user