selfthinker / dokuwiki_plugin_wrap

Wrap Plugin for DokuWiki: Universal plugin which combines functionalities of many other plugins. Wrap wiki text inside containers (divs or spans) and give them a class (choose from a variety of preset classes), a width and/or a language with its associated text direction.
http://www.dokuwiki.org/plugin:wrap
GNU General Public License v2.0
41 stars 33 forks source link

Text-Color problem with darkmode #245

Open rfertig opened 1 year ago

rfertig commented 1 year ago

If you use the warp boxes while the browser is in dark mode, the text in the boxes is barely readable:

Screenshot

I managed to solve this by adding the following code in the userstyle.css, but I think it would be better to add this to the plugin code.

  body.darkmode div.wrap_info,
  body.darkmode div.wrap_important,
  body.darkmode div.wrap_alert,
  body.darkmode div.wrap_tip,
  body.darkmode div.wrap_help,
  body.darkmode div.wrap_todo,
  body.darkmode div.wrap_download {
    color: black;
  }
  /* span mark */
  body.darkmode span.wrap_hi {
    color: black;
  }

The result: 2022-10-27_154010-Window