~cytrogen/gstack

ref: cf73db5f19040218ecd50d0b81acffd40b63f056 gstack/extension/inspector.css -rw-r--r-- 798 bytes
cf73db5f — Garry Tan feat: autoplan DX integration + README docs (v0.15.4.0) (#791) 6 days ago
                                                                                
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
/* gstack browse — CSS Inspector overlay styles
 * Injected alongside inspector.js into the active tab.
 * Design system: amber accent, zinc neutrals.
 */

#gstack-inspector-highlight {
  position: fixed;
  pointer-events: none;
  z-index: 2147483647;
  background: rgba(59, 130, 246, 0.15);
  border: 2px solid rgba(59, 130, 246, 0.6);
  border-radius: 2px;
  transition: top 50ms ease, left 50ms ease, width 50ms ease, height 50ms ease;
}

#gstack-inspector-tooltip {
  position: fixed;
  pointer-events: none;
  z-index: 2147483647;
  background: #27272A;
  color: #e0e0e0;
  font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 18px;
}