See how big this is compared to title and project information?

Font size in 'description' is much bigger

Since I'm probably one of 40 people using Firefox 4 beta, this is not that concerning atm. ;) But it's a little odd.

Comments

TR’s picture

Title: Firefox 4: Font size in description field is inconsistent. » Font size in new issue description field is inconsistent.

I see the same thing in Firefox 3.6.11 under Ubuntu 9.10 and Firefox 3.6.10 under Ubuntu 10.04.

The problem is not confined to the Description textarea which you see when posting a new issue - the Comment textarea that I'm typing in right now to reply to an existing issue has the same huge font ...

Adding font-size:100%; to the textarea rule seems to fix both problems:

html.js .resizable-textarea textarea {
  display:block;
  margin-bottom:0;
  width:100%;
  font-size:100%;
}
drumm’s picture

Title: Font size in new issue description field is inconsistent. » Font size in textareas is inconsistent
Priority: Minor » Normal

This has the opposite problem in Safari, #1046838: Text size in the form submission box is too small!! (Safari). The root cause is reset.css. We use Meyer's 1.0 reset. It sets a lot of elements to font-size: 100%, but explicitly doesn't interfere with form elements.

Can anyone do browser testing to see if adding

textarea {
  font-size: 100%;
}

works well on Safari and IE 7+?

mgifford’s picture

I can't seem to Update this issue. No idea why. However, I tested this and it works fine in Safari. I haven't tested the solution in IE7 however.

drumm’s picture

Version: » 7.x-2.x-dev
Issue summary: View changes

  • drumm committed f44f13b on 7.x-2.x, dev
    Issue #945624: Make font size in textareas consistent
    
drumm’s picture

Assigned: Unassigned » drumm
Status: Active » Fixed

Textareas are now 1em everywhere. (And 1.2em on smaller screens, which is existing behavior.)

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.