issue #1378 add Activity tab in user manager

This commit is contained in:
MatthieuLP
2021-04-09 09:34:01 +02:00
committed by plegall
parent d784822664
commit ec4d677cf7
11 changed files with 1394 additions and 8 deletions
+79
View File
@@ -5120,3 +5120,82 @@ color:#FF7B00;
.user-property-input.user-property-input-password:hover {
background-color: #f0f0f0;
}
/* Activity Tab in user manager */
.select-user {
background: #fafafa;
height: 50%;
display: flex;
align-items: center;
padding: 0 20px;
box-shadow: 0px 2px 4px #00000024;
border-radius: 5px;
}
.start-date,
.end-date {
padding: 5px 10px;
background: #eaeaea;
border-radius: 50px;
margin: 5px;
white-space: nowrap;
}
.acivity-time-text {
font-size: 13px;
font-weight: bold;
}
.line {
background: #fafafa;
box-shadow: 0px 2px 4px #00000024;
display: flex;
flex-direction: row;
height: 40px;
align-items: center;
margin-bottom: 10px;
}
.line .detail-item {
background: #f0f0f0f0;
margin: 0 10px 0 0;
padding: 3px 6px;
border-radius: 20px;
max-width: 120px;
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
cursor: default;
white-space: nowrap;
}
.download_csv {
margin-left: auto;
height: 25px;
width: 30px;
background: #dddddd;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
color:black;
cursor: pointer;
border-radius: 5px;
}
.download_csv:hover {
background: #aaaaaa;
color: black;
}