可动态识别属性

This commit is contained in:
YHH
2025-10-15 17:15:05 +08:00
parent b69b81f63a
commit fb7a1b1282
30 changed files with 2069 additions and 461 deletions

View File

@@ -2,15 +2,16 @@
display: flex;
flex-direction: column;
height: 100%;
background: #1e1e1e;
background: var(--color-bg-base);
}
.tab-header {
background: #252526;
border-bottom: 1px solid #3e3e3e;
min-height: 35px;
background: var(--color-bg-elevated);
border-bottom: 1px solid var(--color-border-default);
min-height: 38px;
display: flex;
align-items: flex-end;
flex-shrink: 0;
}
.tab-list {
@@ -22,37 +23,42 @@
.tab-item {
display: flex;
align-items: center;
gap: 6px;
padding: 8px 12px;
gap: var(--spacing-sm);
padding: var(--spacing-sm) var(--spacing-md);
background: transparent;
color: #969696;
border-right: 1px solid #3e3e3e;
color: var(--color-text-secondary);
border-right: 1px solid var(--color-border-default);
cursor: pointer;
transition: all 0.2s ease;
font-size: 13px;
transition: all var(--transition-fast);
font-size: var(--font-size-sm);
font-weight: var(--font-weight-medium);
user-select: none;
position: relative;
}
.tab-item::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 2px;
background-color: transparent;
transition: background-color var(--transition-fast);
}
.tab-item:hover {
background: #2a2d2e;
color: #cccccc;
background: var(--color-bg-hover);
color: var(--color-text-primary);
}
.tab-item.active {
background: #1e1e1e;
color: #ffffff;
border-bottom: 2px solid #007acc;
background: var(--color-bg-base);
color: var(--color-text-primary);
}
.tab-item.active::after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
right: 0;
height: 1px;
background: #1e1e1e;
background-color: var(--color-primary);
}
.tab-title {
@@ -60,25 +66,32 @@
}
.tab-close {
width: 16px;
height: 16px;
display: flex;
display: inline-flex;
align-items: center;
justify-content: center;
width: 16px;
height: 16px;
background: transparent;
border: none;
color: #858585;
color: var(--color-text-tertiary);
cursor: pointer;
border-radius: 3px;
border-radius: var(--radius-sm);
font-size: 18px;
line-height: 1;
padding: 0;
transition: all 0.2s ease;
transition: all var(--transition-fast);
opacity: 0;
}
.tab-item:hover .tab-close,
.tab-item.active .tab-close {
opacity: 1;
}
.tab-close:hover {
background: #4e4e4e;
color: #ffffff;
background: var(--color-bg-hover);
color: var(--color-error);
transform: scale(1.2);
}
.tab-content {