From b4b2dcd80a16d4aeaf5db9a40b02fc513e279415 Mon Sep 17 00:00:00 2001 From: Raniere Silva Date: Sat, 21 Mar 2015 05:38:59 -0300 Subject: [PATCH] Fix bug at panels From http://getbootstrap.com/components/#panels-alternatives the only panel that the font color is white is `panel-primary` and for that reason it is the only one that we can't use. This replace the use of `panel-primary` with `panel-warning` since prerequisites and learning objectives **never** appear in the same file. --- tools/filters/blockquote2div.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/filters/blockquote2div.py b/tools/filters/blockquote2div.py index 2d4f578..485b770 100755 --- a/tools/filters/blockquote2div.py +++ b/tools/filters/blockquote2div.py @@ -52,7 +52,7 @@ SPECIAL_CLASSES = { "callout": ("panel-info", "glyphicon-pushpin"), "challenge": ("panel-success", "glyphicon-pencil"), "prereq": ("panel-warning", "glyphicon-education"), - "objectives": ("panel-primary", "glyphicon-certificate"), + "objectives": ("panel-warning", "glyphicon-certificate"), } -- GitLab