aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
Diffstat (limited to 'less')
-rw-r--r--less/forms.less4
-rw-r--r--less/tables.less3
2 files changed, 7 insertions, 0 deletions
diff --git a/less/forms.less b/less/forms.less
index 36f37496b..5a8463344 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -349,6 +349,10 @@ input[type="checkbox"][readonly] {
.control-group.success {
.formFieldState(@successText, @successText, @successBackground);
}
+// Success
+.control-group.info {
+ .formFieldState(@infoText, @infoText, @infoBackground);
+}
// HTML5 invalid states
// Shares styles with the .control-group.error above
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;
}