Girish
Girish

Reputation: 23

GWT DisclosurePanel remove vertical line

I tried to override a few css properties of the gwt-DisclosurePanel and gwt-DisclosurePanel-open rules to try and remove the vertical line but failed to do so. Here is the image:

enter image description here

How do I remove this vertical line?

Upvotes: 2

Views: 945

Answers (1)

Strelok
Strelok

Reputation: 51461

The border line in the DisclosurePanel content comes from this rule (in Clean theme as an example):

.gwt-DisclosurePanel .content {
  border-left: 3px solid #e7e7e7; // Here is your border
  padding: 4px 0px 4px 8px;
  margin-left: 6px;
}

Always use Firebug for Firefox or Chrome's built in Developer Tools to debug issues like that. You would get the required CSS rule to override in just a few seconds.

Upvotes: 1

Related Questions