gitgift / minimalist

Automatically exported from code.google.com/p/minimalist
0 stars 0 forks source link

Hide Spam count #59

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I noticed that these two features, present in minimalist for gmail, are missing 
in minimalist for everything. 

I added a section with these feature. Here the source code:
div.TO a[href$='#spam'] 
{ 
    visibility: hidden; 
}
div.TO a[href$='#spam']:before 
{ 
    content: 'Spam'; 
    visibility: visible; 
    font-weight: 400; 
}

and

div.TO a[href$='#drafts'] 
{ 
    visibility: hidden; 
}
div.TO a[href$='#drafts']:before 
{ 
    content: 'Draft'; 
    visibility: visible; 
    font-weight: 400; 
}

Original issue reported on code.google.com by Fernando...@gmail.com on 21 Nov 2011 at 4:02

GoogleCodeExporter commented 8 years ago
Added hide Spam count in 0.5.7.

There is a "Hide Unread Counts" Gmail lab if you would like to hide the other 
counters

Original comment by anst...@gmail.com on 21 Nov 2011 at 5:53