Larger Font Options for Notes

Lol to screen ink. :laughing:
That head scares me :scream_cat:

2 Likes

This helps to some extent, for notes run the following script on the console:

document.getElementsByClassName("PlayerInfo__notes").forEach(elem=>elem.style.fontSize="20px")

For chats:

document.getElementsByClassName("ChatMessage").forEach(elem=>elem.style.fontSize="15px")

3 Likes

For chats, full proof method, detects the new messages and changes the font size:

document.getElementsByClassName("ChatMessage"). 
   forEach(elem=>elem.style.fontSize="15px");
elem=document.getElementsByClassName("Chat__messages")[0];
observer = new MutationObserver((mutations)=> {
  mutations.forEach(mutation=>
     mutation.addedNodes[0].style.fontSize="15px");
});
observer.observe(elem,{childList: true});
2 Likes

@narench amazing yet again tip my hat - If I play on my laptop do the same - click inspect and change font - we need front end developers come work for us you know your stuff xx

3 Likes

Its the power of HTML and JS. You do little bit of coding, they take care of the rest.

For a long time I didn’t pick them up, as both were unacceptable to me as a conventional programmer. Once you accept them as they are, you realize their power.

My criticism is still valid. You can do wonders with JS and HTML, but if someone has to understand your code, he won’t make a head or tail of it. Strong organized effort is required in developing in these languages. They are also resource hoggers. Server written in plain C,C++, or Java, I presume, will take one tenth of the resources. But the flexibility HTML and JS offer ,other languages can not match.

This discussion may be little off line for Replay forum, but if someone can comment, I am glad to hear.

From what you said about HTML and JS, one can imagine what you think of CSS. :slight_smile:

Yes, CSS is another complex thing to program. Again, it gives the flexibility in modularizing different styles. Hundred/few tens of such styles will become a nightmare.

1 Like

I did it and the chat didn’t change, just everything else which is not good. You can’t even see the whole table without sliding it up and down, left and right. lol Thank you very much. I will go back to reading in case someone figured it out.

3 Likes

You guys are the best. Thank you very much. Have a wonderful day.

3 Likes

So sorry it didn’t work, I tried :smiley: and yes your right, it does make everything bigger and gets in the way…take care Sue.

2 Likes