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

styled-icons.js.org - Horizontal scrolls on cards #39236

Open
VictorRMA opened this issue Sep 3, 2019 · 4 comments
Open

styled-icons.js.org - Horizontal scrolls on cards #39236

VictorRMA opened this issue Sep 3, 2019 · 4 comments
Labels
browser-firefox engine-gecko The browser uses the Gecko rendering engine priority-normal severity-important A non-core broken piece of functionality, not behaving the way you would expect.
Milestone

Comments

@VictorRMA
Copy link

URL: https://styled-icons.js.org/?s=github

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

Problem type: Design is broken
Description: Horizontal scrolls on cards
Steps to Reproduce:
Just opened the site
Screenshot Description

Browser Configuration
  • mixed active content blocked: false
  • image.mem.shared: true
  • buildID: 20190830040415
  • tracking content blocked: false
  • gfx.webrender.blob-images: true
  • hasTouchScreen: false
  • mixed passive content blocked: false
  • gfx.webrender.enabled: false
  • gfx.webrender.all: false
  • channel: aurora

Console Messages:

[{u'log': [u'onmozfullscreenchange is deprecated.'], u'level': u'warn', u'uri': u'https://styled-icons.js.org/?s=github', u'pos': u'0:0'}, {u'log': [u'onmozfullscreenerror is deprecated.'], u'level': u'warn', u'uri': u'https://styled-icons.js.org/?s=github', u'pos': u'0:0'}]

From webcompat.com with ❤️

@webcompat-bot webcompat-bot added this to the needstriage milestone Sep 3, 2019
@webcompat-bot webcompat-bot added browser-firefox engine-gecko The browser uses the Gecko rendering engine labels Sep 3, 2019
@softvision-sergiulogigan softvision-sergiulogigan changed the title styled-icons.js.org - design is broken styled-icons.js.org - Horizontal scrolls on cards Sep 5, 2019
@softvision-sergiulogigan softvision-sergiulogigan added priority-normal severity-important A non-core broken piece of functionality, not behaving the way you would expect. labels Sep 5, 2019
@softvision-sergiulogigan

Thanks for the report!
I'm able to reproduce the issue.

Tested with:
Browser / Version: Firefox Nightly 71.0a1 (2019-09-04)
Operating System: Windows 10 Pro

Moving to Needsdiagnosis.

@karlcow
Copy link
Member

karlcow commented Sep 9, 2019

to note that the scroll is the intent of the author.

code {
	display: block;
	margin: 0px auto;
	white-space: pre;
	padding: 12px;
	text-align: left;
	color: rgb(255, 255, 255);
	overflow-x: scroll;
}

The why the scrollbars appears on windows is probably due to a system difference. On macos, my setting is autohide. So I never see the scrollbar until the moment I scroll.

It could be fixed by doing

code {
	display: block;
	margin: 0px auto;
	/* white-space: pre; */
	padding: 12px;
	text-align: left;
	color: rgb(255, 255, 255);
	overflow-x: scroll;

	white-space: pre-wrap;
}

but the simplest way to fix it is probably

code {
	display: block;
	margin: 0px auto;
	white-space: pre;
	padding: 12px;
	text-align: left;
	color: rgb(255, 255, 255);
	overflow-x: auto;
}

@karlcow karlcow modified the milestones: needsdiagnosis, needscontact Sep 9, 2019
@softvision-oana-arbuzov
Copy link
Member

The issue is still reproducible on my side.
image

Tested with:
Browser / Version: Firefox Nightly 72.0a1 (2019-11-25)
Operating System: Windows 10 Pro

@softvision-oana-arbuzov
Copy link
Member

This is still an issue.
image

Tested with:
Browser / Version: Firefox Nightly 103.0a1 (2022-06-05)
Operating System: Windows 10 Pro

Reopening it.

[inv_23/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-important A non-core broken piece of functionality, not behaving the way you would expect.
Projects
None yet
Development

No branches or pull requests

5 participants