I've been using Cobalt recently and I am converting an UI to make it work on Cobalt. One of my problem is that I'm using a specific class for overflow :
.ellipsis {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
The problem is that it seems that the "white-space: nowrap;" is not supported by Cobalt. But when I am looking at the Cobalt documentation (http://cobalt.foo/development/reference/supported-features.html) it says that all these css properties are supported. Any idea why it doesn't work and how to fix that ?