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

Also distinguish static members with small label.

Might be better to have a separate section for static methods, but
for now it's better than nothing at all.
parent 04add0f8
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -223,6 +223,9 @@ Ext.define('Docs.view.cls.Overview', {
        if (member.protected) {
            signature += "<strong class='protected-signature'>protected</strong>";
        }
        if (member.static) {
            signature += "<strong class='static-signature'>static</strong>";
        }
        if (member.deprecated) {
            signature += "<strong class='deprecated-signature'>deprecated</strong>";
        }
+3 −1
Original line number Diff line number Diff line
@@ -471,7 +471,7 @@ a:hover {


#doc-overview {
  .deprecated-signature, .protected-signature {
  .deprecated-signature, .protected-signature, .static-signature {
    font-weight: bold;
    text-transform: uppercase;
    color: white;
@@ -483,6 +483,8 @@ a:hover {
    background-color: #aa0000; }
  .protected-signature {
    background-color: #aaa; }
  .static-signature {
    background-color: #484848; }
  .new {
    font-weight: bold;
    color: white;