~cytrogen/gstack

ref: 78bc1d19687445fd09dd78c59d07781d2893a067 gstack/extension/content.css -rw-r--r-- 2.5 KiB
78bc1d19 — Garry Tan feat: design binary — real UI mockup generation for gstack skills (v0.13.0.0) (#551) 12 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/* gstack browse — ref overlay + status pill styles
 * Design system: DESIGN.md (amber accent, zinc neutrals)
 */

#gstack-ref-overlays {
  font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace !important;
}

/* Connection status pill — bottom-right corner */
#gstack-status-pill {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 2147483646;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 9999px;
  color: #e0e0e0;
  font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  pointer-events: auto;
  cursor: pointer;
  transition: opacity 0.5s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

#gstack-status-pill:hover {
  opacity: 1 !important;
}

.gstack-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.5);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  #gstack-status-pill {
    transition: none;
  }
}

.gstack-ref-badge {
  position: absolute;
  background: rgba(220, 38, 38, 0.9);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 4px;
  line-height: 14px;
  pointer-events: none;
  z-index: 2147483647;
}

/* Floating ref panel (used when positions are unknown) */
.gstack-ref-panel {
  position: fixed;
  bottom: 12px;
  right: 12px;
  width: 220px;
  max-height: 300px;
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid #262626;
  border-radius: 8px;
  overflow: hidden;
  pointer-events: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  font-size: 11px;
}

.gstack-ref-panel-header {
  padding: 6px 10px;
  background: #141414;
  border-bottom: 1px solid #262626;
  color: #FAFAFA;
  font-weight: 600;
  font-size: 11px;
}

.gstack-ref-panel-list {
  max-height: 260px;
  overflow-y: auto;
}

.gstack-ref-panel-row {
  padding: 3px 10px;
  border-bottom: 1px solid #1f1f1f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gstack-ref-panel-id {
  color: #FBBF24;
  font-weight: 600;
  margin-right: 4px;
}

.gstack-ref-panel-role {
  color: #A1A1AA;
  margin-right: 4px;
}

.gstack-ref-panel-name {
  color: #e0e0e0;
}

.gstack-ref-panel-more {
  padding: 4px 10px;
  color: #52525B;
  font-style: italic;
}