This commit is contained in:
pengxiaolong
2025-05-13 19:39:53 +08:00
parent 37da6765b8
commit c006a8e63d
1232 changed files with 96963 additions and 883 deletions

View File

@@ -0,0 +1,12 @@
.tui-contact-list-h5 {
.tui-contact-list-item {
.tui-contact-list-item-header {
cursor: none;
}
.tui-contact-list-item-header:active,
.tui-contact-list-item-main-item:active {
background-color: #eef0f3;
}
}
}

View File

@@ -0,0 +1,3 @@
@import './web';
@import './h5';
@import '../../../../assets/styles/common';

View File

@@ -0,0 +1,85 @@
.tui-contact-list {
flex: 1;
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
overflow-y: auto;
list-style: none;
&-item {
display: flex;
flex-direction: column;
&-header {
display: flex;
flex-direction: row;
font-size: 14px;
cursor: pointer;
user-select: none;
padding: 10px 15px;
justify-content: space-between;
&-left {
display: flex;
flex-direction: row;
align-items: center;
}
&-right {
display: flex;
justify-content: center;
align-items: center;
&-unread {
display: flex;
min-width: 10px;
width: fit-content;
padding: 0 2.5px;
height: 15px;
font-size: 10px;
text-align: center;
line-height: 15px;
border-radius: 7.5px;
background: red;
align-items: center;
justify-content: center;
color: #fff;
}
}
}
&-main {
padding: 0 15px !important;
&.hidden{
display: none;
}
&-item {
padding: 5px 0;
}
}
}
}
.tui-contact-search-list {
padding: 0 15px !important;
&-title {
font-size: 14px;
color: #999;
border-bottom: 1px solid #f4f5f9;
}
&-item {
padding: 5px 0;
}
&-default {
padding: 20px;
text-align: center;
font-size: 14px;
color: #999;
}
}