@pitvox/partner-react 0.5.6 → 0.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +763 -674
- package/dist/styles.css +42 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1971,7 +1971,6 @@
|
|
|
1971
1971
|
.pvx-dash-tooltip--scrollable {
|
|
1972
1972
|
max-height: 20rem;
|
|
1973
1973
|
overflow-y: auto;
|
|
1974
|
-
pointer-events: auto;
|
|
1975
1974
|
}
|
|
1976
1975
|
|
|
1977
1976
|
/* ─── Records list (compact layout) ───────────────────────────── */
|
|
@@ -2161,6 +2160,48 @@
|
|
|
2161
2160
|
border-top: 1px solid var(--pvx-border);
|
|
2162
2161
|
}
|
|
2163
2162
|
|
|
2163
|
+
.pvx-server-info {
|
|
2164
|
+
display: flex;
|
|
2165
|
+
flex-wrap: wrap;
|
|
2166
|
+
gap: 0.375rem;
|
|
2167
|
+
margin-top: 0.25rem;
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2170
|
+
.pvx-server-detail {
|
|
2171
|
+
display: inline-flex;
|
|
2172
|
+
align-items: center;
|
|
2173
|
+
gap: 0.25rem;
|
|
2174
|
+
font-size: 0.75rem;
|
|
2175
|
+
color: var(--pvx-text-muted);
|
|
2176
|
+
background: var(--pvx-bg-subtle, rgba(128, 128, 128, 0.1));
|
|
2177
|
+
padding: 0.125rem 0.5rem;
|
|
2178
|
+
border-radius: 4px;
|
|
2179
|
+
font-family: monospace;
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
.pvx-server-detail--clickable {
|
|
2183
|
+
cursor: pointer;
|
|
2184
|
+
transition: background 0.15s;
|
|
2185
|
+
}
|
|
2186
|
+
|
|
2187
|
+
.pvx-server-detail--clickable:hover {
|
|
2188
|
+
background: var(--pvx-bg-hover, rgba(128, 128, 128, 0.2));
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
.pvx-server-icon {
|
|
2192
|
+
flex-shrink: 0;
|
|
2193
|
+
opacity: 0.7;
|
|
2194
|
+
}
|
|
2195
|
+
|
|
2196
|
+
.pvx-server-icon--action {
|
|
2197
|
+
opacity: 0.5;
|
|
2198
|
+
}
|
|
2199
|
+
|
|
2200
|
+
.pvx-server-icon--copied {
|
|
2201
|
+
color: var(--pvx-success, #22c55e);
|
|
2202
|
+
opacity: 1;
|
|
2203
|
+
}
|
|
2204
|
+
|
|
2164
2205
|
/* ═══════════════════════════════════════════════════════════════════
|
|
2165
2206
|
Notifications
|
|
2166
2207
|
═══════════════════════════════════════════════════════════════════ */
|
package/package.json
CHANGED