From bab51d27ace206c9c691ab7a43657774cbd2b852 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 18 Aug 2013 19:40:57 -0700 Subject: Refactor panels to have a base class for improved flexibility when customizing (and no overriding to start, too) --- less/theme.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/theme.less') diff --git a/less/theme.less b/less/theme.less index d2f98f2fb..ee26ea4c6 100644 --- a/less/theme.less +++ b/less/theme.less @@ -211,7 +211,7 @@ } // Apply the mixin to the panel headings only -.panel-heading { .panel-heading-styles(@panel-heading-bg); } +.panel-default > .panel-heading { .panel-heading-styles(@panel-default-heading-bg); } .panel-primary > .panel-heading { .panel-heading-styles(@panel-primary-heading-bg); } .panel-success > .panel-heading { .panel-heading-styles(@panel-success-heading-bg); } .panel-info > .panel-heading { .panel-heading-styles(@panel-info-heading-bg); } -- cgit v1.2.3 From e6ff75bcea01a75306e7a747103b0647bec909af Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 18 Aug 2013 19:57:25 -0700 Subject: Update var in theme --- less/theme.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/theme.less') diff --git a/less/theme.less b/less/theme.less index d2f98f2fb..380be4076 100644 --- a/less/theme.less +++ b/less/theme.less @@ -148,9 +148,9 @@ } // Apply the mixin to the alerts -.alert { .alert-styles(@alert-bg); } .alert-success { .alert-styles(@alert-success-bg); } .alert-info { .alert-styles(@alert-info-bg); } +.alert-warning { .alert-styles(@alert-warning-bg); } .alert-danger { .alert-styles(@alert-danger-bg); } -- cgit v1.2.3