Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

User management layout improvements #1777

Merged
merged 2 commits into from
Oct 18, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 30 additions & 10 deletions settings/css/settings.css
Original file line number Diff line number Diff line change
Expand Up @@ -184,17 +184,23 @@ table.nostyle td { padding: 0.2em 0; }
height: 44px;
}
#newgroupname {
margin: 6px;
width: 95%;
padding-right: 32px;
box-sizing: border-box
margin: 0;
width: 100%;
padding: 12px 40px 12px 12px;
box-sizing: border-box;
background-color: transparent;
border: none;
border-bottom: 1px solid #eee;
border-radius: 0;
}
#newgroup-form .button {
position: absolute;
right: 0;
top: 3px;
height: 32px;
width: 32px;
top: 0;
padding: 10px 20px;
background-color: transparent;
border: none;
opacity: .5;
}

.isgroup .groupname {
Expand Down Expand Up @@ -239,8 +245,17 @@ table.grid {
width: 100%;
}

table.grid th { height:2em; color:#999; }
table.grid th, table.grid td { border-bottom:1px solid #ddd; padding:0 .5em; padding-left:.8em; text-align:left; font-weight:normal; }
table.grid th {
height: 2em;
color: #999;
}
table.grid th, table.grid td {
border-bottom: 1px solid #eee;
padding: 0 .5em;
padding-left: .8em;
text-align: left;
font-weight: normal;
}
td.name, td.password { padding-left:.8em; }
td.password>img,td.displayName>img, td.remove>a, td.quota>img { visibility:hidden; }
td.password, td.quota, td.displayName { width:12em; cursor:pointer; }
Expand All @@ -260,7 +275,12 @@ span.usersLastLoginTooltip { white-space: nowrap; }

/* because of accessibility the name cell is <th> - therefore we enforce the black color */
#userlist th.name {
color: #000000;
color: #000;
}

/* use same height as in files app */
#userlist tr {
height: 51px;
}

#userlist .mailAddress .loading-small {
Expand Down
2 changes: 1 addition & 1 deletion settings/templates/users/part.grouplist.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</li>
<li id="newgroup-form" style="display: none">
<form>
<input type="text" id="newgroupname" placeholder="<?php p($l->t('Group')); ?>..." />
<input type="text" id="newgroupname" placeholder="<?php p($l->t('Group name')); ?>" />
<input type="submit" class="button icon-add" value="" />
</form>
</li>
Expand Down