feat(theme): 重构主题系统,新增 glass-pill 按钮样式
- ThemeConfig 接口扩展至 60+ 语义化属性 - 新增深浅主题预设 (glassPill overrides) - button-group 支持 glass-pill 样式变体 - 默认主题改为浅色 - 移除 toolbar 容器硬编码定位 - 统一组件 CSS 变量命名规范 - 暂时隐藏下拉箭头
This commit is contained in:
@@ -3,22 +3,15 @@
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
font-family: sans-serif;
|
||||
color: #bf1d1d;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
/* 防止内容溢出 */
|
||||
background: linear-gradient(to bottom, rgb(214, 224, 235), rgb(246, 250, 255));
|
||||
}
|
||||
|
||||
|
||||
/* ... (中间代码不变) ... */
|
||||
|
||||
/* 操作按钮组容器 */
|
||||
.bim-engine-opt-btn-container {
|
||||
position: absolute;
|
||||
/* 改为绝对定位 */
|
||||
bottom: 20px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user