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

Unnecessary horizontal scrollbar in settings module #4466

Closed
netcoop opened this issue Jan 2, 2014 · 3 comments
Closed

Unnecessary horizontal scrollbar in settings module #4466

netcoop opened this issue Jan 2, 2014 · 3 comments
Labels
Bug For errors / faults / flaws / inconsistencies etc. duplicate For issues that already existed in our issue tracker and were reported previously.

Comments

@netcoop
Copy link

netcoop commented Jan 2, 2014

Most pages under 'settings' show an unnecessary and ugly horizontal scrollbar at the bottom of the screen, tested in Chrome and Firefox (In Chrome always, in FF only when the screen is less than about 1500px wide, but still).

This is caused by the -15px in this CSS:
.admin h2 { margin: 15px -15px 20px 0; }

It makes the h2 stick out of the window. If the -15px has to stay, then it can be fixed by:
body { margin-right: 15px; }

@netcoop
Copy link
Author

netcoop commented Jan 2, 2014

hmmm, body also affects dashboard etc. (of course), better solve it like this:
#content.admin {
..
margin: 0 15px 0 260px;
}
add the 15px as margin-right there.

@hpvd
Copy link

hpvd commented Jan 2, 2014

I think it's a dublicate ticket from
#4423

@mattab
Copy link
Member

mattab commented Jan 3, 2014

see #4423

This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug For errors / faults / flaws / inconsistencies etc. duplicate For issues that already existed in our issue tracker and were reported previously.
Projects
None yet
Development

No branches or pull requests

3 participants