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

Set all signatures use gray background by default.

Previoulsy they were white on white, which was a horrible default.
parent a12c5747
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -44,7 +44,6 @@
  .signature {
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    font-size: 0.7em;
    @include border-radius(2px);
    margin-left: 5px;
+0 −2
Original line number Diff line number Diff line
@@ -55,8 +55,6 @@
      font-weight: bold;
      padding: 0 0.5em;
      @include border-radius(2px);
      color: white;
      background: #aaa;
      @include signature-colors; } } }

.hover-menu a {
+4 −2
Original line number Diff line number Diff line
@@ -146,10 +146,12 @@

// Shared colors for member signatures in toolbar menu and class api body
@mixin signature-colors {
  // the default colors
  color: white;
  background-color: #aaa;
  // specific colors
  &.deprecated {
    background-color: #aa0000; }
  &.protected, &.template, &.readonly, &.abstract {
    background-color: #aaa; }
  &.static {
    background-color: $docs-text-color; }
  &.required {