improved design for group quest management
This commit is contained in:
parent
604c4898cc
commit
3d7ed9c8e1
3 changed files with 10 additions and 2 deletions
|
|
@ -45,7 +45,7 @@
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<label for="charactergroupsgroupname"><?=_('Name')?>:</label>
|
<label for="charactergroupsgroupname"><?=_('Name')?>:</label>
|
||||||
<input type="text" name="charactergroupsgroupname" placeholder="<?=_('Name')?>" title="<?=_('Name')?>" required="required" maxlength="<?=$validationSettings['charactergroupsgroupname']['maxlength']?>" value="<?=$charactergroupsgroupname?>" <?=(array_key_exists('charactergroupsgroupname', $validation)) ? 'class="invalid"' : null?> /><br />
|
<input type="text" name="charactergroupsgroupname" placeholder="<?=_('Name')?>" title="<?=_('Name')?>" required="required" maxlength="<?=$validationSettings['charactergroupsgroupname']['maxlength']?>" value="<?=$charactergroupsgroupname?>" <?=(array_key_exists('charactergroupsgroupname', $validation)) ? 'class="invalid"' : null?> /><br />
|
||||||
<input type="checkbox" id="preferred" name="preferred" <?php if($preferred) : ?>checked="checked"<?php endif ?> /><label for="preferred"><?=_('preferred')?></label>
|
<div class="inlbl"><input type="checkbox" id="preferred" name="preferred" <?php if($preferred) : ?>checked="checked"<?php endif ?> /><label for="preferred"><?=_('preferred')?></label></div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<input type="submit" name="create" value="<?=_('create')?>" />
|
<input type="submit" name="create" value="<?=_('create')?>" />
|
||||||
</form>
|
</form>
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<label for="charactergroupsgroupname"><?=_('Name')?>:</label>
|
<label for="charactergroupsgroupname"><?=_('Name')?>:</label>
|
||||||
<input type="text" name="charactergroupsgroupname" placeholder="<?=_('Name')?>" title="<?=_('Name')?>" required="required" maxlength="<?=$validationSettings['charactergroupsgroupname']['maxlength']?>" value="<?=$charactergroupsgroupname?>" <?=(array_key_exists('charactergroupsgroupname', $validation)) ? 'class="invalid"' : null?> /><br />
|
<input type="text" name="charactergroupsgroupname" placeholder="<?=_('Name')?>" title="<?=_('Name')?>" required="required" maxlength="<?=$validationSettings['charactergroupsgroupname']['maxlength']?>" value="<?=$charactergroupsgroupname?>" <?=(array_key_exists('charactergroupsgroupname', $validation)) ? 'class="invalid"' : null?> /><br />
|
||||||
<input type="checkbox" id="preferred" name="preferred" <?php if($preferred) : ?>checked="checked"<?php endif ?> /><label for="preferred"><?=_('preferred')?></label>
|
<div class="inlbl"><input type="checkbox" id="preferred" name="preferred" <?php if($preferred) : ?>checked="checked"<?php endif ?> /><label for="preferred"><?=_('preferred')?></label></div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<input type="submit" name="edit" value="<?=_('edit')?>" />
|
<input type="submit" name="edit" value="<?=_('edit')?>" />
|
||||||
</form>
|
</form>
|
||||||
|
|
|
||||||
|
|
@ -168,8 +168,13 @@ input[type="submit"][disabled]{text-shadow:1px 2px #d48c4e;background:#f9ac69;bo
|
||||||
.logreg{margin:15px 0;width:auto;display:inline-block;padding:15px 20px;background:#eae8e4;border-radius:3px}
|
.logreg{margin:15px 0;width:auto;display:inline-block;padding:15px 20px;background:#eae8e4;border-radius:3px}
|
||||||
.logreg label{display:block;font-size:.875em}
|
.logreg label{display:block;font-size:.875em}
|
||||||
.logreg input{margin:5px 0 15px}
|
.logreg input{margin:5px 0 15px}
|
||||||
|
.logreg textarea,.logreg select{width:100%;margin:5px 0 15px;-webkit-box-sizing: border-box;-moz-box-sizing:border-box;box-sizing:border-box}
|
||||||
|
.logreg textarea{height:150px}
|
||||||
.logreg .cta{display:block}
|
.logreg .cta{display:block}
|
||||||
|
|
||||||
|
.inlbl input{display:inline;margin:0 10px 0 0}
|
||||||
|
.inlbl label{display:inline}
|
||||||
|
|
||||||
.front{margin-top:0}
|
.front{margin-top:0}
|
||||||
.front label,.front input,.front .cta{display:inline;margin:0;vertical-align:middle}
|
.front label,.front input,.front .cta{display:inline;margin:0;vertical-align:middle}
|
||||||
.front label{margin-right:10px}
|
.front label{margin-right:10px}
|
||||||
|
|
@ -191,6 +196,9 @@ input[type="submit"][disabled]{text-shadow:1px 2px #d48c4e;background:#f9ac69;bo
|
||||||
.avatar li{display:inline-block;margin-right:5px;text-align:center}
|
.avatar li{display:inline-block;margin-right:5px;text-align:center}
|
||||||
.avatar img{border-radius:3px}
|
.avatar img{border-radius:3px}
|
||||||
|
|
||||||
|
.invalid{background:#ebd3d3;color:#850000}
|
||||||
|
|
||||||
|
|
||||||
/** Character Profile **/
|
/** Character Profile **/
|
||||||
|
|
||||||
.cportrait img{max-width:100%;max-height:300px}
|
.cportrait img{max-width:100%;max-height:300px}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue