Redesigned tables to use less CSS

Signed-off-by: Roman Schmerold (BNoiZe) <bnoize@froxlor.org>
This commit is contained in:
Roman Schmerold (BNoiZe)
2014-01-27 19:57:03 +01:00
parent ff06513115
commit c69a05efa5
96 changed files with 388 additions and 545 deletions

View File

@@ -8,17 +8,14 @@ $header
</h2>
</header>
<section class="tinyform bradius">
<section>
<form action="{$linker->getLink(array('section' => 'configfiles'))}" method="get" enctype="application/x-www-form-urlencoded">
<fieldset>
<legend>Froxlor&nbsp;-&nbsp;{$lng['admin']['configfiles']['serverconfiguration']}</legend>
<input type="hidden" name="s" value="$s" />
<input type="hidden" name="page" value="$page" />
<input type="hidden" name="s" value="$s" />
<input type="hidden" name="page" value="$page" />
<table class="formtable">
$distributions
</table>
</fieldset>
<table class="tiny center">
$distributions
</table>
</form>
</section>
</article>

View File

@@ -1,9 +1,6 @@
<tr>
<td><strong>{$distribution_details['label']}</strong></td>
<tr class="section">
<th><strong>{$distribution_details['label']}</strong></th>
</tr>
<tr>
<td>$services</td>
</tr>
<tr>
<td><br /></td>
</tr>

View File

@@ -1,4 +1,4 @@
{$service_details['label']}
<strong>{$service_details['label']}</strong>
<br />
<ul>
$daemons

View File

@@ -10,11 +10,11 @@ $header
</h2>
</header>
<section class="fullform bradius">
<table class="formtable">
<section>
<table class="full">
{$configpage}
<if $restart != ''>
<tr>
<tr class="section">
<th>{$lng['admin']['configfiles']['restart']}</th>
<tr>
<tr>
@@ -23,7 +23,7 @@ $header
</tr>
</if>
</table>
<br /><br />
<br />
</section>
</article>
$footer

View File

@@ -1,4 +1,4 @@
<tr>
<tr class="section">
<th>{$lng['admin']['configfiles']['commands']}</th>
</tr>
<tr>

View File

@@ -1,4 +1,4 @@
<tr>
<tr class="section">
<th>{$lng['admin']['configfiles']['files']}</th>
</tr>
<tr>

View File

@@ -8,14 +8,13 @@ $header
</h2>
</header>
<section class="tinyform bradius">
<section>
<form action="$filename" method="get" enctype="application/x-www-form-urlencoded">
<fieldset>
<legend>Froxlor&nbsp;-&nbsp;Wizard</legend>
<input type="hidden" name="s" value="$s" />
<input type="hidden" name="page" value="$page" />
<table class="formtable">
<table class="tiny center">
<tr>
<td><b>{$lng['admin']['configfiles']['distribution']}:</b></td>
<td><if $distribution != ''><input type="hidden" name="distribution" value="$distribution"/><a href="{$linker->getLink(array('section' => 'configfiles', 'page' => $page))}">{$configfiles[$distribution]['label']}</a><else><select id="config_distribution" name="distribution"><option value="choose">{$lng['admin']['configfiles']['choosedistribution']}</option>{$distributions_select}</select></if></td>