Merge pull request #57 from owncloud/settings-beautify

more elegant style for Personal and Admin settings, also for Documents
pull/1/head
VicDeo 11 years ago
commit f9d13ab5c2

@ -1,7 +1,7 @@
<fieldset class="personalblock" id="documents-personal">
<legend><strong><?php p($l->t('Documents')); ?></strong></legend>
<h2><?php p($l->t('Documents')); ?></h2>
<div>
<label for="documents-default-path"><strong><?php p($l->t('Save new documents to')) ?></strong></label>
<label for="documents-default-path"><?php p($l->t('Save new documents to')) ?></label>
<input type="text" id="documents-default-path" value="<?php p($_['savePath']) ?>" /><span class="msg"></span>
</div>
</fieldset>
</fieldset>

@ -1,18 +1,12 @@
<fieldset class="personalblock" id="documents">
<legend><strong><?php p($l->t('Documents')) ?></strong></legend>
<table class="nostyle">
<tbody><tr>
<td>
<input id="webodf-unstable" type ="checkbox"
<?php if ($_['unstable'] === 'true'){ ?>
checked="checked"
<?php } ?>
/>
<label for="webodf-unstable">
<?php p($l->t('Advanced feature-set'))?>&nbsp;
<?php p($l->t('(Unstable)')); ?>
</label>
</td>
</tr>
</tbody></table>
<h2><?php p($l->t('Documents')) ?></h2>
<input id="webodf-unstable" type ="checkbox"
<?php if ($_['unstable'] === 'true'){ ?>
checked="checked"
<?php } ?>
/>
<label for="webodf-unstable">
<?php p($l->t('Advanced feature-set'))?>&nbsp;
<?php p($l->t('(Unstable)')); ?>
</label>
</fieldset>

Loading…
Cancel
Save