no message

This commit is contained in:
A1300399510
2025-11-09 23:34:00 +08:00
parent aa5a7058ad
commit b7feedb350
10 changed files with 338 additions and 90 deletions

View File

@@ -1108,7 +1108,7 @@
top: 0;
left: 0;
background-color: rgba(255, 255, 255, 0.8);
z-index: 100;
z-index: 10002;
}
.detail-image-mask .detail-image {
width: 80vw;

View File

@@ -1295,7 +1295,7 @@
top: 0;
left: 0;
background-color: rgba(255, 255, 255, 0.8);
z-index: 100;
z-index: 10002;
}
.detail-image-mask .detail-image {

View File

@@ -121,6 +121,7 @@
#edit .edit-container .editor-toolbar .toolbar-item.expression.pitch .emoji-box {
display: flex;
}
#edit .edit-container .editor-toolbar .toolbar-item .link-box-mask,
#edit .edit-container .editor-toolbar .toolbar-item .emoji-box-mask {
position: fixed;
top: 0;
@@ -131,6 +132,9 @@
background-color: rgba(0, 0, 0, 0.20392157);
display: none;
}
#edit .edit-container .editor-toolbar .toolbar-item .link-box-mask {
background: transparent;
}
#edit .edit-container .editor-toolbar .toolbar-item .emoji-box {
width: 582px;
border-radius: 8px;
@@ -163,6 +167,65 @@
margin: 5px;
cursor: pointer;
}
#edit .edit-container .editor-toolbar .toolbar-item.link.pitch .link-box-mask {
display: block;
}
#edit .edit-container .editor-toolbar .toolbar-item.link.pitch .link-box {
display: flex;
}
#edit .edit-container .editor-toolbar .toolbar-item.link .link-box {
background-color: #ffffff;
border-radius: 6px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16862745);
width: 336px;
height: 282px;
position: absolute;
top: 30px;
left: 0%;
z-index: 1;
border: 1px solid #ebebeb;
display: none;
flex-direction: column;
padding: 18px 20px 0;
}
#edit .edit-container .editor-toolbar .toolbar-item.link .link-box .item {
margin-bottom: 22px;
flex-direction: column;
}
#edit .edit-container .editor-toolbar .toolbar-item.link .link-box .item .name {
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 14px;
color: #555555;
line-height: 26px;
margin-bottom: 8px;
}
#edit .edit-container .editor-toolbar .toolbar-item.link .link-box .item .input {
height: 36px;
border: 1px solid #d7d7d7;
border-radius: 7px;
padding: 0 10px;
font-size: 14px;
color: #000000;
}
#edit .edit-container .editor-toolbar .toolbar-item.link .link-box .btn {
width: 72px;
height: 40px;
line-height: 40px;
background-color: #50e3c2;
border-radius: 8px;
margin-left: auto;
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
font-weight: 650;
font-style: normal;
font-size: 16px;
color: #000000;
margin-top: 8px;
}
#edit .edit-container .editor-toolbar .toolbar-item.link .link-box .btn:hover {
background-color: #c2eff6;
}
#edit .edit-container .content-input {
min-height: 509px;
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
@@ -204,6 +267,12 @@
width: 100%;
height: 26px;
}
#edit .edit-container .content-input a {
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
font-size: 15px;
text-decoration: underline;
color: #04b0d5;
}
#edit .edit-container .tags-list {
padding: 0 36px;
margin-bottom: 10px;

View File

@@ -135,6 +135,7 @@
}
}
.link-box-mask,
.emoji-box-mask {
position: fixed;
top: 0;
@@ -146,6 +147,10 @@
display: none;
}
.link-box-mask {
background: transparent;
}
.emoji-box {
width: 582px;
border-radius: 8px;
@@ -180,6 +185,77 @@
cursor: pointer;
}
}
&.link {
&.pitch {
.link-box-mask {
display: block;
}
.link-box {
display: flex;
}
}
.link-box {
background-color: rgba(255, 255, 255, 1);
border-radius: 6px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.168627450980392);
width: 336px;
height: 282px;
position: absolute;
top: 30px;
left: 0%;
z-index: 1;
border: 1px solid #ebebeb;
display: none;
flex-direction: column;
padding: 18px 20px 0;
.item {
margin-bottom: 22px;
flex-direction: column;
.name {
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 14px;
color: #555555;
line-height: 26px;
margin-bottom: 8px;
}
.input {
height: 36px;
border: 1px solid rgba(215, 215, 215, 1);
border-radius: 7px;
padding: 0 10px;
font-size: 14px;
color: #000000;
}
}
.btn {
width: 72px;
height: 40px;
line-height: 40px;
background-color: rgba(80, 227, 194, 1);
border-radius: 8px;
margin-left: auto;
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
font-weight: 650;
font-style: normal;
font-size: 16px;
color: #000000;
margin-top: 8px;
&:hover {
background-color: rgba(194, 239, 246, 1);
}
}
}
}
}
}
@@ -229,6 +305,13 @@
width: 100%;
height: 26px;
}
a {
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
font-size: 15px;
text-decoration: underline;
color: #04b0d5;
}
}
.tags-list {

View File

@@ -642,7 +642,7 @@ body {
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-top: 8px solid #000000;
border-top: 8px solid #ffffff;
position: absolute;
bottom: -8px;
left: 50%;

View File

@@ -769,7 +769,7 @@ body {
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-top: 8px solid #000000;
border-top: 8px solid #ffffff;
position: absolute;
bottom: -8px;
left: 50%;