23 lines
620 B
CSS
23 lines
620 B
CSS
/* this gets exported as style.css and can be used for the default theming */
|
|
@import '../../../system/src/styles/init.css';
|
|
@import '../../../system/src/styles/style.css';
|
|
@import '../../../system/src/styles/node-resizer.css';
|
|
|
|
.svelte-flow__edge-label {
|
|
text-align: center;
|
|
position: absolute;
|
|
padding: 2px;
|
|
font-size: 10px;
|
|
cursor: pointer;
|
|
color: var(--xy-edge-label-color, var(--xy-edge-label-color-default));
|
|
background: var(--xy-edge-label-background-color, var(--xy-edge-label-background-color-default));
|
|
}
|
|
|
|
.svelte-flow__nodes {
|
|
z-index: 0;
|
|
}
|
|
|
|
.svelte-flow__edgelabel-renderer {
|
|
z-index: 0;
|
|
}
|