Commit baeb7b1c authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Fix hierarchy bubble styles.

The hierarchy <pre> element happened to get the .notpretty class
added which resulted in different margins etc.  Now avoiding that.

Also fixed the color of normal text inside it.
parent 6c2f286a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ Ext.define("Docs.Syntax", {
                    pre.addCls("prettyprint");
                }
            }
            else if (!pre.parent(".CodeMirror")) {
            else if (!pre.parent(".CodeMirror") && !pre.hasCls("hierarchy")) {
                // For normal pre-s add "notpretty" class so they can be
                // distinguished in CSS from any other <pre> element
                // that might appear on page.
+1 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@
    float: right;
    clear: right;
    margin: 0 0 10px 60px;
    color: $docs-text-color;
    font-size: 12px; }
  .hierarchy {
    h4 {