Did you try specifying "background" instead "background-color"?  The
"background-color" only overrides the color portion of the background.  If a
background image is set (as I believe it is in the default style), then the
background color will be overlapped by the image, and thus doesn't apply.

.gwt-HorizontalSplitPanel .splitter {
       background: #000000;
}

Also, I strongly encourage you to use SplitLayoutPanel instead.  The
implementation is more solid and more responsive.  You can find more info in
the dev guide:
http://code.google.com/webtoolkit/doc/latest/DevGuideUiPanels.html#LayoutPanels

Thanks,
John LaBanca
[email protected]


On Fri, Oct 22, 2010 at 6:18 PM, lineman78 <[email protected]> wrote:

> The space is correct since it is a decendant selector.  In order for
> the no space to work the div you are trying to select would have to be
> a member of both classes.
>
> There are 2 options for a solution...
> 1) splitter is the id of the split div:
> .gwt-HorizontalSplitPanel #splitter {}
>
> 2) hsplitter is the class of the splitter table:
> .gwt-HorizontalSplitPanel .hsplitter {}
>
> On Oct 22, 10:15 am, Hilco Wijbenga <[email protected]> wrote:
> > On 22 October 2010 08:45, alexoffspring <[email protected]> wrote:
> >
> > > .gwt-HorizontalSplitPanel .splitter {
> >
> > Should that be ".gwt-HorizontalSplitPanel.splitter" (i.e. no space)?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<google-web-toolkit%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to