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
/* Doctrine Map Explorer — tables (SL-093 PHASE-01) */
@layer layout {
/* ---------------------------------------------------------------------------
* Relationship table
* ------------------------------------------------------------------------- */
.relationship-table {
width: 100%;
border-collapse: collapse;
margin-bottom: 1rem;
}
.relationship-table th,
.relationship-table td {
border: 1px solid var(--border);
padding: 0.4rem 0.6rem;
font-size: 0.85rem;
text-align: left;
}
.relationship-table th {
background: var(--sidebar-bg);
font-weight: 600;
color: var(--muted);
}
/* ---------------------------------------------------------------------------
* Edge detail view
* ------------------------------------------------------------------------- */
.edge-id-link {
font-family: monospace;
font-size: 0.82rem;
}
/* ---------------------------------------------------------------------------
* Edge type legend
* ------------------------------------------------------------------------- */
.edge-legend {
margin-top: 0.75rem;
padding-top: 0.75rem;
border-top: 1px solid var(--border);
}
.legend-label {
display: block;
font-size: 0.8rem;
font-weight: 600;
color: var(--muted);
margin-bottom: 0.35rem;
}
.legend-items {
display: flex;
flex-direction: column;
gap: 0.15rem;
}
.legend-item {
font-size: 0.75rem;
color: var(--fg);
display: flex;
align-items: center;
gap: 0.35rem;
}
.legend-swatch {
display: inline-block;
width: 1rem;
height: 0.5rem;
border-radius: 2px;
flex-shrink: 0;
}
.legend-item.legend-dimmed {
opacity: 0.3;
}
}