clarity-addons
clarity-addons copied to clipboard
Icon button broken in a Treetable header
When using an icon button in a clr-treetable
the button is not shown correctly.
Reason for this seems to be this CSS rule
treetable-host .treetable .treetable-row-scrollable :first-child {
padding-left: 1.5rem;
}
A workaround is to add this to your stylesheet
.treetable-host .treetable .treetable-row-scrollable :first-child {
padding-left: revert;
}
We love to see contributions, when you already know where the problem is. But I guess in this case another solution is needed, as "revert" is a very new value which is not supported very widely: https://caniuse.com/#search=revert
@martinbrom could you please help out on this one ... Is this still reproducible? Can it be closed?
Fixed with #2215