Commit b4b2dcd8 authored by Raniere Silva's avatar Raniere Silva
Browse files

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.
parent 0a7d69c3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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"),
}