-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create repo page automatically scrolls down #16937
Comments
Is there some reliable way to get the partial rendered state? I tried with DevTools network throttling but it switches to regular layout too fast for me to pause the page. |
@silverwind Try disable .ui.grid>.column:only-child, .ui.grid>.row>.column:only-child {
/* width: 100%; */
} And this property is applied before it: .ui.grid>.column:not(.row),.ui.grid>.row>.column {
width:6.25%;
} |
Agree axifive. The problem is caused by mis-used fomantic layout. Old code:
The inner When Chrome is loading page, before I think the correct layout should be something like:
With |
Fomantic's grid system is incredibly hacky (negative margins everywhere and the width issue above during page load), I hope we can get rid of it eventually, but I'd be okay with doing a short-term fix now. I guess this won't be the only page with such an issue. |
Yes, I have the same feeling. Fomantic was born very early, so what it did was already the best it could do. Other pages may not be affected because only this page has a very long list. |
[x]
):Description
Noticed that when opening the repo create page it quickly shows breaking layout and then automatically scrolls down.
Screenshots
The text was updated successfully, but these errors were encountered: