User management stuff

This commit is contained in:
tidusjar 2016-08-18 21:09:26 +01:00
commit ef58563fc4
6 changed files with 30 additions and 6 deletions

View file

@ -16,7 +16,8 @@
errorMessage: ""
};
$scope.selectUser = function(id) {
$scope.selectUser = function (id) {
$scope.selectedUser = {};
$scope.selectedUser = $scope.users.find(x => x.id === id);
}

View file

@ -341,3 +341,14 @@ label {
-webkit-box-shadow: 3px 3px 5px 6px #191919;
box-shadow: 3px 3px 5px 6px #191919; }
.img-circle {
border-radius: 50%; }
.user-management-menu {
border-style: ridge;
height: 100%;
left: 60%;
position: absolute;
width: 40%;
top: 7%; }

File diff suppressed because one or more lines are too long

View file

@ -430,3 +430,15 @@ $border-radius: 10px;
-webkit-box-shadow: 3px 3px 5px 6px #191919;
box-shadow: 3px 3px 5px 6px #191919;
}
.img-circle {
border-radius: 50%;
}
.user-management-menu {
border-style: ridge;
height: 100%;
left: 60%;
position: absolute;
width: 40%;
top: 7%;
}