Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

color of disabled elements #46

Open
ghost opened this issue Apr 12, 2015 · 0 comments
Open

color of disabled elements #46

ghost opened this issue Apr 12, 2015 · 0 comments

Comments

@ghost
Copy link

ghost commented Apr 12, 2015

Disabled elements use neutrale text color __text_neu__ as defined in style.ini, which is "#000". This value doesn't differ from default text color __text__, which makes it hard / impossible do recognize them as being disabled.

Possible solution: use another color, e.g. #999
work around: customize as shown here https://www.dokuwiki.org/devel:style.ini#local_styleini (tested with farming and does work. the directory tree has to be created).

In static/css/screen.css the following is given:

div.dokuwiki textarea.edit[disabled],
div.dokuwiki textarea.edit[readonly],
div.dokuwiki input.edit[disabled],
div.dokuwiki input.edit[readonly],
div.dokuwiki input.button[disabled],
div.dokuwiki select.edit[disabled] {
  background-color: __background_neu__!important;
  color: __text_neu__!important;
  font-weight: normal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants