Edgewall Software

Opened 10 years ago

Last modified 10 years ago

#11607 closed defect

font is not valid in newer firefox versions — at Initial Version

Reported by: wuker@… Owned by:
Priority: normal Milestone: 0.12.6
Component: rendering Version: 1.0-stable
Severity: normal Keywords: firefox css
Cc: Jun Omae Branch:
Release Notes:
API Changes:
Internal Changes:

Description

in

htdocs/common/css/trac.css

there is a section

/* Forms */
input, textarea, select { margin: 2px }

which is missing a ; and there should be added a font-size definition, otherwise the font has the system-default fontsize, which can be really huge at a retina display (Hi-Resolution displays)

so It should look like

/* Forms */
input, textarea, select {
 margin: 2px;
 font-size:13px;
}

Change History (1)

by wuker@…, 10 years ago

Screenshot on a high resolution display

Note: See TracTickets for help on using tickets.