Adam Obuchowicz 2024-07-13 18:42:31 +02:00 committed by GitHub
parent aaa3495546
commit bfb1d8e6b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 8 deletions

View File

@ -13,10 +13,12 @@
node being completely altered by accidental code put to the widget.
- [Redesigned "record control" panel][10509]. Now it contains more intuitive
"refresh" and "run workflow" buttons.
- [Warning messages do not obscure visualization buttons][10546].
[10433]: https://github.com/enso-org/enso/pull/10443
[10457]: https://github.com/enso-org/enso/pull/10457
[10509]: https://github.com/enso-org/enso/pull/10509
[10546]: https://github.com/enso-org/enso/pull/10546
#### Enso Enso Standard Library

View File

@ -555,7 +555,7 @@ watchEffect(() => {
</svg>
<SmallPlusButton
v-if="menuVisible && isVisualizationVisible"
class="below-viz"
class="afterNode"
@createNodes="emit('createNodes', $event)"
/>
</div>
@ -665,6 +665,7 @@ watchEffect(() => {
position: absolute;
top: 100%;
margin-top: 4px;
transform: translateY(var(--viz-below-node));
}
.messageWithMenu {
@ -705,11 +706,4 @@ watchEffect(() => {
.dragged {
cursor: grabbing !important;
}
.below-viz {
position: absolute;
top: 100%;
transform: translateY(var(--viz-below-node));
margin-top: 4px;
}
</style>