Spaces:
Running
Running
File size: 1,618 Bytes
c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 ab7559f c993983 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | .sp-card {
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 8px;
margin-bottom: 8px;
background: var(--surface);
transition: box-shadow 0.2s;
}
.sp-card:hover {
box-shadow: var(--shadow-sm);
}
.sp-header {
display: flex;
align-items: center;
gap: 5px;
}
.sp-name-input {
flex: 1;
min-width: 0;
font-size: 11px;
background: transparent !important;
border: 1px solid transparent !important;
font-weight: 600;
}
.sp-name-input:focus {
border-color: var(--border) !important;
background: var(--bg) !important;
}
.sp-body {
margin-top: 6px;
padding-top: 6px;
border-top: 1px solid var(--border);
}
.sp-tabs {
display: flex;
border-bottom: 2px solid var(--border);
margin-bottom: 8px;
gap: 0;
}
.sp-tab {
padding: 4px 10px;
border: none;
background: none;
font-size: 11px;
font-weight: 500;
color: var(--text-muted);
border-bottom: 2px solid transparent;
margin-bottom: -2px;
cursor: pointer;
transition: all 0.15s;
}
.sp-tab:hover {
color: var(--text-main);
}
.sp-tab.active {
color: var(--primary);
border-bottom-color: var(--primary);
font-weight: 600;
}
.sp-section {
padding: 4px 0;
}
.sp-section-title {
font-size: 10px;
font-weight: 700;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 4px;
}
/* Child cards - specifically for hierarchical views */
.child-card {
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 6px;
margin-bottom: 6px;
background: var(--surface-hover);
border-left: 3px solid var(--primary);
}
|