Logic Machine Forum
Problem with scrolling control settings - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Visualization (https://forum.logicmachine.net/forumdisplay.php?fid=9)
+--- Thread: Problem with scrolling control settings (/showthread.php?tid=2841)



Problem with scrolling control settings - buuuudzik - 15.09.2020

I found a bug with scrolling in controlĀ settings which are longer than screen height. Now I am using fast fix by overflow: scroll on settings element.

Another little issue is with icon of Widget Creator which land at the bottom of a page instead of this widget box.

And also probably text align not working, Ive tried Right and it still looks like it would be Left.


RE: Problem with scrolling control settings - admin - 15.09.2020

I suppose this is for Mosaic, which version are you using? Have you tried Mosaic beta?


RE: Problem with scrolling control settings - buuuudzik - 15.09.2020

I didn't checked in beta. This issue is on the latest regular Mosaic


RE: Problem with scrolling control settings - Daniel - 15.09.2020

Hi, Can you explain which settings you refer too?
In Wiglet creator element goes always to top left corner. Describe your widget settings it might be something specific.
The alignment works only you have to set the width, Otherwise size is automatically adjusted.


RE: Problem with scrolling control settings - buuuudzik - 15.09.2020

Here you have some screenshots


RE: Problem with scrolling control settings - Daniel - 15.09.2020

What is your screen resolution?

OK I think I know what you mean.


RE: Problem with scrolling control settings - buuuudzik - 15.09.2020

Fullscreen is 1920x1080px, on that screen (first picture) is little issue with overflowing but still it is possible to click save button. But when resolution is smaller (app in window) then scroll ends before content.


RE: Problem with scrolling control settings - buuuudzik - 15.09.2020

Here is the worst case

Please also check this, but this is probably because i resized window.


RE: Problem with scrolling control settings - buuuudzik - 19.09.2020

Below small temporary CSS fix:

Code:
.panels.visible {
display: flex;
flex-direction: column;
height: 85vh !important;
overflow: auto;
}

.panels.visible > .panels-close {
flex-grow: 0;
}

.panels.visible > .body {
flex-grow: 1;
overflow: auto;
}



RE: Problem with scrolling control settings - Daniel - 21.09.2020

We have this fixed in beta version(not store one).


RE: Problem with scrolling control settings - buuuudzik - 21.09.2020

(21.09.2020, 07:26)Daniel. Wrote: We have this fixed in beta version(not store one).

Very niceWink