parent
d543dbf308
commit
3dae9d9b85
11 changed files with 882 additions and 665 deletions
After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 408 B After Width: | Height: | Size: 463 B |
After Width: | Height: | Size: 436 B |
After Width: | Height: | Size: 411 B |
@ -1,173 +1,175 @@ |
|||||||
.msg{ |
.msg { |
||||||
li{ |
li { |
||||||
margin-bottom: 10px; |
margin-bottom: 10px; |
||||||
border-top: 1px solid #f1f1f1; |
border-top: 1px solid #f1f1f1; |
||||||
&:first-child{ |
&:first-child { |
||||||
border-top: 0; |
border-top: 0; |
||||||
} |
} |
||||||
.li-wrap{ |
.li-wrap { |
||||||
position: relative; |
position: relative; |
||||||
display: flex; |
display: flex; |
||||||
justify-content: space-between; |
justify-content: space-between; |
||||||
padding: 16px 0; |
padding: 16px 0; |
||||||
.avatar{ |
.avatar { |
||||||
width: 48px; |
width: 48px; |
||||||
height: 48px; |
height: 48px; |
||||||
border-radius: 50%; |
border-radius: 50%; |
||||||
} |
} |
||||||
.texts{ |
.texts { |
||||||
flex: 1; |
flex: 1; |
||||||
margin-left: 24px; |
margin-left: 24px; |
||||||
.name{ |
.name { |
||||||
color: rgba(0, 0, 0, 0.85); |
color: rgba(0, 0, 0, 0.85); |
||||||
font-size: 16px; |
font-size: 16px; |
||||||
} |
} |
||||||
.des{ |
.des { |
||||||
margin: 8px 0; |
margin: 8px 0; |
||||||
} |
} |
||||||
.date{ |
.date { |
||||||
color: rgba(0, 0, 0, 0.45); |
color: rgba(0, 0, 0, 0.45); |
||||||
font-size: 14px; |
font-size: 14px; |
||||||
} |
} |
||||||
} |
} |
||||||
.action{ |
.action { |
||||||
display: inline-flex; |
display: inline-flex; |
||||||
align-items: center; |
align-items: center; |
||||||
margin-top: 15px; |
margin-top: 15px; |
||||||
.icon{ |
.icon { |
||||||
margin: 0 5px; |
margin: 0 5px; |
||||||
color: $main-color; |
color: $main-color; |
||||||
font-size: 18px; |
font-size: 18px; |
||||||
cursor: pointer; |
cursor: pointer; |
||||||
&:hover{ |
&:hover { |
||||||
opacity: .8; |
opacity: 0.8; |
||||||
} |
} |
||||||
&:first-child{ |
&:first-child { |
||||||
margin-right: 5px; |
margin-right: 5px; |
||||||
} |
} |
||||||
&.del{ |
&.del { |
||||||
color: rgba(0, 0, 0, 0.65); |
color: rgba(0, 0, 0, 0.65); |
||||||
border: 1px solid rgba(0, 0, 0, 0.15); |
border: 1px solid rgba(0, 0, 0, 0.15); |
||||||
} |
} |
||||||
} |
} |
||||||
} |
} |
||||||
} |
} |
||||||
.reply{ |
.reply { |
||||||
margin-top: 20px; |
padding-bottom: 10px; |
||||||
} |
margin-top: 20px; |
||||||
} |
} |
||||||
&.children{ |
} |
||||||
margin-left: 72px; |
&.children { |
||||||
padding-left: 24px; |
margin-left: 72px; |
||||||
background-color: rgba(0, 0, 0, 0.02); |
padding-left: 24px; |
||||||
border-radius: 8px; |
background-color: rgba(0, 0, 0, 0.02); |
||||||
li{ |
border-radius: 8px; |
||||||
border-top-color: rgba(0, 0, 0, 0.06); |
li { |
||||||
} |
border-top-color: rgba(0, 0, 0, 0.06); |
||||||
} |
} |
||||||
|
} |
||||||
} |
} |
||||||
.toggle{ |
.toggle { |
||||||
margin: 16px 0; |
margin: 16px 0; |
||||||
text-align: center; |
text-align: center; |
||||||
color: $main-color; |
color: $main-color; |
||||||
font-size: 14px; |
font-size: 14px; |
||||||
span{ |
span { |
||||||
cursor: pointer; |
cursor: pointer; |
||||||
} |
} |
||||||
} |
} |
||||||
/deep/.quill{ |
/deep/.quill { |
||||||
background-color: #fff; |
background-color: #fff; |
||||||
} |
} |
||||||
|
|
||||||
/deep/.timeline { |
/deep/.timeline { |
||||||
padding-left: 10%; |
padding-left: 10%; |
||||||
overflow: hidden; |
overflow: hidden; |
||||||
.el-timeline-item { |
.el-timeline-item { |
||||||
padding-bottom: 40px; |
padding-bottom: 40px; |
||||||
} |
} |
||||||
.el-timeline-item__node--normal { |
.el-timeline-item__node--normal { |
||||||
top: 30px; |
top: 30px; |
||||||
} |
} |
||||||
.el-timeline-item__wrapper { |
.el-timeline-item__wrapper { |
||||||
top: 15px; |
top: 15px; |
||||||
padding-left: 40px; |
padding-left: 40px; |
||||||
} |
} |
||||||
.el-timeline-item__tail { |
.el-timeline-item__tail { |
||||||
height: 250%; |
height: 250%; |
||||||
border-left-width: 1px; |
border-left-width: 1px; |
||||||
} |
} |
||||||
.sign { |
.sign { |
||||||
position: relative; |
position: relative; |
||||||
display: inline-block; |
display: inline-block; |
||||||
margin-left: -14%; |
margin-left: -14%; |
||||||
font-size: 14px; |
font-size: 14px; |
||||||
color: #9076FF; |
color: #007eff; |
||||||
} |
} |
||||||
.draft { |
.draft { |
||||||
.ver, .sign { |
.ver, |
||||||
color: #b1b1b1; |
.sign { |
||||||
} |
color: #b1b1b1; |
||||||
} |
} |
||||||
.ver { |
} |
||||||
display: flex; |
.ver { |
||||||
justify-content: space-between; |
display: flex; |
||||||
align-items: center; |
justify-content: space-between; |
||||||
padding-bottom: 10px; |
align-items: center; |
||||||
margin: -22px 0 20px; |
padding-bottom: 10px; |
||||||
font-size: 18px; |
margin: -22px 0 20px; |
||||||
color: #9076FF; |
font-size: 18px; |
||||||
border-bottom: 1px dashed #bfbfbf; |
color: #007eff; |
||||||
} |
border-bottom: 1px dashed #bfbfbf; |
||||||
.withdraw { |
} |
||||||
margin-right: 10px; |
.withdraw { |
||||||
font-size: 13px; |
margin-right: 10px; |
||||||
color: #979797; |
font-size: 13px; |
||||||
} |
color: #979797; |
||||||
.action { |
} |
||||||
margin-left: 15px; |
.action { |
||||||
i { |
margin-left: 15px; |
||||||
margin-left: 8px; |
i { |
||||||
font-size: 14px; |
margin-left: 8px; |
||||||
color: #9076FF; |
font-size: 14px; |
||||||
cursor: pointer; |
color: #007eff; |
||||||
&:hover { |
cursor: pointer; |
||||||
opacity: .9; |
&:hover { |
||||||
} |
opacity: 0.9; |
||||||
} |
} |
||||||
} |
} |
||||||
.detail { |
} |
||||||
li { |
.detail { |
||||||
margin-bottom: 20px; |
li { |
||||||
} |
margin-bottom: 20px; |
||||||
.name { |
} |
||||||
display: flex; |
.name { |
||||||
align-items: center; |
display: flex; |
||||||
margin-bottom: 5px; |
align-items: center; |
||||||
font-size: 15px; |
margin-bottom: 5px; |
||||||
font-weight: 600; |
font-size: 15px; |
||||||
img { |
font-weight: 600; |
||||||
width: 20px; |
img { |
||||||
margin-right: 5px; |
width: 20px; |
||||||
} |
margin-right: 5px; |
||||||
} |
|
||||||
.val { |
|
||||||
font-size: 14px; |
|
||||||
line-height: 1.8; |
|
||||||
white-space: pre-wrap; |
|
||||||
p { |
|
||||||
position: relative; |
|
||||||
color: #6a6a6a; |
|
||||||
&:before { |
|
||||||
content: ''; |
|
||||||
display: inline-block; |
|
||||||
width: 5px; |
|
||||||
height: 5px; |
|
||||||
margin: 0 10px 0 5px; |
|
||||||
vertical-align: middle; |
|
||||||
border-radius: 20px; |
|
||||||
background-color: #c5b8ff; |
|
||||||
} |
} |
||||||
} |
} |
||||||
} |
.val { |
||||||
} |
font-size: 14px; |
||||||
} |
line-height: 1.8; |
||||||
|
white-space: pre-wrap; |
||||||
|
p { |
||||||
|
position: relative; |
||||||
|
color: #6a6a6a; |
||||||
|
&:before { |
||||||
|
content: ''; |
||||||
|
display: inline-block; |
||||||
|
width: 5px; |
||||||
|
height: 5px; |
||||||
|
margin: 0 10px 0 5px; |
||||||
|
vertical-align: middle; |
||||||
|
border-radius: 20px; |
||||||
|
background-color: #c5b8ff; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
Loading…
Reference in new issue