erbello: I think threads about leaving of some game should be marked by dot icon in other color (maybe black or gray?). The green one is easy to omit.
mike_cesara: I have no clue how many times I asked about marking The G-Team posts to make them more visible..
At the bottom of the forum page we have four different spots, there is even special
reddish one for
announcements.
Any chance to make it work Linko?
You can pimp your GOG a little by loading this short script as Custom JS, for example in CJS extension for Chrome:
function gogColorTopicByText(text,bg,color) {
topicTextNode = document.evaluate(
"//div[contains(@class,'topic_s')]/a[contains(text(),'"+text+"')]"
, document, null, XPathResult.ORDERED_NODE_ITERATOR_TYPE, null
);
topicText=topicTextNode.iterateNext();
while(topicText) {
topicText.style.background=bg;
topicText.style.color=color;
topicText.style.fontWeight='bold';
topicText=topicTextNode.iterateNext();
}
}
gogColorTopicByText('Leaving GOG','black','white');
gogColorTopicByText('Giveaway','darkgreen','white');
It's a quick workaround.
[Edit: Patched code]