neo-quitter
neo-quitter copied to clipboard
Favorites icon not shown
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...
maybe your running a newer version of gnusocial or something
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
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... */
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.