How can I add padding for one table column in Cuba Platform?

312 Views Asked by At

I created a table and the content of the first column is not at the same line with the title. When I add padding to that table all of my columns have that padding and not just the first column. How can I write the css to just speak to the first column?

enter image description here

enter image description here

This is what I already tried:

.bewertungstable-padding .v-table-cell-wrapper:first-child {
    padding: 4px 7px 4px 12px;
}

Here is my table in xml:

<table 
    id="fileFrageHistoryTable" 
    width="100%" 
    height="100%" 
    dataContainer="fileFrageHistoryDc"
    stylename="borderless no-horizontal-lines no-vertical-lines bottom-border-radius bewertungstable-padding"
    showSelection="false" 
    sortable="false">
  <columns>
       <column id="frageHistory"/>
       <column id="prozessAuswahl" width="50"/>
       <column id="antwort"/>
       <column id="antwortBegruendung"/>
       <column id="position" visible="false"/>
  </columns>
</table>
0

There are 0 best solutions below