We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Class disabled should have higher priority in tables. Disabled rows displayed as positive/negative/definition.
Now we have:
// line #26250 .ui.definition.table tr td:first-child:not(.ignored), .ui.definition.table tr td.definition { color: rgba(0, 0, 0, 0.95); } // line #26292 .ui.table tr.positive, .ui.table td.positive { background: #FCFFF5 !important; color: #2C662D !important; } // line #26308 td.negative { background: #FFF6F6 !important; color: #9F3A38 !important; } // line #26368 .ui.table tr.disabled td, .ui.table tr td.disabled, .ui.table tr.disabled:hover, .ui.table tr:hover td.disabled { pointer-events: none; color: rgba(40, 40, 40, 0.3); }
How to fix:
// line #26368 .ui.table tr.disabled td, .ui.table tr td.disabled, .ui.table tr.disabled:hover, .ui.table tr:hover td.disabled { pointer-events: none; color: rgba(40, 40, 40, 0.3) !important; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Class disabled should have higher priority in tables. Disabled rows displayed as positive/negative/definition.
Now we have:
How to fix:
The text was updated successfully, but these errors were encountered: