What causes NOT_AVAILABLE_BORDER ?

Hello,

I have a gridlayout with components in them. (These are VerticalLayouts wrapped in the DragAndDropWrapper)

Depending on the state of the components, I draw a border in different colors.
I set the border via style:

For example:

.NOT_AVAILABLE_BORDER
{
    border-color: red;
    border-bottom-style: solid;
    border-width: 2px;
}

Strange, this only draws the bottom border, and the box (when looked at via firebug)
has the style or status NOT_AVAILABLE_BORDER (See attached print screen)

What could be the problem ?
11280.gif

Hi,

I don’t quite understand what the expected result is?

If you only specify a bottom border (
border-bottom-style: solid;
), there will only be a bottom border… but perhaps I’m not understanding your problem?

Best Regards,
Marc

Here is my head :*) , please hit it…

Somehow I did overlook the border-bottom-style in the css definition

Thanks.

André