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-conversation {
background: #fff;
}
.network {
&-content {
font-family: PingFangSC-Regular;
font-weight: 400;
color: #e54545;
letter-spacing: 0;
}
}

View File

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

View File

@@ -0,0 +1,107 @@
.tui-conversation {
width: 100%;
height: 100%;
flex: 1;
overflow: hidden;
display: flex;
flex-direction: column;
&-list {
overflow: auto;
}
}
.tui-conversation-header {
width: 100%;
position: relative;
.list {
display: flex;
align-items: center;
border-bottom: 1px solid #F4F5F9;
padding: 7px 0;
&-item {
flex: 1;
display: flex;
position: relative;
padding: 7px;
cursor: pointer;
user-select: none;
}
}
&-item{
flex: 1;
display: flex;
align-items: center;
&-title {
padding: 0 8px;
font-size: 16px;
font-weight: normal;
}
}
&-children {
position: absolute;
top: 100%;
z-index: 3;
padding: 7px 9px;
border-bottom: none;
background-color: #fff;
box-shadow: 0 3px 7px 0 #0003;
flex-direction: column;
}
}
.network {
padding: 0 12px;
display: flex;
align-items: center;
.icon-error{
display: flex;
justify-content: center;
align-items: center;
width: 15px;
height: 15px;
border-radius: 15px;
background: red;
color: #fff;
font-style: normal;
}
&-content {
padding: 5px;
font-size: 12px;
line-height: 22px;
}
}
.plus {
display: inline-block;
width: 30px;
height: 30px;
position: relative;
}
.plus::before,
.plus::after {
content: "";
position: absolute;
background-color: #232832;
border-radius: 0.5px;
width: 1px;
height: 14px;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
}
.plus::after {
transform: rotate(90deg);
width: 0.5px;
}