You can set row height in UI5 table.
https://sapui5.hana.ondemand.com/#docs/api/symbols/sap.ui.table.Table.html#setRowHeight
BTW, you might be interested in different density modes in UI5.
https://help.sap.com/saphelp_nw75/helpdata/en/e5/4f729da8e3405fae5e4fe8ae7784c1/content.htm
Content Densities @ control level : https://openui5.hana.ondemand.com/#docs/guide/13e6f3bfc54c4bd7952403e20ff447e7.html
Try setting class to your table: class="sapUiSizeCompact"
For particular table css:
table[id*='tableID'] tr { } //tr css for table id tableID
table[id*='tableID'] td { } //td css for table id tableID
table[id*='tableID'] td span { } //span(text) of td css for table id tableID
hope this help.
Thanks,
Akhilesh
Add comment