2025-12-03 18:35:05 +08:00
|
|
|
.bim-dialog {
|
|
|
|
|
position: absolute;
|
2026-01-21 15:50:07 +08:00
|
|
|
background-color: var(--bim-dialog-bg, var(--bim-bg-elevated));
|
|
|
|
|
border: 1px solid var(--bim-dialog-border-color, var(--bim-border-default));
|
2025-12-03 18:35:05 +08:00
|
|
|
border-radius: 6px;
|
2026-01-21 15:50:07 +08:00
|
|
|
box-shadow: var(--bim-shadow-lg);
|
2025-12-03 18:35:05 +08:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-01-21 15:50:07 +08:00
|
|
|
z-index: 10001;
|
|
|
|
|
color: var(--bim-dialog-title-color, var(--bim-text-primary));
|
2025-12-03 18:35:05 +08:00
|
|
|
overflow: hidden;
|
|
|
|
|
min-width: 200px;
|
|
|
|
|
min-height: 100px;
|
2026-01-21 15:50:07 +08:00
|
|
|
pointer-events: auto;
|
2025-12-03 18:35:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bim-dialog-header {
|
|
|
|
|
height: 32px;
|
2026-01-21 15:50:07 +08:00
|
|
|
background-color: var(--bim-dialog-header-bg, var(--bim-bg-inset));
|
2025-12-03 18:35:05 +08:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
cursor: default;
|
|
|
|
|
user-select: none;
|
2026-01-21 15:50:07 +08:00
|
|
|
border-bottom: 1px solid var(--bim-dialog-border-color, var(--bim-border-default));
|
2025-12-03 18:35:05 +08:00
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bim-dialog-header.draggable {
|
|
|
|
|
cursor: move;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bim-dialog-title {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
color: var(--bim-dialog-title-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bim-dialog-close {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 18px;
|
2026-01-21 15:50:07 +08:00
|
|
|
color: var(--bim-text-tertiary);
|
2025-12-03 18:35:05 +08:00
|
|
|
line-height: 1;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bim-dialog-close:hover {
|
2026-01-21 15:50:07 +08:00
|
|
|
color: var(--bim-text-primary);
|
2025-12-03 18:35:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bim-dialog-content {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
font-size: 14px;
|
2026-01-21 15:50:07 +08:00
|
|
|
color: var(--bim-dialog-text-color, var(--bim-text-secondary));
|
2025-12-03 18:35:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 缩放句柄 */
|
|
|
|
|
.bim-dialog-resize-handle {
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
cursor: se-resize;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bim-dialog-resize-handle::after {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 3px;
|
|
|
|
|
right: 3px;
|
|
|
|
|
width: 6px;
|
|
|
|
|
height: 6px;
|
2026-01-21 15:50:07 +08:00
|
|
|
border-right: 2px solid var(--bim-text-tertiary);
|
|
|
|
|
border-bottom: 2px solid var(--bim-text-tertiary);
|
2025-12-03 18:35:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bim-dialog-resize-handle:hover::after {
|
2026-01-21 15:50:07 +08:00
|
|
|
border-color: var(--bim-text-primary);
|
2025-12-22 15:39:58 +08:00
|
|
|
}
|