1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-11 17:14:42 +02:00

General Bootstrap3 styling fixes.

This commit is contained in:
Cameron
2015-01-30 02:48:54 -08:00
parent 968e9d8ee3
commit 5f61cf2ccb
6 changed files with 15 additions and 17 deletions

View File

@@ -223,7 +223,7 @@ else
{
$texta = (e_QUERY ? "\n<form id='chatbox' method='post' action='".e_SELF."?".e_QUERY."'>" : "\n<form id='chatbox' method='post' action='".e_SELF."'>");
}
$texta .= "<div class='control-group' id='chatbox-input-block'>";
$texta .= "<div class='control-group form-group' id='chatbox-input-block'>";
if(($pref['anon_post'] == "1" && USER == FALSE))
{
@@ -240,7 +240,7 @@ else
$oc = "";
}
$texta .= "
<textarea placeholder=\"".LAN_CHATBOX_100."\" required class='tbox chatbox input-xlarge' id='cmessage' name='cmessage' cols='20' rows='5' style='max-width:97%; ".($cb_width ? "width:".$cb_width.";" : '')." overflow: auto' onselect='storeCaret(this);' onclick='storeCaret(this);' onkeyup='storeCaret(this);'></textarea>
<textarea placeholder=\"".LAN_CHATBOX_100."\" required class='tbox chatbox form-control input-xlarge' id='cmessage' name='cmessage' cols='20' rows='5' style='max-width:97%; ".($cb_width ? "width:".$cb_width.";" : '')." overflow: auto' onselect='storeCaret(this);' onclick='storeCaret(this);' onkeyup='storeCaret(this);'></textarea>
<br />
<input class='btn btn-default button' type='submit' id='chat_submit' name='chat_submit' value='".CHATBOX_L4."' {$oc}/>
";