neo-quitter icon indicating copy to clipboard operation
neo-quitter copied to clipboard

Saved searches and tags icons

Open rolfdeenen opened this issue 10 years ago • 2 comments

Besides lists, you can follow searches and tags, thereby adding them to your sidebar. Unlike lists at the moment these aren't accompanied with an icon. It would be nice to have saved "searches" and "tags" accompanied by a fitting icon, like "lists". I therefore added, around line 2000:

nav_searchsubs a:before {

    content: "\f002";
font-family:'fa';
font-size:14px;
margin-left:-18px;
}

nav_tagsubs a:before {

    content: "\f02b";
font-family:'fa';
font-size:14px;
margin-left:-18px;
}

Also I added:

nav_searchsubs a:before,

nav_tagsubs a:before,

to this block (around,line 1940), to give the icons the right color, like this:

nav_recent-tags a:before,

nav_timeline_favorited a:before,

nav_directory a:before,

nav_searchsubs a:before,

nav_tagsubs a:before,

nav_lists a:before {

    content: "\f409"; etc...

rolfdeenen avatar Dec 27 '14 20:12 rolfdeenen

thx for this, i didn't know tags and searches subscriptions turned up in the menu :)

hannesmannerheim avatar Dec 29 '14 13:12 hannesmannerheim

Was new for me too. This is what ik looks like after alteration: screenshot from 2014-12-29 17 51 59

rolfdeenen avatar Dec 29 '14 17:12 rolfdeenen