1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-26 07:22:34 +00:00

['Activities'] redesigned it: offer 2 nav tabs 'All Activities' & 'My Activities'; offer 'Modified by' user filter (#5747)

This commit is contained in:
llj
2023-11-09 12:25:22 +08:00
committed by GitHub
parent 6d9ecc6fa9
commit d12a619e5f
9 changed files with 604 additions and 298 deletions

View File

@@ -9,3 +9,56 @@
display: inline-block;
margin-bottom: .2em;
}
.activity-modifier:hover {
background: #f5f5f5;
cursor: pointer;
}
.activity-modifier .toggle-icon {
color: #999;
}
.activity-modifier-selector-container {
width: 320px;
background: #fff;
border: 1px solid #e8e8e8;
margin-top: 2px;
z-index: 2;
}
.activity-selected-modifiers {
min-height: 2rem;
background: #f6f6f6;
border-bottom: 1px solid #dde2ea;
}
.activity-selected-modifier {
display: inline-flex;
align-items: center;
margin-right: 10px;
padding: 0 8px 0 2px;
border-radius: 10px;
background: #eaeaea;
}
.unselect-activity-user {
color: #909090;
cursor: pointer;
}
.unselect-activity-user:hover {
color: #5a5a5a;
}
.activity-user-list {
min-height: 4rem;
}
.activity-user-item {
cursor: pointer;
}
.activity-user-item:hover {
background: #f5f5f5;
}