Files
bim_engine/src/bim-engine.css
yuding 19f7e3ffbc feat(theme): 重构主题系统,新增 glass-pill 按钮样式
- ThemeConfig 接口扩展至 60+ 语义化属性
- 新增深浅主题预设 (glassPill overrides)
- button-group 支持 glass-pill 样式变体
- 默认主题改为浅色
- 移除 toolbar 容器硬编码定位
- 统一组件 CSS 变量命名规范
- 暂时隐藏下拉箭头
2026-01-21 15:50:07 +08:00

25 lines
471 B
CSS

.bim-engine-wrapper {
position: relative;
width: 100%;
height: 100%;
font-family: sans-serif;
box-sizing: border-box;
overflow: hidden;
background: linear-gradient(to bottom, rgb(214, 224, 235), rgb(246, 250, 255));
}
/* ... (中间代码不变) ... */
.bim-engine-opt-btn-container {
z-index: 100;
}
/* 构造树按钮 */
.bim-construct-tree-btn {
position: absolute;
top: 20px;
left: 20px !important;
z-index: 100;
}