[issue10936] Simple CSS fix for left margin at docs.python.org

2020-10-30 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.8, Python 3.9 -Python 2.7, Python 3.2, Python 3.3, Python 3.4 ___ Python tracker ___

[issue10936] Simple CSS fix for left margin at docs.python.org

2019-05-31 Thread Chirag Garg
Chirag Garg added the comment: Yes, it is creating a vision problem as the text is creating a problem. And the CSS script of @cdunn2001 is correct also there is a need to change the navigation bar. -- nosy: +codevil_2o ___ Python tracker

[issue10936] Simple CSS fix for left margin at docs.python.org

2012-10-26 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- versions: +Python 3.4 -Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10936 ___ ___

[issue10936] Simple CSS fix for left margin at docs.python.org

2011-03-11 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: There's #4965 for that. Last time I tried there was some problem with it, maybe I'll try again in future. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10936

[issue10936] Simple CSS fix for left margin at docs.python.org

2011-01-21 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. fdr...@acm.org added the comment: On Fri, Jan 21, 2011 at 2:58 AM, Christopher Dunn rep...@bugs.python.org wrote: For narrow-width screens, there really shouldn't be a sidebar. Maybe a dynamic element would be better. Right. I'd be in favor of removing the sidebar and

[issue10936] Simple CSS fix for left margin at docs.python.org

2011-01-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Also, laptops and handheld devices have a limited screen size. -1 on a pop-up, for obvious usability reasons. -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org

[issue10936] Simple CSS fix for left margin at docs.python.org

2011-01-21 Thread Christopher Dunn
Christopher Dunn cdunn2...@gmail.com added the comment: @eric.araujo: Not a 'pop-up', that you would have to click to close. But something dynamic, based on mouse location. -- ___ Python tracker rep...@bugs.python.org

[issue10936] Simple CSS fix for left margin at docs.python.org

2011-01-21 Thread Christopher Dunn
Christopher Dunn cdunn2...@gmail.com added the comment: I was just trying to help fix the CSS, and I think I've done that. If we're reconsidering the behavior of the nav sidebar, then I'd like to point out that if you're far down the page, the sidebar is blank to your right. From a usability

[issue10936] Simple CSS fix for left margin at docs.python.org

2011-01-20 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: If the width is specified with a percentage, a min-width should be specified too. In the py3k doc the sidebar can be collapsed though, so I'm not sure it's worth changing this. Georg? -- keywords: +easy stage: - needs patch

[issue10936] Simple CSS fix for left margin at docs.python.org

2011-01-20 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. fdr...@acm.org added the comment: As Ezio noted, the coming versions of the Python 3 documentation provide a way to collapse the sidebar completely. Perhaps a min-width should be specified, but I'm not convinced that's a good idea. The sidebar problem is fairly significant,

[issue10936] Simple CSS fix for left margin at docs.python.org

2011-01-20 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: The min-width is necessary in case the CSS is changed to resize the sidebar dynamically. If it gets too narrow it would start getting unusable and the text will start overflowing. Possible alternatives are: 1) use a percentage and

[issue10936] Simple CSS fix for left margin at docs.python.org

2011-01-20 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. fdr...@acm.org added the comment: On Thu, Jan 20, 2011 at 11:18 PM, Ezio Melotti rep...@bugs.python.org wrote: If it gets too narrow it would start getting unusable and the text will start overflowing. If someone is zooming that much, it's because they really need the size

[issue10936] Simple CSS fix for left margin at docs.python.org

2011-01-20 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: I did some tests using 20% instead of 230px and found the following problems: 1) while zooming, even if the width of the sidebar doesn't change, the font size does, overflowing from the sidebar; 2) min-width can't be used because the width

[issue10936] Simple CSS fix for left margin at docs.python.org

2011-01-20 Thread Christopher Dunn
Christopher Dunn cdunn2...@gmail.com added the comment: I see what @ezio means about the apparent overflow when the bodywrapper left margin is at 20%. (It's not really overflow, since the sidebar is actually the width of the screen.) How about this change to basic.css? 44 div.sphinxsidebar {

[issue10936] Simple CSS fix for left margin at docs.python.org

2011-01-20 Thread Christopher Dunn
Christopher Dunn cdunn2...@gmail.com added the comment: For narrow-width screens, there really shouldn't be a sidebar. Maybe a dynamic element would be better. Could it unhide and overlap the main body with a click or mouse-over? Then the main body could take the full screen width. Just an

[issue10936] Simple CSS fix for left margin at docs.python.org

2011-01-18 Thread Christopher Dunn
New submission from Christopher Dunn cdunn2...@gmail.com: This is an easy one. When I zoom my browser in (with Ctrl+ or Apple+) the left-side navigation margin gets bigger and bigger, pushing the useful text off the screen. That has bothered me (and anyone else with 40+ year old eyes) ever

[issue10936] Simple CSS fix for left margin at docs.python.org

2011-01-18 Thread Brian Curtin
Changes by Brian Curtin cur...@acm.org: -- nosy: +ezio.melotti, georg.brandl ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10936 ___ ___