165 lines
4.0 KiB
JavaScript
165 lines
4.0 KiB
JavaScript
import styled from "styled-components";
|
|
const StyledWrapper = styled.div`
|
|
display: flex;
|
|
height: 100%;
|
|
padding: 8px 48px 10px 0;
|
|
> .left {
|
|
background-color: #fff;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-width: 260px;
|
|
box-shadow: inset -1px 0px 0px rgba(0, 0, 0, 0.05);
|
|
height: 100%;
|
|
overflow: auto;
|
|
border-radius: 16px 0 0 16px;
|
|
.list {
|
|
margin: 12px 8px;
|
|
&.dms {
|
|
flex: 1;
|
|
}
|
|
.title {
|
|
padding: 0 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 4px;
|
|
cursor: pointer;
|
|
> .txt {
|
|
user-select: none;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
font-weight: bold;
|
|
font-size: 12px;
|
|
line-height: 20px;
|
|
color: #78787c;
|
|
}
|
|
.icon {
|
|
transition: transform 0.5s ease;
|
|
transform-origin: center;
|
|
}
|
|
.add_icon {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
}
|
|
> .nav {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
.session {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
&:hover,
|
|
&.active {
|
|
background: rgba(116, 127, 141, 0.1);
|
|
}
|
|
|
|
.avatar {
|
|
/* todo */
|
|
}
|
|
.details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
.up {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
.name {
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
color: #52525b;
|
|
max-width: 112px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
time {
|
|
white-space: nowrap;
|
|
font-weight: 500;
|
|
font-size: 12px;
|
|
line-height: 18px;
|
|
color: #78787c;
|
|
}
|
|
}
|
|
.down {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
.msg {
|
|
min-height: 18px;
|
|
font-weight: normal;
|
|
font-size: 12px;
|
|
line-height: 18px;
|
|
color: #78787c;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
width: 140px;
|
|
text-overflow: ellipsis;
|
|
}
|
|
> .badge {
|
|
/* letter-spacing: -1px; */
|
|
/* padding: 2px; */
|
|
color: #fff;
|
|
height: 20px;
|
|
min-width: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 10px;
|
|
background: #1fe1f9;
|
|
font-weight: 900;
|
|
font-size: 10px;
|
|
line-height: 10px;
|
|
&.dot {
|
|
min-width: unset;
|
|
width: 6px;
|
|
height: 6px;
|
|
padding: 0;
|
|
}
|
|
&.mute {
|
|
background: #bfbfbf;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
/* drop files effect */
|
|
.drop_over {
|
|
box-shadow: inset 0 0 0 2px #52edff;
|
|
}
|
|
}
|
|
&.collapse {
|
|
.title .icon {
|
|
transform: rotate(-90deg);
|
|
}
|
|
> .nav > .link:not(.active) {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
> .right {
|
|
border-radius: 0 16px 16px 0;
|
|
width: 100%;
|
|
&.placeholder {
|
|
background-color: #fff;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|