Spaces:
Running
Running
File size: 1,748 Bytes
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 93 94 95 96 97 | .analysis-help-panel {
position: absolute;
top: 12px;
right: 12px;
width: 250px;
bottom: 12px;
background: var(--surface);
border: 1px solid var(--border);
display: flex;
flex-direction: column;
z-index: 1200;
border-radius: 12px;
box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
overflow: hidden;
}
.analysis-help-collapsed {
position: absolute;
top: 12px;
right: 12px;
z-index: 1200;
background: var(--surface);
border: 1px solid var(--border);
padding: 8px 12px;
border-radius: 20px;
font-size: 11px;
font-weight: 700;
color: var(--text-muted);
cursor: pointer;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
display: flex;
align-items: center;
gap: 6px;
transition: all 0.2s;
}
.analysis-help-collapsed:hover {
background: var(--surface-hover);
transform: translateY(-1px);
box-shadow: 0 6px 8px rgba(0,0,0,0.08);
}
.help-header {
padding: 12px 14px;
border-bottom: 1px solid var(--border);
display: flex;
justify-content: space-between;
align-items: center;
background: var(--bg-soft);
}
.help-header h3 {
font-size: 0.85rem;
margin: 0;
}
.help-close {
border: none;
background: none;
font-size: 18px;
cursor: pointer;
color: var(--text-muted);
}
.help-scroll {
padding: 12px 14px;
overflow-y: auto;
flex: 1;
}
.help-section {
margin-bottom: 16px;
}
.help-section h4 {
font-size: 0.78rem;
margin: 0 0 4px;
text-transform: uppercase;
color: var(--text-muted);
letter-spacing: 0.05em;
}
.help-section p {
font-size: 0.8rem;
line-height: 1.5;
margin: 0;
color: var(--text);
}
.help-footer {
padding: 12px 14px;
background: var(--bg-soft);
font-size: 0.72rem;
font-style: italic;
border-top: 1px solid var(--border);
}
|