* feat(prefab): 实现预制体系统和编辑器 UX 改进 ## 预制体系统 - 新增 PrefabSerializer: 预制体序列化/反序列化 - 新增 PrefabInstanceComponent: 追踪预制体实例来源和修改 - 新增 PrefabService: 预制体核心服务 - 新增 PrefabLoader: 预制体资产加载器 - 新增预制体命令: Create/Instantiate/Apply/Revert/BreakLink ## 预制体编辑模式 - 支持双击 .prefab 文件进入编辑模式 - 预制体编辑模式工具栏 (保存/退出) - 预制体实例指示器和操作菜单 ## 编辑器 UX 改进 - SceneHierarchy 快捷键: F2 重命名, Ctrl+D 复制, ↑↓ 导航 - 支持双击实体名称内联编辑 - 删除实体时显示子节点数量警告 - 右键菜单添加重命名/复制选项及快捷键提示 - 布局持久化和重置功能 ## Bug 修复 - 修复 editor-runtime 组件类重复导致的 TransformComponent 不识别问题 - 修复 .prefab-name 样式覆盖导致预制体工具栏文字不可见 - 修复 Inspector 资源字段高度不正确问题 * feat(editor): 改进编辑器 UX 交互体验 - ContentBrowser: 加载动画 spinner、搜索高亮、改进空状态设计 - SceneHierarchy: 选中项自动滚动到视图、搜索清除按钮 - PropertyInspector: 输入框本地状态管理、Enter/Escape 键处理 - EntityInspector: 组件折叠状态持久化、属性搜索清除按钮 - Viewport: 变换操作实时数值显示 - 国际化: 添加相关文本 (en/zh) * fix(build): 修复 Web 构建资产加载和编辑器 UX 改进 构建系统修复: - 修复 asset-catalog.json 字段名不匹配 (entries vs assets) - 修复 BrowserFileSystemService 支持两种目录格式 - 修复 bundle 策略检测逻辑 (空对象判断) - 修复 module.json 中 assetExtensions 声明和类型推断 行为树修复: - 修复 BehaviorTreeExecutionSystem 使用 loadAsset 替代 loadAssetByPath - 修复 BehaviorTreeAssetType 常量与 module.json 类型名一致 (behavior-tree) 编辑器 UX 改进: - 构建完成对话框添加"打开文件夹"按钮 - 构建完成对话框样式优化 (圆形图标背景、按钮布局) - SceneHierarchy 响应式布局 (窄窗口自动隐藏 Type 列) - SceneHierarchy 隐藏滚动条 错误追踪: - 添加全局错误处理器写入日志文件 (%TEMP%/esengine-editor-crash.log) - 添加 append_to_log Tauri 命令 * feat(render): 修复 UI 渲染和点击特效系统 ## UI 渲染修复 - 修复 GUID 验证 bug,使用统一的 isValidGUID() 函数 - 修复 UI 渲染顺序随机问题,Rust 端使用 IndexMap 替代 HashMap - Web 运行时添加 assetPathResolver 支持 GUID 解析 - UIInteractableComponent.blockEvents 默认值改为 false ## 点击特效系统 - 新增 ClickFxComponent 和 ClickFxSystem - 支持在点击位置播放粒子效果 - 支持多种触发模式和粒子轮换 ## Camera 系统重构 - CameraSystem 从 ecs-engine-bindgen 移至 camera 包 - 新增 CameraManager 统一管理相机 ## 编辑器改进 - 改进属性面板 UI 交互 - 粒子编辑器面板优化 - Transform 命令系统 * feat(render): 实现 Sorting Layer 系统和 Overlay 渲染层 - 新增 SortingLayerManager 管理排序层级 (Background, Default, Foreground, UI, Overlay) - 实现 ISortable 接口,统一 Sprite、UI、Particle 的排序属性 - 修复粒子 Overlay 层被 UI 遮挡问题:添加独立的 Overlay Pass 在 UI 之后渲染 - 更新粒子资产格式:从 sortingOrder 改为 sortingLayer + orderInLayer - 更新粒子编辑器面板支持新的排序属性 - 优化 UI 渲染系统使用新的排序层级 * feat(ci): 集成 SignPath 代码签名服务 - 添加 SignPath 自动签名工作流(Windows) - 配置 release-editor.yml 支持代码签名 - 将构建改为草稿模式,等待签名完成后发布 - 添加证书文件到 .gitignore 防止泄露 * fix(asset): 修复 Web 构建资产路径解析和全局单例移除 ## 资产路径修复 - 修复 Tauri 本地服务器 `/asset?path=...` 路径解析,正确与 root 目录连接 - BrowserPathResolver 支持两种模式: - 'proxy': 使用 /asset?path=... 格式(编辑器 Run in Browser) - 'direct': 使用直接路径 /assets/path.png(独立 Web 构建) - BrowserRuntime 使用 'direct' 模式,无需 Tauri 代理 ## 架构改进 - 移除全局单例 - 移除 globalAssetManager 导出,改用 AssetManagerToken 依赖注入 - 移除 globalPathResolver 导出,改用 PathResolutionService - 移除 globalPathResolutionService 导出 - ParticleUpdateSystem/ClickFxSystem 通过 setAssetManager() 注入依赖 - EngineService 使用 new AssetManager() 替代全局实例 ## 新增服务 - PathResolutionService: 统一路径解析接口 - RuntimeModeService: 运行时模式查询服务 - SerializationContext: EntityRef 序列化上下文 ## 其他改进 - 完善 ServiceToken 注释说明本地定义的意图 - 导出 BrowserPathResolveMode 类型 * fix(build): 添加 world-streaming composite 设置修复类型检查 * fix(build): 移除 world-streaming 引用避免 composite 冲突 * fix(build): 将 const enum 改为 enum 兼容 isolatedModules * fix(build): 添加缺失的 IAssetManager 导入
676 lines
11 KiB
CSS
676 lines
11 KiB
CSS
.startup-page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: 100vh;
|
|
background-color: #1e1e1e;
|
|
color: #cccccc;
|
|
}
|
|
|
|
.startup-header {
|
|
padding: 60px 40px 40px;
|
|
}
|
|
|
|
.startup-title {
|
|
font-size: 32px;
|
|
font-weight: 300;
|
|
color: #ffffff;
|
|
margin: 0 0 8px 0;
|
|
letter-spacing: -0.5px;
|
|
}
|
|
|
|
.startup-subtitle {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
color: #858585;
|
|
margin: 0;
|
|
}
|
|
|
|
.startup-content {
|
|
flex: 1;
|
|
display: flex;
|
|
gap: 60px;
|
|
padding: 0 40px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.startup-actions {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
min-width: 280px;
|
|
}
|
|
|
|
.startup-action-btn {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 12px 16px;
|
|
background-color: #2d2d30;
|
|
border: 1px solid #3e3e42;
|
|
border-radius: 2px;
|
|
color: #cccccc;
|
|
font-size: 13px;
|
|
cursor: pointer;
|
|
transition: all 0.15s;
|
|
text-align: left;
|
|
}
|
|
|
|
.startup-action-btn:hover {
|
|
background-color: #37373d;
|
|
border-color: #007acc;
|
|
}
|
|
|
|
.startup-action-btn.primary {
|
|
background-color: #0e639c;
|
|
border-color: #0e639c;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.startup-action-btn.primary:hover {
|
|
background-color: #1177bb;
|
|
border-color: #1177bb;
|
|
}
|
|
|
|
.startup-action-btn.disabled {
|
|
background-color: #252526;
|
|
border-color: #3e3e42;
|
|
color: #6e6e6e;
|
|
cursor: not-allowed;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.startup-action-btn.disabled:hover {
|
|
background-color: #252526;
|
|
border-color: #3e3e42;
|
|
}
|
|
|
|
.badge-coming-soon {
|
|
margin-left: auto;
|
|
font-size: 10px;
|
|
padding: 2px 6px;
|
|
background-color: #3e3e42;
|
|
border-radius: 2px;
|
|
color: #858585;
|
|
}
|
|
|
|
.btn-icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.startup-recent {
|
|
flex: 1;
|
|
max-width: 600px;
|
|
}
|
|
|
|
.recent-title {
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
color: #cccccc;
|
|
margin: 0 0 16px 0;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.recent-empty {
|
|
font-size: 13px;
|
|
color: #858585;
|
|
margin: 0;
|
|
}
|
|
|
|
.recent-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1px;
|
|
}
|
|
|
|
.recent-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 10px 12px;
|
|
background-color: transparent;
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
transition: background-color 0.15s;
|
|
}
|
|
|
|
.recent-item:hover {
|
|
background-color: #2a2d2e;
|
|
}
|
|
|
|
.recent-icon {
|
|
width: 16px;
|
|
height: 16px;
|
|
color: #858585;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.recent-info {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.recent-name {
|
|
font-size: 13px;
|
|
color: #cccccc;
|
|
margin-bottom: 2px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.recent-path {
|
|
font-size: 11px;
|
|
color: #6e6e6e;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.recent-remove-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 28px;
|
|
height: 28px;
|
|
padding: 0;
|
|
background: transparent;
|
|
border: none;
|
|
border-radius: 4px;
|
|
color: #6e6e6e;
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
transition: all 0.15s;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.recent-item:hover .recent-remove-btn {
|
|
opacity: 1;
|
|
}
|
|
|
|
.recent-remove-btn:hover {
|
|
background: rgba(255, 80, 80, 0.15);
|
|
color: #f87171;
|
|
}
|
|
|
|
.startup-footer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 20px 40px;
|
|
border-top: 1px solid #2a2a2f;
|
|
}
|
|
|
|
.startup-version {
|
|
font-size: 11px;
|
|
color: #6e6e6e;
|
|
}
|
|
|
|
.startup-locale-dropdown {
|
|
position: relative;
|
|
}
|
|
|
|
.startup-locale-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 6px 12px;
|
|
background: transparent;
|
|
border: 1px solid #3e3e42;
|
|
border-radius: 3px;
|
|
color: #888;
|
|
font-size: 11px;
|
|
cursor: pointer;
|
|
transition: all 0.15s;
|
|
}
|
|
|
|
.startup-locale-btn:hover {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-color: #555;
|
|
color: #ccc;
|
|
}
|
|
|
|
.startup-locale-menu {
|
|
position: absolute;
|
|
bottom: 100%;
|
|
right: 0;
|
|
margin-bottom: 4px;
|
|
min-width: 120px;
|
|
background: #252529;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 3px;
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
|
|
padding: 4px 0;
|
|
z-index: var(--z-index-dropdown);
|
|
}
|
|
|
|
.startup-locale-item {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 6px 12px;
|
|
background: transparent;
|
|
border: none;
|
|
color: #ccc;
|
|
font-size: 11px;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
transition: all 0.1s;
|
|
}
|
|
|
|
.startup-locale-item:hover {
|
|
background: #3b82f6;
|
|
color: #fff;
|
|
}
|
|
|
|
.startup-locale-item.active {
|
|
color: #3b82f6;
|
|
}
|
|
|
|
.startup-locale-item.active:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
/* 更新提示条样式 */
|
|
.startup-update-banner {
|
|
position: fixed;
|
|
bottom: 60px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
z-index: var(--z-index-sticky);
|
|
}
|
|
|
|
.update-banner-content {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 10px 16px;
|
|
background: linear-gradient(135deg, #1e5a2f 0%, #1a4a28 100%);
|
|
border: 1px solid #2e8b4a;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
|
|
color: #ffffff;
|
|
font-size: 13px;
|
|
animation: slideUp 0.3s ease-out;
|
|
}
|
|
|
|
@keyframes slideUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.update-banner-content svg {
|
|
color: #4ade80;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.update-banner-text {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.update-banner-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 6px 14px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.15s;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.update-banner-btn.primary {
|
|
background: #22c55e;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.update-banner-btn.primary:hover:not(:disabled) {
|
|
background: #16a34a;
|
|
}
|
|
|
|
.update-banner-btn:disabled {
|
|
opacity: 0.7;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.update-banner-close {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 24px;
|
|
height: 24px;
|
|
padding: 0;
|
|
background: transparent;
|
|
border: none;
|
|
border-radius: 4px;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
cursor: pointer;
|
|
transition: all 0.15s;
|
|
}
|
|
|
|
.update-banner-close:hover:not(:disabled) {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
color: #ffffff;
|
|
}
|
|
|
|
.update-banner-close:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
/* 右键菜单样式 | Context Menu Styles */
|
|
.startup-context-menu-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.startup-context-menu {
|
|
position: fixed;
|
|
min-width: 180px;
|
|
background: #252529;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 6px;
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
|
|
padding: 4px 0;
|
|
z-index: 1001;
|
|
}
|
|
|
|
.startup-context-menu-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
width: 100%;
|
|
padding: 8px 14px;
|
|
background: transparent;
|
|
border: none;
|
|
color: #cccccc;
|
|
font-size: 13px;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
transition: all 0.1s;
|
|
}
|
|
|
|
.startup-context-menu-item:hover {
|
|
background: #3b82f6;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.startup-context-menu-item.danger {
|
|
color: #f87171;
|
|
}
|
|
|
|
.startup-context-menu-item.danger:hover {
|
|
background: #dc2626;
|
|
color: #ffffff;
|
|
}
|
|
|
|
/* 对话框样式 | Dialog Styles */
|
|
.startup-dialog-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 1002;
|
|
}
|
|
|
|
.startup-dialog {
|
|
width: 400px;
|
|
background: #2d2d30;
|
|
border: 1px solid #3e3e42;
|
|
border-radius: 8px;
|
|
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.startup-dialog-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 16px 20px;
|
|
background: #252526;
|
|
border-bottom: 1px solid #3e3e42;
|
|
}
|
|
|
|
.startup-dialog-header h3 {
|
|
margin: 0;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.dialog-icon-danger {
|
|
color: #f87171;
|
|
}
|
|
|
|
.startup-dialog-body {
|
|
padding: 20px;
|
|
}
|
|
|
|
.startup-dialog-body p {
|
|
margin: 0 0 12px 0;
|
|
font-size: 13px;
|
|
color: #cccccc;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.startup-dialog-body p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.startup-dialog-path {
|
|
padding: 10px 12px;
|
|
background: #1e1e1e;
|
|
border-radius: 4px;
|
|
font-family: monospace;
|
|
font-size: 12px;
|
|
color: #858585;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.startup-dialog-footer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
padding: 16px 20px;
|
|
background: #252526;
|
|
border-top: 1px solid #3e3e42;
|
|
}
|
|
|
|
.startup-dialog-btn {
|
|
padding: 8px 16px;
|
|
border: 1px solid #3e3e42;
|
|
border-radius: 4px;
|
|
background: #2d2d30;
|
|
color: #cccccc;
|
|
font-size: 13px;
|
|
cursor: pointer;
|
|
transition: all 0.15s;
|
|
}
|
|
|
|
.startup-dialog-btn:hover {
|
|
background: #37373d;
|
|
border-color: #555;
|
|
}
|
|
|
|
.startup-dialog-btn.danger {
|
|
background: #dc2626;
|
|
border-color: #dc2626;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.startup-dialog-btn.danger:hover {
|
|
background: #b91c1c;
|
|
border-color: #b91c1c;
|
|
}
|
|
|
|
.startup-dialog-btn.primary {
|
|
background: #0e639c;
|
|
border-color: #0e639c;
|
|
color: #ffffff;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.startup-dialog-btn.primary:hover:not(:disabled) {
|
|
background: #1177bb;
|
|
border-color: #1177bb;
|
|
}
|
|
|
|
.startup-dialog-btn:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
/* esbuild 安装对话框样式 | esbuild Installation Dialog Styles */
|
|
.startup-dialog-info {
|
|
padding: 10px 12px;
|
|
background: #1e1e1e;
|
|
border-radius: 4px;
|
|
font-size: 13px;
|
|
color: #cccccc;
|
|
border-left: 3px solid #0e639c;
|
|
}
|
|
|
|
.startup-dialog-progress {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 12px;
|
|
background: #1e1e1e;
|
|
border-radius: 4px;
|
|
margin-top: 12px;
|
|
color: #0e639c;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.startup-dialog-error {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 12px;
|
|
background: #1e1e1e;
|
|
border-radius: 4px;
|
|
margin-top: 12px;
|
|
color: #dc2626;
|
|
font-size: 13px;
|
|
border-left: 3px solid #dc2626;
|
|
}
|
|
|
|
.dialog-icon-info {
|
|
color: #0e639c;
|
|
}
|
|
|
|
/* 环境状态指示器样式 | Environment Status Indicator Styles */
|
|
.startup-env-status {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
transition: all 0.15s;
|
|
}
|
|
|
|
.startup-env-status.ready {
|
|
color: #4ade80;
|
|
}
|
|
|
|
.startup-env-status.ready:hover {
|
|
background: rgba(74, 222, 128, 0.1);
|
|
}
|
|
|
|
.startup-env-status.warning {
|
|
color: #f59e0b;
|
|
animation: pulse 2s infinite;
|
|
}
|
|
|
|
.startup-env-status.warning:hover {
|
|
background: rgba(245, 158, 11, 0.1);
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.6; }
|
|
}
|
|
|
|
.startup-env-tooltip {
|
|
position: absolute;
|
|
bottom: 100%;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
margin-bottom: 8px;
|
|
padding: 12px 16px;
|
|
min-width: 200px;
|
|
background: #2d2d30;
|
|
border: 1px solid #3e3e42;
|
|
border-radius: 6px;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
|
|
z-index: 1000;
|
|
}
|
|
|
|
.startup-env-tooltip::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
border: 6px solid transparent;
|
|
border-top-color: #3e3e42;
|
|
}
|
|
|
|
.env-tooltip-title {
|
|
margin-bottom: 10px;
|
|
padding-bottom: 8px;
|
|
border-bottom: 1px solid #3e3e42;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.env-tooltip-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.env-tooltip-item.ok {
|
|
color: #4ade80;
|
|
}
|
|
|
|
.env-tooltip-item.error {
|
|
color: #f87171;
|
|
}
|
|
|
|
.env-source {
|
|
opacity: 0.6;
|
|
font-size: 11px;
|
|
}
|