This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug web/50642] New: onlinedocs formated text too small to read
- From: "jg at jguk dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Thu, 06 Oct 2011 22:06:26 +0000
- Subject: [Bug web/50642] New: onlinedocs formated text too small to read
- Auto-submitted: auto-generated
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.:
<pre class="smallexample"> struct foo { int x[2]
__attribute__ ((aligned (8))); };
</pre>
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