Files
esengine/packages/editor-app/src/styles/UserDashboard.css

1302 lines
22 KiB
CSS
Raw Normal View History

refactor(editor): 提取行为树编辑器为独立包并重构编辑器架构 (#216) * refactor(editor): 提取行为树编辑器为独立包并重构编辑器架构 * feat(editor): 添加插件市场功能 * feat(editor): 重构插件市场以支持版本管理和ZIP打包 * feat(editor): 重构插件发布流程并修复React渲染警告 * fix(plugin): 修复插件发布和市场的路径不一致问题 * feat: 重构插件发布流程并添加插件删除功能 * fix(editor): 完善插件删除功能并修复多个关键问题 * fix(auth): 修复自动登录与手动登录的竞态条件问题 * feat(editor): 重构插件管理流程 * feat(editor): 支持 ZIP 文件直接发布插件 - 新增 PluginSourceParser 解析插件源 - 重构发布流程支持文件夹和 ZIP 两种方式 - 优化发布向导 UI * feat(editor): 插件市场支持多版本安装 - 插件解压到项目 plugins 目录 - 新增 Tauri 后端安装/卸载命令 - 支持选择任意版本安装 - 修复打包逻辑,保留完整 dist 目录结构 * feat(editor): 个人中心支持多版本管理 - 合并同一插件的不同版本 - 添加版本历史展开/折叠功能 - 禁止有待审核 PR 时更新插件 * fix(editor): 修复 InspectorRegistry 服务注册 - InspectorRegistry 实现 IService 接口 - 注册到 Core.services 供插件使用 * feat(behavior-tree-editor): 完善插件注册和文件操作 - 添加文件创建模板和操作处理器 - 实现右键菜单创建行为树功能 - 修复文件读取权限问题(使用 Tauri 命令) - 添加 BehaviorTreeEditorPanel 组件 - 修复 rollup 配置支持动态导入 * feat(plugin): 完善插件构建和发布流程 * fix(behavior-tree-editor): 完整恢复编辑器并修复 Toast 集成 * fix(behavior-tree-editor): 修复节点选中、连线跟随和文件加载问题并优化性能 * fix(behavior-tree-editor): 修复端口连接失败问题并优化连线样式 * refactor(behavior-tree-editor): 移除调试面板功能简化代码结构 * refactor(behavior-tree-editor): 清理冗余代码合并重复逻辑 * feat(behavior-tree-editor): 完善编辑器核心功能增强扩展性 * fix(lint): 修复ESLint错误确保CI通过 * refactor(behavior-tree-editor): 优化编辑器工具栏和编译器功能 * refactor(behavior-tree-editor): 清理技术债务,优化代码质量 * fix(editor-app): 修复字符串替换安全问题
2025-11-18 14:46:51 +08:00
.user-dashboard-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 10000;
}
.user-dashboard {
background: #1e1e1e;
border: 1px solid #333;
border-radius: 8px;
width: 90%;
max-width: 900px;
max-height: 80vh;
display: flex;
flex-direction: column;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.dashboard-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 20px;
border-bottom: 1px solid #333;
}
.dashboard-title {
margin: 0;
font-size: 18px;
font-weight: 600;
color: #fff;
}
.dashboard-header-actions {
display: flex;
gap: 8px;
}
.dashboard-publish-btn {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
background: var(--color-accent, #0e639c);
border: 1px solid var(--color-accent, #0e639c);
border-radius: 4px;
color: #fff;
font-size: 13px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
}
.dashboard-publish-btn:hover {
background: var(--color-accent-hover, #0d5a8c);
}
.dashboard-refresh-btn {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
background: #2a2a2a;
border: 1px solid #444;
border-radius: 4px;
color: #fff;
font-size: 13px;
cursor: pointer;
transition: all 0.2s;
}
.dashboard-refresh-btn:hover:not(:disabled) {
background: #333;
border-color: #555;
}
.dashboard-refresh-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.dashboard-refresh-btn .spinning {
animation: spin 1s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.dashboard-close-btn {
padding: 6px;
background: transparent;
border: none;
color: #999;
cursor: pointer;
border-radius: 4px;
transition: all 0.2s;
}
.dashboard-close-btn:hover {
background: #2a2a2a;
color: #fff;
}
.dashboard-user-info {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 20px;
border-bottom: 1px solid #333;
}
.dashboard-user-avatar {
width: 48px;
height: 48px;
border-radius: 50%;
border: 2px solid #444;
}
.dashboard-user-details {
display: flex;
flex-direction: column;
gap: 4px;
}
.dashboard-user-name {
font-size: 16px;
font-weight: 600;
color: #fff;
}
.dashboard-user-login {
font-size: 13px;
color: #999;
}
.dashboard-tabs {
display: flex;
gap: 4px;
padding: 12px 20px 0;
border-bottom: 1px solid #333;
}
.dashboard-tab {
display: flex;
align-items: center;
gap: 6px;
padding: 8px 16px;
background: transparent;
border: none;
border-bottom: 2px solid transparent;
color: #999;
font-size: 13px;
cursor: pointer;
transition: all 0.2s;
}
.dashboard-tab:hover {
color: #fff;
background: rgba(255, 255, 255, 0.05);
}
.dashboard-tab.active {
color: #4a9eff;
border-bottom-color: #4a9eff;
}
.dashboard-content {
flex: 1;
overflow-y: auto;
padding: 20px;
}
.dashboard-content::-webkit-scrollbar {
width: 8px;
}
.dashboard-content::-webkit-scrollbar-track {
background: #1e1e1e;
}
.dashboard-content::-webkit-scrollbar-thumb {
background: #444;
border-radius: 4px;
}
.dashboard-content::-webkit-scrollbar-thumb:hover {
background: #555;
}
.dashboard-loading,
.dashboard-error,
.dashboard-empty {
text-align: center;
padding: 40px 20px;
color: #999;
font-size: 14px;
}
.dashboard-error-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60px 20px;
text-align: center;
}
.dashboard-error-container .error-icon {
color: rgba(255, 59, 48, 0.8);
margin-bottom: 16px;
}
.dashboard-error-container h3 {
margin: 0 0 8px 0;
font-size: 16px;
font-weight: 600;
color: #fff;
}
.dashboard-error-container .error-description {
margin: 0 0 12px 0;
color: #999;
font-size: 13px;
max-width: 400px;
}
.dashboard-error-container .error-details {
margin-bottom: 16px;
}
.dashboard-error-container .error-message {
margin: 0;
padding: 8px 12px;
background: rgba(255, 59, 48, 0.1);
border: 1px solid rgba(255, 59, 48, 0.3);
border-radius: 4px;
color: rgba(255, 59, 48, 0.9);
font-size: 12px;
font-family: 'Courier New', monospace;
}
.dashboard-error-container .retry-button {
display: flex;
align-items: center;
gap: 6px;
padding: 8px 16px;
background: var(--color-accent, #0e639c);
border: none;
border-radius: 4px;
color: #fff;
font-size: 13px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
}
.dashboard-error-container .retry-button:hover {
background: var(--color-accent-hover, #0d5a8c);
}
.dashboard-error {
color: #f48771;
}
.plugin-list,
.review-list {
display: flex;
flex-direction: column;
gap: 12px;
}
.plugin-card,
.review-card {
background: #252525;
border: 1px solid #333;
border-radius: 6px;
padding: 16px;
transition: all 0.2s;
}
.plugin-card:hover,
.review-card:hover {
border-color: #444;
background: #2a2a2a;
}
.plugin-header,
.review-header {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 12px;
}
.plugin-header svg,
.review-header svg {
flex-shrink: 0;
margin-top: 2px;
color: #4a9eff;
}
.plugin-info,
.review-info {
flex: 1;
min-width: 0;
}
.plugin-name,
.review-name {
margin: 0 0 4px 0;
font-size: 15px;
font-weight: 600;
color: #fff;
}
.review-version {
font-size: 13px;
font-weight: normal;
color: #999;
}
.plugin-description {
margin: 0;
font-size: 13px;
color: #999;
line-height: 1.4;
}
.status-badge {
display: inline-block;
padding: 2px 8px;
border-radius: 12px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
margin-top: 4px;
}
.status-badge.status-open {
background: rgba(74, 158, 255, 0.2);
color: #4a9eff;
}
.status-badge.status-merged {
background: rgba(92, 184, 92, 0.2);
color: #5cb85c;
}
.status-badge.status-closed {
background: rgba(153, 153, 153, 0.2);
color: #999;
}
.plugin-meta,
.review-meta {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-bottom: 12px;
font-size: 12px;
color: #999;
}
.plugin-meta-item,
.review-meta-item {
display: flex;
align-items: center;
}
.plugin-meta-item strong {
color: #fff;
margin-left: 4px;
}
.plugin-actions,
.review-actions {
display: flex;
gap: 12px;
}
.plugin-link,
.review-link {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 6px 12px;
background: #2a2a2a;
border: 1px solid #444;
border-radius: 4px;
color: #4a9eff;
font-size: 12px;
text-decoration: none;
transition: all 0.2s;
}
.plugin-link:hover,
.review-link:hover {
background: #333;
border-color: #4a9eff;
}
.plugin-link svg,
.review-link svg {
flex-shrink: 0;
}
.review-delete-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
background: rgba(255, 59, 48, 0.1);
border: 1px solid rgba(255, 59, 48, 0.3);
border-radius: 4px;
color: #ff3b30;
font-size: 12px;
cursor: pointer;
transition: all 0.2s;
}
.review-delete-btn:hover:not(:disabled) {
background: rgba(255, 59, 48, 0.2);
border-color: #ff3b30;
}
.review-delete-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.review-delete-btn svg {
flex-shrink: 0;
}
.confirm-dialog-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
display: flex;
justify-content: center;
align-items: center;
z-index: 10001;
}
.confirm-dialog {
background: #1e1e1e;
border: 1px solid #444;
border-radius: 8px;
padding: 24px;
width: 90%;
max-width: 400px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.confirm-dialog h3 {
margin: 0 0 12px 0;
font-size: 18px;
font-weight: 600;
color: #fff;
}
.confirm-dialog p {
margin: 0 0 20px 0;
font-size: 14px;
color: #ccc;
line-height: 1.5;
}
.confirm-dialog-actions {
display: flex;
justify-content: flex-end;
gap: 12px;
}
.confirm-dialog-cancel,
.confirm-dialog-confirm {
padding: 8px 16px;
border-radius: 4px;
font-size: 13px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
border: none;
}
.confirm-dialog-cancel {
background: #2a2a2a;
color: #fff;
border: 1px solid #444;
}
.confirm-dialog-cancel:hover:not(:disabled) {
background: #333;
border-color: #555;
}
.confirm-dialog-confirm {
background: #ff3b30;
color: #fff;
}
.confirm-dialog-confirm:hover:not(:disabled) {
background: #e62e24;
}
.confirm-dialog-cancel:disabled,
.confirm-dialog-confirm:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.review-filters {
display: flex;
gap: 8px;
margin-bottom: 16px;
padding-bottom: 12px;
border-bottom: 1px solid #333;
}
.filter-btn {
padding: 6px 12px;
background: #2a2a2a;
border: 1px solid #444;
border-radius: 4px;
color: #999;
font-size: 12px;
cursor: pointer;
transition: all 0.2s;
}
.filter-btn:hover {
background: #333;
color: #fff;
border-color: #555;
}
.filter-btn.active {
background: rgba(74, 158, 255, 0.2);
border-color: #4a9eff;
color: #4a9eff;
}
.review-checks {
margin: 12px 0;
padding: 12px;
background: #2a2a2a;
border: 1px solid #333;
border-radius: 4px;
}
.checks-header {
font-size: 12px;
font-weight: 600;
color: #fff;
margin-bottom: 8px;
}
.checks-list {
display: flex;
flex-direction: column;
gap: 6px;
}
.check-status {
display: flex;
align-items: center;
gap: 8px;
padding: 6px 8px;
border-radius: 4px;
font-size: 12px;
background: #252525;
}
.check-status.check-success {
border-left: 3px solid #5cb85c;
}
.check-status.check-failure {
border-left: 3px solid #ff3b30;
}
.check-status.check-pending {
border-left: 3px solid #f5a623;
}
.check-icon-success {
color: #5cb85c;
flex-shrink: 0;
}
.check-icon-failure {
color: #ff3b30;
flex-shrink: 0;
}
.check-icon-pending {
color: #f5a623;
flex-shrink: 0;
}
.check-name {
flex: 1;
color: #fff;
}
.check-details-link {
font-size: 11px;
color: #4a9eff;
text-decoration: none;
padding: 2px 6px;
border-radius: 3px;
transition: all 0.2s;
}
.check-details-link:hover {
background: rgba(74, 158, 255, 0.1);
}
.review-feedback {
margin: 12px 0;
}
.feedback-toggle-btn {
display: flex;
align-items: center;
gap: 6px;
width: 100%;
padding: 8px 12px;
background: #2a2a2a;
border: 1px solid #444;
border-radius: 4px;
color: #fff;
font-size: 12px;
cursor: pointer;
transition: all 0.2s;
}
.feedback-toggle-btn:hover {
background: #333;
border-color: #4a9eff;
}
.feedback-content {
margin-top: 8px;
padding: 12px;
background: #252525;
border: 1px solid #333;
border-radius: 4px;
}
.reviews-section,
.comments-section {
margin-bottom: 16px;
}
.reviews-section:last-child,
.comments-section:last-child {
margin-bottom: 0;
}
.section-header {
font-size: 12px;
font-weight: 600;
color: #fff;
margin-bottom: 8px;
}
.review-item,
.comment-item {
margin-bottom: 12px;
padding: 10px;
background: #2a2a2a;
border-left: 3px solid #444;
border-radius: 4px;
}
.review-item:last-child,
.comment-item:last-child {
margin-bottom: 0;
}
.review-item-header,
.comment-item-header {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 8px;
}
.reviewer-avatar,
.commenter-avatar {
width: 24px;
height: 24px;
border-radius: 50%;
border: 1px solid #444;
}
.reviewer-info,
.commenter-info {
flex: 1;
display: flex;
align-items: center;
gap: 8px;
}
.reviewer-name,
.commenter-name {
font-size: 12px;
font-weight: 600;
color: #4a9eff;
}
.review-date,
.comment-date {
font-size: 11px;
color: #999;
}
.review-state-badge {
font-size: 10px;
padding: 2px 6px;
border-radius: 10px;
font-weight: 600;
text-transform: uppercase;
}
.review-state-badge.review-state-approved {
background: rgba(92, 184, 92, 0.2);
color: #5cb85c;
}
.review-state-badge.review-state-changes {
background: rgba(255, 59, 48, 0.2);
color: #ff3b30;
}
.review-state-badge.review-state-commented {
background: rgba(245, 166, 35, 0.2);
color: #f5a623;
}
.review-item-body,
.comment-item-body {
font-size: 12px;
color: #ccc;
line-height: 1.5;
}
.markdown-content {
word-wrap: break-word;
}
.markdown-content p {
margin: 0 0 8px 0;
}
.markdown-content p:last-child {
margin-bottom: 0;
}
.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4,
.markdown-content h5,
.markdown-content h6 {
margin: 12px 0 8px 0;
color: #fff;
font-weight: 600;
}
.markdown-content h1 {
font-size: 16px;
border-bottom: 1px solid #444;
padding-bottom: 4px;
}
.markdown-content h2 {
font-size: 15px;
border-bottom: 1px solid #444;
padding-bottom: 4px;
}
.markdown-content h3 {
font-size: 14px;
}
.markdown-content h4 {
font-size: 13px;
}
.markdown-content h5,
.markdown-content h6 {
font-size: 12px;
}
.markdown-content code {
background: #1e1e1e;
padding: 2px 4px;
border-radius: 3px;
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
font-size: 11px;
color: #f5a623;
}
.markdown-content pre {
background: #1e1e1e;
border: 1px solid #444;
border-radius: 4px;
padding: 8px;
overflow-x: auto;
margin: 8px 0;
}
.markdown-content pre code {
background: transparent;
padding: 0;
color: #ccc;
font-size: 11px;
}
.markdown-content blockquote {
border-left: 3px solid #4a9eff;
padding-left: 12px;
margin: 8px 0;
color: #999;
}
.markdown-content ul,
.markdown-content ol {
margin: 8px 0;
padding-left: 24px;
}
.markdown-content li {
margin: 4px 0;
}
.markdown-content a,
.markdown-link {
color: #4a9eff;
text-decoration: none;
cursor: pointer;
}
.markdown-content a:hover,
.markdown-link:hover {
text-decoration: underline;
}
.markdown-content table {
border-collapse: collapse;
width: 100%;
margin: 8px 0;
}
.markdown-content table th,
.markdown-content table td {
border: 1px solid #444;
padding: 6px 8px;
text-align: left;
}
.markdown-content table th {
background: #2a2a2a;
font-weight: 600;
color: #fff;
}
.markdown-content table tr:nth-child(even) {
background: #252525;
}
.markdown-content hr {
border: none;
border-top: 1px solid #444;
margin: 12px 0;
}
.markdown-content img {
max-width: 100%;
height: auto;
border-radius: 4px;
margin: 8px 0;
}
.markdown-content input[type="checkbox"] {
margin-right: 6px;
}
.markdown-content sub,
.markdown-content sup {
font-size: 10px;
line-height: 0;
position: relative;
vertical-align: baseline;
}
.markdown-content sub {
bottom: -0.25em;
color: #999;
}
.markdown-content sup {
top: -0.5em;
}
.markdown-content strong {
font-weight: 600;
color: #fff;
}
.markdown-content em {
font-style: italic;
}
.markdown-content del {
text-decoration: line-through;
opacity: 0.7;
}
.markdown-content kbd {
background: #2a2a2a;
border: 1px solid #444;
border-radius: 3px;
padding: 2px 4px;
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
font-size: 11px;
}
.markdown-content mark {
background: rgba(245, 166, 35, 0.3);
color: #fff;
padding: 2px 4px;
border-radius: 2px;
}
.btn-update {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
border: none;
border-radius: 4px;
background: var(--color-accent, #0e639c);
color: #fff;
font-size: 12px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
}
.btn-update:hover {
background: var(--color-accent-hover, #0d5a8c);
}
.btn-delete {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
border: none;
border-radius: 4px;
background: transparent;
color: #ff3b30;
font-size: 12px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
}
.btn-delete:hover {
background: rgba(255, 59, 48, 0.1);
}
.confirm-dialog-input-group {
margin: 16px 0;
}
.confirm-dialog-input-group label {
display: block;
font-size: 13px;
font-weight: 500;
color: #ccc;
margin-bottom: 8px;
}
.confirm-dialog-textarea {
width: 100%;
min-height: 100px;
padding: 10px;
background: #2a2a2a;
border: 1px solid #444;
border-radius: 4px;
color: #fff;
font-size: 13px;
font-family: inherit;
resize: vertical;
transition: border-color 0.2s;
}
.confirm-dialog-textarea:focus {
outline: none;
border-color: #4a9eff;
}
.confirm-dialog-textarea:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.confirm-dialog-progress {
margin: 16px 0;
}
.progress-bar {
width: 100%;
height: 4px;
background: #2a2a2a;
border-radius: 2px;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, #4a9eff 0%, #357abd 100%);
transition: width 0.3s ease;
}
.progress-message {
margin-top: 8px;
font-size: 12px;
color: #999;
text-align: center;
}
.confirm-dialog-danger {
background: #ff3b30 !important;
}
.confirm-dialog-danger:hover:not(:disabled) {
background: #e6342a !important;
}
.review-conflicts {
margin: 12px 0;
padding: 12px;
background: rgba(255, 59, 48, 0.1);
border: 1px solid rgba(255, 59, 48, 0.3);
border-left: 3px solid #ff3b30;
border-radius: 4px;
}
.conflicts-header {
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
font-weight: 600;
color: #ff3b30;
margin-bottom: 8px;
}
.conflicts-icon {
flex-shrink: 0;
}
.conflicts-files {
margin-top: 8px;
}
.conflicts-files-label {
font-size: 12px;
color: #ccc;
margin-bottom: 6px;
}
.conflicts-files-list {
list-style: none;
padding: 0;
margin: 0;
}
.conflict-file-item {
font-size: 12px;
color: #ff3b30;
padding: 4px 8px;
background: rgba(255, 59, 48, 0.05);
border-radius: 3px;
margin-bottom: 4px;
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}
.conflict-file-item:last-child {
margin-bottom: 0;
}
.conflicts-actions {
display: flex;
gap: 8px;
margin-top: 10px;
}
.resolve-conflicts-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 8px 16px;
background: rgba(74, 158, 255, 0.2);
border: 1px solid #4a9eff;
border-radius: 4px;
color: #4a9eff;
font-size: 12px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
}
.resolve-conflicts-btn:hover:not(:disabled) {
background: rgba(74, 158, 255, 0.3);
border-color: #5ba9ff;
}
.resolve-conflicts-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.recreate-pr-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 8px 16px;
background: rgba(92, 184, 92, 0.2);
border: 1px solid #5cb85c;
border-radius: 4px;
color: #5cb85c;
font-size: 12px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
}
.recreate-pr-btn:hover:not(:disabled) {
background: rgba(92, 184, 92, 0.3);
border-color: #6cc76c;
}
.recreate-pr-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.open-github-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 8px 16px;
background: transparent;
border: 1px solid #999;
border-radius: 4px;
color: #999;
font-size: 12px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
}
.open-github-btn:hover:not(:disabled) {
background: rgba(153, 153, 153, 0.1);
border-color: #aaa;
color: #aaa;
}
.open-github-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
/* 版本历史样式 */
.btn-version-toggle {
margin-left: 8px;
padding: 2px 8px;
background: rgba(14, 99, 156, 0.1);
border: 1px solid rgba(14, 99, 156, 0.3);
border-radius: 4px;
color: var(--color-accent, #0e639c);
font-size: 11px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
}
.btn-version-toggle:hover {
background: rgba(14, 99, 156, 0.2);
border-color: var(--color-accent, #0e639c);
}
.version-history-list {
margin-top: 16px;
padding-top: 16px;
border-top: 1px solid #333;
}
.version-history-list h4 {
margin: 0 0 12px 0;
font-size: 13px;
font-weight: 600;
color: var(--color-text-secondary, #858585);
}
.versions-container {
display: flex;
flex-direction: column;
gap: 8px;
}
.version-item {
display: flex;
align-items: center;
gap: 12px;
padding: 8px 12px;
background: var(--color-bg-secondary, #252526);
border: 1px solid var(--color-border, #333);
border-radius: 4px;
transition: all 0.2s;
}
.version-item:hover {
background: var(--color-bg-hover, #2d2d30);
border-color: var(--color-accent, #0e639c);
}
.version-number {
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
font-size: 13px;
font-weight: 600;
color: var(--color-accent, #0e639c);
min-width: 60px;
}
.version-date {
flex: 1;
font-size: 12px;
color: var(--color-text-secondary, #858585);
}
.version-pr-link {
display: flex;
align-items: center;
justify-content: center;
padding: 4px;
color: var(--color-text-secondary, #858585);
border-radius: 4px;
transition: all 0.2s;
cursor: pointer;
}
.version-pr-link:hover {
background: var(--color-bg-hover, #2d2d30);
color: var(--color-accent, #0e639c);
}
.pending-pr-badge {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
background: rgba(244, 180, 0, 0.1);
border: 1px solid rgba(244, 180, 0, 0.3);
border-radius: 4px;
color: #f4b400;
font-size: 12px;
font-weight: 500;
cursor: help;
}
.pending-pr-badge svg {
flex-shrink: 0;
}
.btn-update:disabled {
opacity: 0.5;
cursor: not-allowed;
}