2

I have next situation, look at the picture, please. enter image description here

How can I change this padding value? I need reduce it.

Rüdiger Herrmann
  • 20,512
  • 11
  • 62
  • 79
Paul
  • 580
  • 1
  • 7
  • 22
  • This is Eclipse RAP, I can't give you a fiddle – Paul Jun 18 '15 at 07:59
  • You probably want to include [tag:eclipse-rap] in the question tags to make it more likely that someone who knows about RAP sees the question. – greg-449 Jun 18 '15 at 09:02

1 Answers1

2

The RWT Theming Reference lists a Table-Cell CSS rule that has a padding property, that

Defines the padding (i.e. the inner distance between border and content) for a table cell.

Without having tried, you should be able to specify a custom padding with

Table-Cell {
  padding: 2px;
}

See also the RWT Theming chapter of the developer's guide for more.

Rüdiger Herrmann
  • 20,512
  • 11
  • 62
  • 79