Modification of the New button in the table component

The new button is a bit small within the data table component.

You can modify this by adding following in the CSS tab of the page the data table is on

.t-new-record-button {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-radius: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-size: 1.3em;
    background-color: #ac2925;
}

Result:
image
old:
image

You can tweak above to change color, font, etc…

The reload - refresh button was removed with following:

 .t-refresh-button{
     display: none;
 }
1 Like