diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 889428d280..d6b4fc38da 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 fa9dd4b933..9874bcfbb4 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 ecf0100d37..e6970fbc7b 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 853b97e390..0f0c310e0b 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;
}