-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
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
[Table] Add an ability to style a checkbox of table row #4121
Comments
As a workaround: <TableRow className="row"></TableRow> .row {
td {
background-color: white !important;
}
} |
Is there a workaround for setting the height of the checkbox column? That seems to be overriding everything else in the row and you can't set it. |
Can't you use the same technique I wrote above? |
Unless I'm missing something, unless I hide the checkbox, the height of the checkbox overrides any height I set on the row. |
Actually, let me try that technique. |
Yeah, no dice. I can set the style on each row column but since you don't manually add the checkbox column its not possible with it and it doesn't inherit the height from row and its set to 48px. |
Does anyone know where that css style checkbox column style is stored in the module folder? |
We have been porting the component on the v1-beta branch. We reimplemented it from the ground-up. While we haven't tested it, I think that the issue is most likely fixed on that branch. The Checkbox is exposed. |
Problem Description
There is no way to add custom styling to a checkbox of a table row.
Versions
The text was updated successfully, but these errors were encountered: