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

Priority for .disabled class #6311

Open
Apache02 opened this issue Mar 28, 2018 · 0 comments
Open

Priority for .disabled class #6311

Apache02 opened this issue Mar 28, 2018 · 0 comments

Comments

@Apache02
Copy link

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;
}
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

1 participant