Jump to content

New forum very hard to read


Recommended Posts

Posted (edited)

Same... 

chrome theme are messing with unraid themes. and Dark mode woes...

I have problems with how chrome replaces the white css code to match chrome themes.

However, this was not a problem with the previous form system before the upgrade so is there more going on yes. I don't know css color codes enough to pull the difference via internet archive and web console tools.

other web extensions like dark mode also mess with this.
its how the page html code is interacting with certain plugins / web browsers.

Forum would need html code edits to fix:
https://stackoverflow.com/questions/60118216/how-do-i-stop-dark-mode-from-destroying-my-css

a solution to the dev hopefull:

 

Quote

Had the same issue. Here's what I found.

I added this meta tag to the header tag:

<meta name="color-scheme" content="light only">

The meta tag above indicates that the color scheme is only supported by light mode.

Another option is the scheme preferred in light mode, but it supports dark mode as well:

<meta name="color-scheme" content="light dark">

Tested on Safari, Chrome, Samsung, Facebook in-app browser and Firefox.

Another method is to use CSS:

:root { color-scheme: light only; }

The above indicates that the styling only uses the light version only.

 

Edited by bmartino1
Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...