Mentions légales du service

Skip to content
Snippets Groups Projects

Resolve "Display chapter title in the chapter node"

Merged VIAUD Nathan requested to merge 315-display-chapter-title-in-the-chapter-node into main
5 files
+ 91
147
Compare changes
  • Side-by-side
  • Inline
Files
5
@@ -127,60 +127,4 @@ const activityIndex = computed(() => {
.vue-flow__node.selected .node {
border: 2px dashed var(--editor-blue);
}
.node.hover:has(.ghost) {
&.node-list {
padding: 1.5rem;
}
}
.container.hover {
.node {
transition: all 0.2s ease-in-out;
background-color: var(--node-hover);
box-shadow: 0 2px 5px 0 var(--shadow-outer);
}
}
.vue-flow__handle {
width: 12px;
height: 12px;
top: calc(30px + 1rem + 1px);
&-left {
left: -6px;
}
&-right {
right: -6px;
}
}
.not-connected {
background-color: var(--editor-red);
}
.container {
position: relative;
&:hover {
.node-title {
overflow-x: visible;
}
}
}
.node-title {
height: 1.5rem;
margin: 0;
padding: 0.2rem;
top: -1.75rem;
max-width: calc(60px + 1.8rem);
overflow-x: hidden;
white-space: nowrap;
text-overflow: ellipsis;
position: absolute;
&.active {
color: var(--editor-blue);
}
}
</style>
Loading