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

Favorites icon not shown

Open rolfdeenen opened this issue 10 years ago • 4 comments

I noticed today, by comparing the " Classic quitter" layout of quitter.se with the neo-quitter theme on my home-instalation, that the favorites icon isn't shown and that the messages icon has slid upwards. I've attached a screenhshot. This is what it looks like out of the box... favorites

rolfdeenen avatar Dec 23 '14 16:12 rolfdeenen

maybe your running a newer version of gnusocial or something

hannesmannerheim avatar Dec 23 '14 17:12 hannesmannerheim

Not really sure how to check the version number. I downloaded a few hours ago from https://gitorious.org/social/mainline/archive/master.zip . This seems to me to be some snapshot from the repository

rolfdeenen avatar Dec 23 '14 23:12 rolfdeenen

I believe the "favorites" icon has been added, comming before the "messages" icon. The CSS tells the fourth icon in the row to carry the messages icon. This seems to cause the problem. I've been able to solve as follows:

1.) replace the "(4)" with "(5)" around line 1974 to make the messages match the fifth occurance: #nav_local_default li:first-child ul.nav li:nth-child(5) a:before {

2.) Add the folowing block to add an icon for the favorites. "\f005" referres to the star icon in the awesome font set: #nav_local_default li:first-child ul.nav li:nth-child(4) a:before { content: "\f005"; font-family:'fa'; font-size:12px; margin-left:-18px; }

3.) Duplicate this line (around line 1937?) to make the the icon have right grey color: duplicate line: #nav_local_default li:first-child ul.nav li:nth-child(4) a:before, /* messages... / to: #nav_local_default li:first-child ul.nav li:nth-child(5) a:before, / messages... */

rolfdeenen avatar Dec 27 '14 20:12 rolfdeenen

i'll fix it when we upgrade quitter.se to latest gnu social version. i want this repository to be compatible with the gnu social version we're running.

hannesmannerheim avatar Dec 29 '14 13:12 hannesmannerheim