It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
Haven't even heard of it.
avatar
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.
avatar
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]
Attachments:
Post edited July 14, 2018 by erbello
avatar
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?
avatar
Linko90: It would be a fair amount of work, as anything is with behind the scenes stuff, but i have forwarded it as i do with all sensible feedback.
Thank you Linko!
I do hope it is not that hard, even with all the stuff behind the scene ; >

avatar
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?
avatar
erbello: You can pimp your GOG a little by loading this short script as Custom JS, for example in CJS extension for Chrome:

leavingTopicS = document.evaluate(
"//div[contains(@class,'topic_s')]/a[contains(text(),'Leaving')]"
, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null
).singleNodeValue;
leavingTopicS.style.background='black';
leavingTopicS.style.color='white';

It's a quick workaround.
Thanks erbello!
I think I can manage, but I'd like to see it working without custom scripts : )
btw, wouldn't be more accurate using gog_dude class to swap babel zielony_b_odd with babel czerwony_b_odd?
avatar
mike_cesara: Thanks erbello!
I think I can manage, but I'd like to see it working without custom scripts : )
btw, wouldn't be more accurate using gog_dude class to swap babel zielony_b_odd with babel czerwony_b_odd?
Yes, it would be too ;)
Post edited July 14, 2018 by erbello