This commit is contained in:
2025-09-02 10:01:05 +08:00
parent 1484bd44fc
commit ff5f583326
68 changed files with 983 additions and 14306 deletions

View File

@ -3122,9 +3122,9 @@
/* 文本框 */
.popup-textarea{
/* width: 212px; */
width: 161.6px;
width: 161px;
/* height: 154px; */
height: 119.2px;
height: 119px;
display: block;
pointer-events: none;
position: absolute;
@ -3134,6 +3134,8 @@
padding: 5px 5px 0px 5px;
}
.popup-textarea textarea{
width: 158px;
height: 95px;
background-color: unset!important;
border: unset!important;
color: #fff;
@ -3491,6 +3493,7 @@
cursor: e-resize;
background-color: #d3d3d3;
user-select: none;
z-index: 1;
}
.cesium-performanceDisplay-defaultContainer {
@ -3625,6 +3628,7 @@
height: 100%;
display: flex;
flex-direction: column;
backdrop-filter: blur(2px);
}
.billboard-attribute-box .DIV-cy-tabs .DIV-cy-tab-top .DIV-cy-tab-pane-title {
@ -3759,4 +3763,61 @@
.billboard-attribute-box .table .table-body .tr:first-child {
border-top: none;
}
}
/* 自定义提示 */
#YJ-custom-message {
/* 固定在顶部中央 */
position: fixed;
top: 0;
left: 50%;
transform: translate(-50%, 0%);
/* 初始位置在屏幕顶部外 */
/* 样式美化 */
display: flex;
border-radius: 4px;
font-size: 14px;
padding: 15px 20px;
width: 380px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
z-index: 9999999;
/* 动画定义 */
animation: YJ-custom-message-slideDown 0.5s forwards,
YJ-custom-message-fadeOut 0.5s 1500ms forwards;
}
#YJ-custom-message i {
margin: 2px 10px 0 0;
display: flex;
align-items: center;
width: 16px;
}
#YJ-custom-message.success {
background-color: #f0f9eb;
color: rgb(82, 196, 26);
}
#YJ-custom-message.warning {
background-color: #fdf6ec;
color: #e6a23c;
}
/* 滑入动画 */
@keyframes YJ-custom-message-slideDown {
to {
top: 20px;
/* 移动到屏幕顶部 */
}
}
/* 淡出动画 - 1500ms后执行 */
@keyframes YJ-custom-message-fadeOut {
to {
opacity: 0;
top: -200px
/* 移回顶部外 */
}
}