resolve conflicts while picking c0fb623

This commit is contained in:
raghunayyar 2014-01-26 20:51:29 +05:30 committed by Arthur Schiwon
parent f0e69b2b99
commit 0663d954e6
3 changed files with 48 additions and 30 deletions

View File

@ -309,7 +309,7 @@ input[type="submit"].enabled {
position: fixed; position: fixed;
top:45px; top:45px;
right: 0; right: 0;
left: 0; left:380px;
height: 44px; height: 44px;
width: 100%; width: 100%;
padding: 0; padding: 0;
@ -320,9 +320,6 @@ input[type="submit"].enabled {
} }
/* account for shift of controls bar due to app navigation */ /* account for shift of controls bar due to app navigation */
#body-user #controls, #body-user #controls,
#body-settings #controls {
padding-left: 80px;
}
#controls .button, #controls .button,
#controls button, #controls button,
#controls input[type='submit'], #controls input[type='submit'],

View File

@ -57,7 +57,6 @@ tr:hover>td.password>span, tr:hover>td.displayName>span { margin:0; cursor:point
tr:hover>td.remove>a, tr:hover>td.password>img,tr:hover>td.displayName>img, tr:hover>td.quota>img { visibility:visible; cursor:pointer; } tr:hover>td.remove>a, tr:hover>td.password>img,tr:hover>td.displayName>img, tr:hover>td.quota>img { visibility:visible; cursor:pointer; }
tr:hover>td.remove>a { float:right; } tr:hover>td.remove>a { float:right; }
table.grid { width:100%; }
div.quota { div.quota {
float: right; float: right;
display: block; display: block;

View File

@ -14,30 +14,29 @@ unset($items['admin']);
$_['subadmingroups'] = array_flip($items); $_['subadmingroups'] = array_flip($items);
?> ?>
<div id="controls"> <!-- THE APP NAVIGATION LEFT CONTENT AREA -->
<form id="newuser" autocomplete="off"> <div id="app-navigation">
<input id="newusername" type="text" placeholder="<?php p($l->t('Login Name'))?>" /> <input <ul>
type="password" id="newuserpassword" <!-- Add new group -->
placeholder="<?php p($l->t('Password'))?>" /> <select <li>
class="groupsselect" <input type="text" placeholder="<?php p($l->t('Group')); ?>..." />
id="newusergroups" data-placeholder="groups" <button><?php p($l->t('Add')); ?></button>
title="<?php p($l->t('Groups'))?>" multiple="multiple"> </li>
<?php foreach($_["groups"] as $group): ?> <!-- Everyone -->
<option value="<?php p($group['name']);?>"><?php p($group['name']);?></option> <li>
<?php endforeach;?> <a href="#"><?php p($l->t('Everyone')); ?></a>
</select> <input type="submit" value="<?php p($l->t('Create'))?>" /> </li>
</form> <!--List of Groups-->
<?php if((bool)$_['recoveryAdminEnabled']): ?> <?php foreach($_["groups"] as $group): ?>
<div class="recoveryPassword"> <li>
<input id="recoveryPassword" <a href="#"><?php p($group['name']);?></a>
type="password" </li>
placeholder="<?php p($l->t('Admin Recovery Password'))?>" <?php endforeach; ?>
title="<?php p($l->t('Enter the recovery password in order to recover the users files during password change'))?>" </ul>
alt="<?php p($l->t('Enter the recovery password in order to recover the users files during password change'))?>"/> <!-- Default storage -->
</div> <div class="app-settings">
<?php endif; ?> <div class="quota">
<div class="quota"> <span><?php p($l->t('Default Storage'));?></span>
<span><?php p($l->t('Default Storage'));?></span>
<?php if((bool) $_['isadmin']): ?> <?php if((bool) $_['isadmin']): ?>
<select class='quota' data-inputtitle="<?php p($l->t('Please enter storage quota (ex: "512 MB" or "12 GB")')) ?>"> <select class='quota' data-inputtitle="<?php p($l->t('Please enter storage quota (ex: "512 MB" or "12 GB")')) ?>">
<option <option
@ -73,9 +72,32 @@ $_['subadmingroups'] = array_flip($items);
</option> </option>
</select> </select>
<?php endif; ?> <?php endif; ?>
</div>
</div> </div>
</div> </div>
<div id="controls">
<form id="newuser" autocomplete="off">
<input id="newusername" type="text" placeholder="<?php p($l->t('Login Name'))?>" /> <input
type="password" id="newuserpassword"
placeholder="<?php p($l->t('Password'))?>" /> <select
class="groupsselect"
id="newusergroups" data-placeholder="groups"
title="<?php p($l->t('Groups'))?>" multiple="multiple">
<?php foreach($_["groups"] as $group): ?>
<option value="<?php p($group['name']);?>"><?php p($group['name']);?></option>
<?php endforeach;?>
</select> <input type="submit" value="<?php p($l->t('Create'))?>" />
</form>
<?php if((bool)$_['recoveryAdminEnabled']): ?>
<div class="recoveryPassword">
<input id="recoveryPassword"
type="password"
placeholder="<?php p($l->t('Admin Recovery Password'))?>"
title="<?php p($l->t('Enter the recovery password in order to recover the users files during password change'))?>"
alt="<?php p($l->t('Enter the recovery password in order to recover the users files during password change'))?>"/>
</div>
<?php endif; ?>
</div>
<table class="hascontrols grid" data-groups="<?php p(json_encode($allGroups));?>"> <table class="hascontrols grid" data-groups="<?php p(json_encode($allGroups));?>">
<thead> <thead>
<tr> <tr>