Reply Box Pushed Out ?

Found this in the "quick_reply.css" in the template "conversation_view"

Code:
/*quick reply*/
 
.quickReply
{   
    @property "message";
    background-color: #181818;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-top: 1px solid #252525;
    border-right: 1px solid #252525;
    border-bottom: 1px solid #2e2e2e;
    border-left: 1px solid #252525;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4) inset;
    @property "/message";
}
 
{xen:helper clearfix, '.quickReply'}
 
.quickReply .replyPrompt em
{
    font-style: italic;
}
 
/* the quick reply form */
 
#QuickReply
{
    @property "messageInfo";
    padding: 0;
    margin-left: 140px;
    border-bottom: 1px none black;
    @property "/messageInfo";
}
 
#QuickReply textarea
{
    width: 100%;
    *width: 98%;
    height: 117px;
    box-sizing: border-box;
}
 
#QuickReply .submitUnit
{
    margin-top: 10px;
    text-align: right;
}
 
#QuickReply .AttachmentEditor
{
    padding-top: 10px;
}
 
Hmmm.... Can't figure this out. Instead of making the box smaller do you know how to make its box longer ?

I've been messing around and can't seem to find a way to make it longer, I'll let you know if I've figured it out though.

pushed-box-jpg.38532
 
I add
Code:
.forum_list .xenForoSkin .mceButton
{
    padding: 0px !important;
}

To "quick_reply.css"

It doesn't seem to do anything but if I add

Code:
.mceButton
{
    padding: 0px !important;
}

It works but changes the reply box on forums too
 
Top Bottom