Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! X
Hi @MG_2602,
Please try below custom CSS code to see if it works.
ptcs-confirmation-dialog::part(primary-button) {
background-color: red;
}
ptcs-confirmation-dialog::part(cancel-button) {
background-color: grey;
}
You can also add :hover, :focus at the end of the selector to change the background color of the buttons at different states
Hi @MG_2602,
Please try below custom CSS code to see if it works.
ptcs-confirmation-dialog::part(primary-button) {
background-color: red;
}
ptcs-confirmation-dialog::part(cancel-button) {
background-color: grey;
}
You can also add :hover, :focus at the end of the selector to change the background color of the buttons at different states