Check boxes have outline I can't get rid of in 3.5.5

I searched and couldn’t find anything about this yet. Is there a way to turn the outside box off on checkboxes? It showed up in 3.5.5 when I upgraded from 3.5.4.

from

Thanks

Servoy Developer
Version 3.5.5-build 518
Java version 1.6.0_03-b05 (Japanese Windows XP)

is this web or smart client?

smart client

It is a bug, a workaround for now would be to make two styles, one for a checkbox and one for a field with the same name. Like this:

checkbox.none_check
{
border-width: 0px;
border-style: solid;
}
field.none_check
{
border-width: 0px;
border-style: solid;
}

Then on the checkbox choose the style none_check.

Please make a case in the servoy support system so you keep updated when they solve the bug.