You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It works at basic level, but for example :disabled state does not make label text look like disabled. That's because input:checked ~ label selector does not match.
The solution is probably to fix nette/forms markup as the current solution is hard-coded and kind of obsolete – see nette/forms#106
The text was updated successfully, but these errors were encountered:
According to BS5 docs, correct markup is:
instead of:
It works at basic level, but for example
:disabled
state does not make label text look like disabled. That's becauseinput:checked ~ label
selector does not match.The solution is probably to fix nette/forms markup as the current solution is hard-coded and kind of obsolete – see nette/forms#106
The text was updated successfully, but these errors were encountered: