Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,6 @@
.signature {
font-weight: bold;
text-transform: uppercase;
color: white;
font-size: 0.7em;
@include border-radius(2px);
margin-left: 5px;
......
......@@ -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 {
......
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment