How to change the background color of the title bar of the weblistbox?

原先在 app的 html header 添加:

<style>
	.table th {
		background-color: #576a78;
		color:white;
	}
</style>

background-color does not work in 2022R4.
color is still valid.

Please give this one a try:

<style>
	.dataTables_scroll .dataTables_scrollHeadInner th {
		background-color: #576a78;
		color:white;
	}
</style>

Or:

<style>
	.table th {
		background-color: #576a78 !important;
		color:white;
	}
</style>

There is a Feature Request to make this editable directly from the IDE:
Issue #71222

1 Like

有效,非常感谢。
Thanks

1 Like

不客气!

The !important; solves it for us.

1 Like