![]() |
Forums White font issue fix suggestion - Printable Version +- Limelight Forums (https://limelightgaming.net/forums) +-- Forum: Feedback (https://limelightgaming.net/forums/forum-612.html) +--- Forum: Bugs (https://limelightgaming.net/forums/forum-243.html) +---- Forum: Archive (https://limelightgaming.net/forums/forum-244.html) +---- Thread: Forums White font issue fix suggestion (/thread-23588.html) |
White font issue fix suggestion - Armard - Nov 10, 2018 Explain your suggestion, in detail: Invert the entire font colouring into negative colours on the forums Explain why the suggestion should be implemented: it would prevent all white text when someone writes in night mode and then formats it, as well as adding more darker tones to what is normally lighter, nothing would drastically impact the forum beeing, everything will stay the same exept few colors get different wich isnt the biggest of deals whislt fixing a presisting "bug" RE: White font issue fix suggestion - LilSnek - Nov 10, 2018 +support RE: White font issue fix suggestion - Bambo - Nov 19, 2018 The only way this can be done is using mix-blend-mode: exclusion; or mix-blend-mode: screen; in the post body for the dark theme. Even then, the black fonts will not be white but it'll be a bit easier to see. I'll test this out tomorrow and when/if this gets approved I'll implement it. RE: White font issue fix suggestion - Tom* - Nov 21, 2018 +Support RE: White font issue fix suggestion - Montyfatcat - Nov 22, 2018 (Nov 19, 2018, 12:53 AM)Bambo Wrote: The only way this can be done is using A very pseudo way of doing this could be: if themes == dark: text = white elif themes == light: text = black elif text == changed: continue endif RE: White font issue fix suggestion - Bambo - Nov 23, 2018 (Nov 22, 2018, 12:06 AM)Montyfatcat Wrote:(Nov 19, 2018, 12:53 AM)Bambo Wrote: The only way this can be done is using I wish it was that ez. Tested the idea I've listed above, I ran into an issue which I thought would happen. Basically although it works on texts, it also messes with pictures, videos and every other thing placed in the post. There is not an easy way to style only the text. RE: White font issue fix suggestion - Dick - Nov 25, 2018 um. sure? why is this a suggestion? RE: White font issue fix suggestion - Armard - Nov 26, 2018 (Nov 25, 2018, 10:05 PM)Dicky Wrote: um. sure? why is this a suggestion? Because its a color reverb on the entire page and not a bug report? RE: White font issue fix suggestion - Noble - Nov 26, 2018 Easiest method would be to remove color selection from the full reply editor to at least prevent the majority of people choosing white or dark grey/blue as a text color. Another option is to target .mycode_color with the mix-blend-mode: exclusion; so that only styled text is affected. Then target imgs inside of that class with filter: invert(100%); so that the small chance any images wind up inside of the span they'll be the proper color. RE: White font issue fix suggestion - Bambo - Nov 29, 2018 This is done with the help from Noble. I'd count this as a bug, should have been a bug in the first place. Now, there is two ways for me to do this, first being the way Noble suggested. Second being, using filter:brightness This will result in making dark texts even brighter, but then would ruin any colour options. Now, here's the difference between two options: Using blend-mode:exclusion: Before: ![]() After: ![]() Using filter Before: ![]() After: ![]() RE: White font issue fix suggestion - Bambo - Nov 29, 2018 Moved to bugs, added an option to vote for the fix we should go for RE: White font issue fix suggestion - StephanGH - Nov 29, 2018 Explanations and poll options are swapped in order.... Absolutely barbaric (I voted for the wrong option now) RE: White font issue fix suggestion - Bambo - Nov 29, 2018 (Nov 29, 2018, 11:31 PM)StephanGH Wrote: Explanations and poll options are swapped in order.... Absolutely barbaric Fixed bb. You can undo from here; ![]() Also, known issues for the filter; Bright colours turn white. So candy pink would turn into white. RE: White font issue fix suggestion - StephanGH - Nov 29, 2018 (Nov 29, 2018, 11:38 PM)Bambo Wrote:(Nov 29, 2018, 11:31 PM)StephanGH Wrote: Explanations and poll options are swapped in order.... Absolutely barbaric Thankss <3 RE: White font issue fix suggestion - Bambo - Dec 1, 2018 This is done using filter. If there are any issues caused with the way of implementation please post another bug report. The fix should now be live. |