diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 889428d28..d6b4fc38d 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -2034,6 +2034,10 @@ table .span24 {
background-color: #f2dede;
}
+.table tbody tr.warning td {
+ background-color: #fcf8e3;
+}
+
.table tbody tr.info td {
background-color: #d9edf7;
}
diff --git a/docs/base-css.html b/docs/base-css.html
index fa9dd4b93..9874bcfbb 100644
--- a/docs/base-css.html
+++ b/docs/base-css.html
@@ -686,6 +686,12 @@ For example, <code><section></code> should be wrapped as inlin
Indicates a dangerous or potentially negative action. |
+
+
+ .warning
+ |
+ Indicates a warning that might need attention. |
+
.info
@@ -717,12 +723,18 @@ For example, <code><section></code> should be wrapped as inlin
| 02/04/2012 |
Declined |
-
+
| 3 |
TB - Monthly |
03/04/2012 |
Pending |
+
+ | 4 |
+ TB - Monthly |
+ 04/04/2012 |
+ Call in to confirm |
+
diff --git a/docs/templates/pages/base-css.mustache b/docs/templates/pages/base-css.mustache
index ecf0100d3..e6970fbc7 100644
--- a/docs/templates/pages/base-css.mustache
+++ b/docs/templates/pages/base-css.mustache
@@ -623,6 +623,12 @@
{{_i}}Indicates a dangerous or potentially negative action.{{/i}} |
+
+
+ .warning
+ |
+ {{_i}}Indicates a warning that might need attention.{{/i}} |
+
.info
@@ -654,12 +660,18 @@
| 02/04/2012 |
Declined |
-
+
| 3 |
TB - Monthly |
03/04/2012 |
Pending |
+
+ | 4 |
+ TB - Monthly |
+ 04/04/2012 |
+ Call in to confirm |
+
{{! /example }}
diff --git a/less/tables.less b/less/tables.less
index 853b97e39..0f0c310e0 100644
--- a/less/tables.less
+++ b/less/tables.less
@@ -219,6 +219,9 @@ table {
tbody tr.error td {
background-color: @errorBackground;
}
+ tbody tr.warning td {
+ background-color: @warningBackground;
+ }
tbody tr.info td {
background-color: @infoBackground;
}