File size: 1,320 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
.dc-page {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 48px);
  gap: 0px;
}

.dc-layout {
  display: flex;
  gap: 0;
  flex: 1;
  min-height: 0;
  border-top: 1px solid var(--border);
}

.dc-left {
  min-width: 250px;
  max-width: 600px;
  overflow-y: auto;
  padding: 8px;
  background: var(--bg-soft);
}

.dc-resizer {
  width: 6px;
  cursor: col-resize;
  background: transparent;
  transition: background 0.2s;
  flex: none;
  z-index: 10;
  margin: 0 -3px; /* Allow clicking between panels */
}

.dc-resizer:hover, .dc-resizer:active {
  background: var(--primary);
  width: 6px;
}

.dc-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow-y: auto;
}

.dc-toolbar {
  flex-wrap: wrap;
}

.dc-hint {
  font-size: 12px;
  color: var(--text-muted);
  padding: 12px;
  background: var(--primary-light);
  border-radius: var(--radius);
}

.dc-search-bar input {
  min-width: 180px;
}

/* Process separator */
.dc-separator {
  border: none;
  border-top: 3px solid var(--border);
  margin: 12px 0;
}

/* ── Stream data table: compact styles now managed via inline styles in component ── */
.stream-data-table table {
  width: 100%;
  border-collapse: collapse;
}
.stream-data-table tr:nth-child(even) td {
  background: var(--surface-hover, #f8f8f8);
}