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

GUI styling fixes. Theme thumbnail preview corrected on missing preview images.

This commit is contained in:
Cameron
2017-02-01 08:54:28 -08:00
parent 1a0907368c
commit 30092ef372
10 changed files with 130 additions and 81 deletions

View File

@@ -797,7 +797,7 @@ class poll
<tr>
<td style='width:30%'><div class='normaltext'>".POLLAN_3.":</div></td>
<td style='width:70%'>
<input class='tbox input-xxlarge' type='text' name='poll_title' size='70' value='".$tp->post_toForm(varset($_POST['poll_title']))."' maxlength='200' />";
<input class='tbox input-xxlarge form-control' type='text' name='poll_title' size='70' value='".$tp->post_toForm(varset($_POST['poll_title']))."' maxlength='200' />";
$option_count = (varset($_POST['poll_option']) && count($_POST['poll_option']) ? count($_POST['poll_option']) : 2);
@@ -809,7 +809,7 @@ class poll
for($count = 1; $count <= $option_count; $count++)
{
$opt = ($count==1) ? "id='pollopt'" : "";
$text .="<span class='form-inline' style='display:inline-block; padding-bottom:5px' {$opt}><input class='tbox input-large' type='text' name='poll_option[]' size='40' value=\"".$tp->post_toForm($_POST['poll_option'][($count-1)])."\" maxlength='200' />";
$text .="<span class='form-inline' style='display:inline-block; padding-bottom:5px' {$opt}><input class='tbox input-large form-control' type='text' name='poll_option[]' size='40' value=\"".$tp->post_toForm($_POST['poll_option'][($count-1)])."\" maxlength='200' />";
$text .= "</span><br />";
}