Command Button Colors inside Datatable
Posted: 04 Feb 2019, 17:52
How to change button colors inside datatable? If I set colors in the button still the blue color of the theme (default). Outside datatable button colors works fine.
Code: Select all
body .ui-datatable tbody.ui-datatable-data .ui-button.ui-state-default {
background: red;
border-bottom: 5px solid blue;
}
body .ui-datatable tbody.ui-datatable-data .ui-button.ui-state-hover {
background: yellow;
}
Code: Select all
body .ui-datatable tbody.ui-datatable-data .red-button.ui-button.ui-state-default {
background: red;
border-bottom: 5px solid blue;
}
body .ui-datatable tbody.ui-datatable-data .red-button.ui-button.ui-state-hover {
background: yellow;
}