no message

This commit is contained in:
A1300399510 2024-12-18 15:37:14 +08:00
parent fcde05b72d
commit 851fadce5d
2 changed files with 16 additions and 10 deletions

View File

@ -73,9 +73,12 @@ body {
margin-right: 5px; margin-right: 5px;
padding: 0 20px; padding: 0 20px;
position: relative; position: relative;
transition: all 0.1s;
} }
.base .left.input-active { .base .left.input-active {
border: 1px solid #c4c7ce; border: 1px solid #c4c7ce;
border-radius: 0 0 10px 10px;
border-top: none;
} }
.base .left .text { .base .left .text {
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif; font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
@ -92,19 +95,18 @@ body {
} }
.base .left .hint-list { .base .left .hint-list {
position: absolute; position: absolute;
width: 750px; width: 450px;
height: 0; height: 0;
max-height: 400px; max-height: 400px;
bottom: 54px; bottom: 43px;
left: -1px; left: -1px;
background-color: #ffffff; background-color: #ffffff;
border-radius: 0 0 10px 10px; border-radius: 10px 10px 0 0;
z-index: 10; z-index: 10;
overflow: auto; overflow: auto;
animation: hintShow 0.3s forwards; animation: hintShow 0.3s forwards;
border: 0px solid #c4c7ce; border: 0px solid #c4c7ce;
border-top: none; border-bottom: none;
box-shadow: 0px 5px 5px #dfdfdf;
} }
@keyframes hintShow { @keyframes hintShow {
0% { 0% {

View File

@ -87,9 +87,12 @@ body {
margin-right: 5px; margin-right: 5px;
padding: 0 20px; padding: 0 20px;
position: relative; position: relative;
transition: all 0.1s;
&.input-active { &.input-active {
border: 1px solid #c4c7ce; border: 1px solid #c4c7ce;
border-radius: 0 0 10px 10px;
border-top: none;
} }
.text { .text {
@ -110,19 +113,20 @@ body {
.hint-list { .hint-list {
position: absolute; position: absolute;
width: 750px; // width: 750px;
width: 450px;
height: 0; height: 0;
max-height: 400px; max-height: 400px;
bottom: 54px; bottom: 43px;
left: -1px; left: -1px;
background-color: rgba(255, 255, 255, 1); background-color: rgba(255, 255, 255, 1);
border-radius: 0 0 10px 10px; border-radius: 10px 10px 0 0;
z-index: 10; z-index: 10;
overflow: auto; overflow: auto;
animation: hintShow 0.3s forwards; animation: hintShow 0.3s forwards;
border: 0px solid #c4c7ce; border: 0px solid #c4c7ce;
border-top: none; border-bottom: none;
box-shadow: 0px 5px 5px #dfdfdf; // box-shadow: 0px 5px 5px #dfdfdf;
@keyframes hintShow { @keyframes hintShow {
0% { 0% {