Posts: 942
Threads: 161
Joined: Jul 2015
Reputation:
33
15.09.2020, 04:44
(This post was last modified: 15.09.2020, 04:50 by buuuudzik .)
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.
Done is better than perfect
Posts: 8075
Threads: 43
Joined: Jun 2015
Reputation:
471
I suppose this is for Mosaic, which version are you using? Have you tried Mosaic beta?
Posts: 942
Threads: 161
Joined: Jul 2015
Reputation:
33
I didn't checked in beta. This issue is on the latest regular Mosaic
Done is better than perfect
Posts: 4938
Threads: 28
Joined: Aug 2017
Reputation:
226
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.
------------------------------
Ctrl+F5
Posts: 942
Threads: 161
Joined: Jul 2015
Reputation:
33
15.09.2020, 16:39
(This post was last modified: 15.09.2020, 16:40 by buuuudzik .)
Here you have some screenshots
Attached Files
Thumbnail(s)
Done is better than perfect
Posts: 4938
Threads: 28
Joined: Aug 2017
Reputation:
226
What is your screen resolution?
OK I think I know what you mean.
------------------------------
Ctrl+F5
Posts: 942
Threads: 161
Joined: Jul 2015
Reputation:
33
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.
Done is better than perfect
Posts: 942
Threads: 161
Joined: Jul 2015
Reputation:
33
15.09.2020, 18:10
(This post was last modified: 15.09.2020, 18:19 by buuuudzik .)
Here is the worst case
Please also check this, but this is probably because i resized window.
Attached Files
Thumbnail(s)
Done is better than perfect
Posts: 942
Threads: 161
Joined: Jul 2015
Reputation:
33
Below small temporary CSS fix:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
.
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 ;
}
Done is better than perfect
Posts: 4938
Threads: 28
Joined: Aug 2017
Reputation:
226
We have this fixed in beta version(not store one).
------------------------------
Ctrl+F5
Posts: 942
Threads: 161
Joined: Jul 2015
Reputation:
33
(21.09.2020, 07:26) Daniel. Wrote: We have this fixed in beta version(not store one).
Very nice
Done is better than perfect