mirror of
https://github.com/enso-org/enso.git
synced 2024-12-20 10:51:34 +03:00
parent
d2e1e90f94
commit
cb499e2b69
@ -45,6 +45,8 @@
|
|||||||
- [Pasting tabular data now creates Table.input expressions][11695].
|
- [Pasting tabular data now creates Table.input expressions][11695].
|
||||||
- [No halo is displayed around components when hovering][11715].
|
- [No halo is displayed around components when hovering][11715].
|
||||||
- [The hover area of the component output port extended twice its size][11715].
|
- [The hover area of the component output port extended twice its size][11715].
|
||||||
|
- [Fix some UI elements drawing on top of visualization toolbar dropdown
|
||||||
|
menus][11768].
|
||||||
|
|
||||||
[11151]: https://github.com/enso-org/enso/pull/11151
|
[11151]: https://github.com/enso-org/enso/pull/11151
|
||||||
[11271]: https://github.com/enso-org/enso/pull/11271
|
[11271]: https://github.com/enso-org/enso/pull/11271
|
||||||
@ -73,6 +75,7 @@
|
|||||||
[11684]: https://github.com/enso-org/enso/pull/11684
|
[11684]: https://github.com/enso-org/enso/pull/11684
|
||||||
[11695]: https://github.com/enso-org/enso/pull/11695
|
[11695]: https://github.com/enso-org/enso/pull/11695
|
||||||
[11715]: https://github.com/enso-org/enso/pull/11715
|
[11715]: https://github.com/enso-org/enso/pull/11715
|
||||||
|
[11768]: https://github.com/enso-org/enso/pull/11768
|
||||||
|
|
||||||
#### Enso Standard Library
|
#### Enso Standard Library
|
||||||
|
|
||||||
|
@ -278,9 +278,12 @@ customElements.define(ensoVisualizationHost, defineCustomElement(VisualizationHo
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
border-radius: var(--radius-default);
|
border-radius: var(--radius-default);
|
||||||
background: var(--color-visualization-bg);
|
background: var(--color-visualization-bg);
|
||||||
|
opacity: 0.9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
/** Prevent drawing on top of other UI elements (e.g. dropdown widgets). */
|
/** Prevent drawing on top of other UI elements (e.g. dropdown widgets). */
|
||||||
isolation: isolate;
|
isolation: isolate;
|
||||||
opacity: 0.9;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.isFocused {
|
.isFocused {
|
||||||
|
Loading…
Reference in New Issue
Block a user