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.bet365.com - The Dropdown buttons are duplicated #7524

Closed
softvision-sergiulogigan opened this issue Jun 16, 2017 · 6 comments
Closed

www.bet365.com - The Dropdown buttons are duplicated #7524

softvision-sergiulogigan opened this issue Jun 16, 2017 · 6 comments

Comments

@softvision-sergiulogigan

URL: www.bet365.com
Browser / Version: Firefox Mobile Nightly 55.0a1 (2017-06-15)
Operating System: Samsung Galaxy S6 (Android 7.0) - 1440 x 2560 pixels (~577 ppi pixel density)
Problem type: Layout is messed up

Steps to Reproduce

  1. Navigate to: www.bet365.com
  2. Login with valid credentials.
  3. Tap the My Account button.
  4. Tap the Gear icon. Observe the Dropdown buttons.

Expected Behavior:
The Dropdown buttons are correctly displayed.

Actual Behavior:
The Dropdown buttons are duplicated.

Notes:

  1. The issue is also reproducible on Firefox 53.0 Release (Mobile).
  2. The issue is not reproducible on Chrome (Mobile) 58.0.3029.83.
  3. Screenshot attached.

Watchers:
@softvision-oana-arbuzov
@softvision-sergiulogigan

sv; country: in

Screenshot Description

From webcompat.com with ❤️

@softvision-sergiulogigan softvision-sergiulogigan changed the title www.bet365.com - layout is messed up www.bet365.com - The Dropdown buttons are duplicated Jun 16, 2017
@karlcow
Copy link
Member

karlcow commented Jun 21, 2017

This is a duplicate of -webkit-appearance: none probably. Let's see.

.mmm-PreferencesRow_List {
	width: 100%;
	border: 0;
	background-color: #ddd;
	font-size: 15px;
	color: #666;
	line-height: 20px;
	padding: 22px 11px 7px;
	margin-top: -22px;
	background-clip: content-box;
	-webkit-appearance: none;
	appearance: none;
}

yup. That's it. duplicate of https://bugzilla.mozilla.org/show_bug.cgi?id=1368555

@karlcow karlcow added this to the duplicate milestone Oct 30, 2017
@jwatt
Copy link

jwatt commented Jul 12, 2018

Maybe someone with an account for the site could double check that this site works in a Nightly build with the pref layout.css.webkit-appearance.enabled set to true?

@jwatt
Copy link

jwatt commented Jul 12, 2018

More specifically, I'd like to confirm that when run in Nightly the site is still broken when the pref layout.css.webkit-appearance.enabled set to false, but fixed when it's set to true.

@softvision-oana-arbuzov
Copy link
Member

softvision-oana-arbuzov commented Jul 13, 2018

@jwatt , the issue seems to be fixed regardless if layout.css.webkit-appearance.enabled is set to true or false.

screenshot-1531472291088

Tested with:
Browser / Version: Firefox Nightly 63.0a1 (2018-07-12)
Operating System: Huawei P10 (Android 7.0) - 1080 x 1920 pixels (~432 ppi pixel density),

@jwatt
Copy link

jwatt commented Jul 13, 2018

@softvision-oana-arbuzov Thank you!

@karlcow
Copy link
Member

karlcow commented Jul 27, 2018

This has been fixed because they added -moz-appearance: none;

.mmm-PreferencesRow_List {
	width: 100%;
	border: 0;
	background-color: #ddd;
	font-size: 15px;
	color: #666;
	line-height: 20px;
	padding: 22px 11px 7px;
	margin-top: -22px;
	-webkit-background-clip: content-box;
	background-clip: content-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

@webcompat-bot webcompat-bot modified the milestones: duplicate, fixed Jul 27, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants