Use the following CSS to customize the connector end point handle.
.e-diagram-endpoint-handle {
fill: red;
stroke: green;
}
Use the following CSS to customize the connector end point handle when connected.
.e-diagram-endpoint-handle.e-connected {
fill: red;
stroke: green;
}
Use the following CSS to customize the connector end point handle when disabled.
.e-diagram-endpoint-handle.e-disabled {
fill: red;
opacity: 1;
stroke: green;
}
Use the following CSS to customize the bezier handle properties.
.e-diagram-bezier-handle {
fill: red;
stroke: green;
}
Use the following CSS to customize the bezier line properties.
.e-diagram-bezier-line {
stroke: black;
}
Use the following CSS to customize the resize handle.
.e-diagram-resize-handle {
fill: white;
opacity: 1;
stroke: white;
}
Use the following CSS to customize the line between the selector and rotate handle.
.e-diagram-pivot-line {
stroke: red;
}
Use the following CSS to customize the selector border.
.e-diagram-border {
stroke: red;
}
Use the following CSS to customize the rotate handle properties.
.e-diagram-rotate-handle {
fill: red;
stroke: green;
}
Use the following CSS to customize the symbolpalette while hovering.
.e-symbolpalette .e-symbol-hover:hover {
background: red;
}
Use the following CSS to customize the symbolpalette when selected.
.e-symbolpalette .e-symbol-selected {
background: white;
}
Use the following CSS to customize the ruler properties.
.e-diagram .e-ruler {
background-color: red;
font-size: 13px;
}
Use the following CSS to ruler overlap properties.
.e-diagram .e-ruler-overlap {
background-color: red;
}
Use the following CSS to customize the text edit properties.
.e-diagram .e-diagram-text-edit {
background: white;
border-color: red;
border-style: dashed;
border-width: 1px;
box-sizing: content-box;
color: black;
min-width: 50px;
}
Use the following CSS to customize the text edit on selection properties.
.e-diagram-text-edit::selection {
background: red;
color: green;
}