From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7397 invoked by alias); 6 Oct 2011 22:06:42 -0000 Received: (qmail 7387 invoked by uid 22791); 6 Oct 2011 22:06:42 -0000 X-SWARE-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 06 Oct 2011 22:06:28 +0000 From: "jg at jguk dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug web/50642] New: onlinedocs formated text too small to read Date: Thu, 06 Oct 2011 22:06:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: web X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jg at jguk dot org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2011-10/txt/msg00391.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50642 Bug #: 50642 Summary: onlinedocs formated text too small to read Classification: Unclassified Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: web AssignedTo: unassigned@gcc.gnu.org ReportedBy: jg@jguk.org Discussed on the mailing list: http://gcc.gnu.org/ml/gcc/2011-07/msg00106.html 8 Jul 2011: Hello I'm using latest Firefox looking at the onlinedocs with a default Firefox install, default font sizes, no change in zoom level. http://gcc.gnu.org/onlinedocs/gcc/Variable-Attributes.html The monospace text is tiny, e.g.:
          struct foo { int x[2]
__attribute__ ((aligned (8))); };
     
The fix is pretty easy, just change the embedded CSS that is generated: pre.smallexample { font-size:smaller } I propose this be changed to: pre.smallexample { font-size:normal } Note: There are some other CSS tags with "smaller", but they are unused on that page, perhaps worth checking if the others are used in other files and can be changed to "normal" as well. I'm not on the mailing list, so please keep my email address in any replies. Thanks, Jon