Textarea padding

In the quick reply editor, there is no padding on the text-area. Can the CSS in ZetaBoards be edited to include such padding? The appropriate lines can be found in css.ccs:1045, appearing like so:

Code:
dl#fast-reply dd textarea {
    display: block;
    height: 100px;
    margin-bottom: 10px;
    padding: 0px;
    width: 98%;
}
The padding parameter would simply need to be updated to this:

Code:
dl#fast-reply dd textarea {
    display: block;
    height: 100px;
    margin-bottom: 10px;
    padding: 5px;
    width: 98%;
}
 
This is something we will likely add to our next feedback survey.

Personally, I'm not clear why we need padding in the fast reply box - it just seems like wasted space - but if people prefer it, we will look at adding it.
 
I like the quick reply as it is. Makes it easier for me to not look at what I'm writing. Seriously.
 
Back
Top