Commit 0c4bb6f4 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Fix styling of singleton and enum class headers.

parent 9b854956
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -24,10 +24,10 @@ Ext.define('Docs.view.cls.Header', {
                    '<strong class="class-source-link">{name}</strong>',
                '</tpl>',
                '<tpl if="singleton">',
                    '<span>singleton</span>',
                    '<span class="singleton">singleton</span>',
                '</tpl>',
                '<tpl if="values[\'enum\']">',
                    '<span>enum of <b>{[values["enum"].type]}</b></span>',
                    '<span class="enum">enum of <b>{[values["enum"].type]}</b></span>',
                '</tpl>',
                '{[this.renderAliases(values.aliases)]}',
                '{[this.renderMetaTags(values.meta)]}',
+2 −2
Original line number Diff line number Diff line
@@ -27,8 +27,8 @@
    &.singleton .class-source-link {
      background: url(../images/singleton-m.png) no-repeat 0 -5px; }

    // gray style for xtypes listing
    .xtype {
    // gray style for xtypes, enum and singleton summary
    .xtype, .enum, .singleton {
      color: #929292;
      letter-spacing: 0;
      margin-left: 10px;