文本框 拖拉拽功能

This commit is contained in:
2025-08-14 11:53:06 +08:00
parent 6bd3778ad9
commit b4f7e7ad8f
6 changed files with 247 additions and 5 deletions

View File

@ -3043,6 +3043,42 @@
background-size: 100% 100%;
}
/* 文本框 */
.popup-textarea{
/* width: 212px; */
width: 161.6px;
/* height: 154px; */
height: 119.2px;
display: block;
pointer-events: none;
position: absolute;
/* z-index: 99; */
background: url(../../img/pop.png) 100% 100% no-repeat;
background-size: 100% 100%;
padding: 5px 5px 0px 5px;
}
.popup-textarea textarea{
background-color: unset!important;
border: unset!important;
color: #fff;
}
.popup-textarea textarea::-webkit-scrollbar {
width: 8px!important;
/* height: 8px!important; */
}
.popup-textarea textarea::-webkit-scrollbar-thumb {
border-radius: 5px!important;
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2)!important;
background-color: rgba(var(--color-sdk-base-rgb))!important;
}
.popup-textarea textarea::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2)!important;
border-radius: 5px!important;
background-color: rgba(var(--color-sdk-base-rgb), 0.1)!important;
}
/* 贴地图片 */
.YJ-custom-base-dialog.ground-image>.content {
width: 500px;