From 361889def92af209c8d3315c4d1152fb9fc4bc36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Cederstro=CC=88m?= Date: Wed, 22 Aug 2012 11:20:31 +0200 Subject: Add .warning to table rows --- less/tables.less | 3 +++ 1 file changed, 3 insertions(+) (limited to 'less') 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; } -- cgit v1.2.3 From a9764c34a7ece4213d50a8e0714ebd001daac529 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Cederstro=CC=88m?= Date: Wed, 22 Aug 2012 11:24:02 +0200 Subject: Add info state to form validation --- less/forms.less | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'less') diff --git a/less/forms.less b/less/forms.less index c766f5d9c..2bac86206 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 -- cgit v1.2.3