Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
styles.css causes problems with chrome OSX?
Hi,
i detected, that reindeer/styles.css contains a lot of "-background-image" properties for ie6. And it seems that the leading "-" causes some troubles running google chrome on OSX.
I am using the ComboBox very heavily and if more than 3 browser tabs are opened in my application, suddenly the background-image from ComboBox disappears.
.v-... {
...
background-image: url(common/img/vertical-sprites.png);
-background-image: url(common/img/vertical-sprites-ie6.png);
...
}
Why does the property start with "-"?
If i am using the developer tools and remove the property from the browser after the bug happens, everything is fine again.
But i could not reproduce the bug using the vaadin sampler. Everything seems to be fine there!
Are there any issues known?
Thanks, Florian Pirchner
Those are fixes for internet explorer 6.
The properties starting in - should be ignored by complaint browsers. I guess chrome on OSX is not so compliant at this level...
I guess you can remove them if you don't plan on supporting IE6.