Add group editing of users from the user table

From the user table, you can now:
* Change the friendly name
* Toggle notifications
* Toggle keep history
* Purge all user history (as a group selection)
This commit is contained in:
Jonathan Wong 2015-08-23 04:32:42 -07:00
commit 0204478483
4 changed files with 201 additions and 24 deletions

View file

@ -418,6 +418,7 @@ input[type="color"],
webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
-moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
overflow: hidden;
}
.cover-face {
background-position: center;
@ -826,8 +827,6 @@ input[type="color"],
-ms-backface-visibility: hidden;
-o-backface-visibility: hidden;
backface-visibility: hidden;
width: auto;
height: 260px;
border: 1px solid rgba(128, 128, 128, 0.3);
}
.summary-content {
@ -1684,6 +1683,26 @@ input[type="color"],
.history-title .popover.right .popover-content {
padding: 5px 8px;
}
.edit-user-toggles {
padding-right: 10px;
}
.edit-user-toggles > input[type='checkbox'] {
display: none;
}
.edit-user-toggles > input[type='checkbox'] + label {
color: #444;
cursor: pointer;
}
.edit-user-toggles > input[type='checkbox']:checked + label {
color: #fff;
cursor: pointer;
}
.popover .popover-content {
color: #000;
}
#users-to-delete > li {
color: #e9a049;
}
#updatebar {
background-color: #444;
color: #999999;