Luís Silva
Luís Silva
I've built ConnectBot `v1.9.6` and it works fine on the phone. I though it might be using a different `tink` version and wanted to compare these, but it appears that...
Same as #737.
I would suggest just using the `:nth-child()` [selector](https://www.w3schools.com/cssref/sel_nth-child.asp) to color odd and even rows/items, like [this example](https://www.w3schools.com/cssref/tryit.asp?filename=trycss3_nth-child_odd_even). That would eliminate the need for "manually" having to add `odd`and `even` class...
Thank you for your replies. > I think rows that existed with either hidden or no height, cause the alternative colouring to still be applied to them I did not...
Giving it some thought: - The `:nth-child()` selector selects based on the index relative to the element's parent, so it also considers hidden elements. `.row:not(.hidden):nth-child(2n)` does not do the trick....
@netniV is this (solution 2 above) what you meant with "expand the CSS selectors"?