Hi Claire,
Greetings from Syncfusion support
We have validated your query “Hide the dashed blue border around the "ShowAddButton" in Kanban control”
Your requirement to customize the border around the ShowAddButton can be done by using the below CSS styles code. Please check the below code,
Code snippet:
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
border: none;
}
// To hide the border while focusing the add button.
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button:focus {
border: none;
} |
Please check the above code snippet and let us know if it satisfies your requirement.
Regards,
Vinitha.