﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
21916,Twenty Twelve: Respond Form (input and textarea),emiluzelac,lancewillett,"Before submission I tried looking around and could not find anything related, that's why I am creating a ticket. 
In case that somehow this was overlooked, I apologize and feel free to close.

Anyways, don't know commands to submit a patch so here's my report:

Respond form is set to 96% and that's good on desktops, however it's not on smaller screens such as 
< 768


{{{
#respond form input[type=""text""], 
#respond form textarea {
    width:96%;
}
}}}

Right side of the textarea is cut-off, including the inputs.

Changing width to at least 92% would fix this in all screens, including the 240.

{{{
#respond form input[type=""text""], 
#respond form textarea {
    width:92%;
}
}}}

But this was kind of lame, so here's what I ended up with: (final recommendation)

{{{
#respond form input[type=""text""], 
#respond form textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width:100%;
}
}}}

In case that this was already fixed and if you guys didn't include box-sizing, I would highly recommended.

Mac OS X with the latest version of Chrome.

P.S. [http://paulirish.com/2012/box-sizing-border-box-ftw/ FYI] I doubt, but in case that anyone needs more details.

Thanks,
Emil",defect (bug),closed,normal,3.5,Bundled Theme,,normal,fixed,has-patch,
