Skip to content
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

www.graficasolution.com - "Nos projets" section layout is broken #95687

Closed
webcompat-bot opened this issue Dec 4, 2021 · 5 comments
Closed
Labels
browser-firefox engine-gecko The browser uses the Gecko rendering engine priority-normal severity-critical The site or core functionality is unusable, or you would probably open another browser to use it.
Milestone

Comments

@webcompat-bot
Copy link

webcompat-bot commented Dec 4, 2021

URL: https://www.graficasolution.com/

Browser / Version: Firefox 94.0
Operating System: Windows 10
Tested Another Browser: Yes Chrome

Problem type: Design is broken
Description: Items are misaligned
Steps to Reproduce:
The project section is misaligned and images are not showing

View the screenshot Screenshot
Browser Configuration
  • None

From webcompat.com with ❤️

@webcompat-bot webcompat-bot added the action-needsmoderation The moderation has not yet been completed label Dec 4, 2021
@webcompat-bot webcompat-bot added this to the needstriage milestone Dec 4, 2021
@webcompat-bot webcompat-bot added the browser-fixme This requires manual assignment for the browser name label Dec 4, 2021
@webcompat-bot webcompat-bot changed the title In the moderation queue. www.graficasolution.com - design is broken Dec 6, 2021
@webcompat-bot webcompat-bot added browser-firefox engine-gecko The browser uses the Gecko rendering engine and removed browser-fixme This requires manual assignment for the browser name action-needsmoderation The moderation has not yet been completed labels Dec 6, 2021
@softvision-oana-arbuzov softvision-oana-arbuzov changed the title www.graficasolution.com - design is broken www.graficasolution.com - "Nos projets" section layout is broken Dec 6, 2021
@softvision-oana-arbuzov softvision-oana-arbuzov added the severity-critical The site or core functionality is unusable, or you would probably open another browser to use it. label Dec 6, 2021
@softvision-oana-arbuzov
Copy link
Member

Thanks for the report, I was able to reproduce the issue. "Nos projets" section layout is broken.
image

Note: The issue is not reproducible on Chrome.

Workaround: Resizing the windows the content is displayed correctly.

Tested with:
Browser / Version: Firefox Nightly 96.0a1 (2021-12-04), Firefox Release 94.0.2
Operating System: Windows 10 Pro

Moving to Needsdiagnosis for further investigation.

@karlcow
Copy link
Member

karlcow commented Dec 9, 2021

The design changes when the window is above or under 992px.

And indeed in

@media (min-width:992px) {

// set of rules defined in percentages.
// specifically 

}

but more specifically this rule:

.container-fluid .boldgrid-section, .container-fluid .boldgrid-section-group, .container-fluid .row, .container .row {
	margin-right: -15px;
	margin-left: -15px;
}

which comes from a bootstrap issue relying on a Blink and WebKit bug.
twbs/bootstrap#35277
https://bugs.chromium.org/p/chromium/issues/detail?id=1141209
https://bugs.webkit.org/show_bug.cgi?id=233956

It can be solved by adding to the CSS.

@media (min-width:992px) {
 .container {
  width:970px
 }
  .container .row.multi-columns-row {
    width: fit-content;
  } 
}

@karlcow karlcow modified the milestones: needsdiagnosis, needscontact Dec 9, 2021
@webcompat-bot
Copy link
Author

@dholbert
Copy link

dholbert commented May 9, 2022

I've landed a patch that fixes this issue in https://bugzilla.mozilla.org/show_bug.cgi?id=1745310 .

I've confirmed that this webcompat issue is still reproducible in Firefox 100, and is fixed in latest Firefox Nightly 102.

@ksy36 ksy36 removed the action-needssitepatch This web bug needs a GoFaster site patch. label May 25, 2022
@softvision-raul-bucata
Copy link

The issue has been fixed and it is no longer reproducible:

Screenshot_6

Tested with:

Browser / Version: Firefox Nightly 106.0a1 (2022-09-08) (64-bit)
Operating System: Windows 10 PRO x64

Closing this as FIXED

[inv_36/2022]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
browser-firefox engine-gecko The browser uses the Gecko rendering engine priority-normal severity-critical The site or core functionality is unusable, or you would probably open another browser to use it.
Projects
None yet
Development

No branches or pull requests

6 participants