CSS Bug?

We’ve just upgraded from the beta to the release version of Domino 8.5, and I’ve noticed what appears to be a bug with the CSS for tabbed panels in Firefox (which wasn’t there with the beta).

If you add a tabbed panel to an XPage, and open it in Firefox, there is an ugly line inbetween the tabs and the panels, spanning the whole page.

The div in question has the class of “xspTabbedPanelContainer” and the rule causing the problem is:

border-bottom:1px solid #E0E0E0;

It seems OK in IE.

Karl

Subject: Re: CSS Bug?

I can verify that this is a bug, and that it has been logged. (We’re seeing it in IE as well by the way).

As a work around, the following css can be added to a style sheet on the page:

.xspTabTabbedPanel

{

border-style: solid;

border-color: #E0E0E0;

border-width: 0px 1px 1px 1px;

margin: 0px;

}

Lorcan