@basic-genomics/hivtrace-viz 1.2.0 → 1.2.2

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.
@@ -312,10 +312,29 @@
312
312
 
313
313
  .hivtrace-pill-row {
314
314
  display: flex;
315
- flex-wrap: wrap;
315
+ flex-wrap: nowrap;
316
316
  gap: 8px;
317
- max-height: 120px;
318
- overflow-y: auto;
317
+ overflow-x: auto;
318
+ padding: 4px 0 8px 0;
319
+ }
320
+
321
+ /* Horizontal scrollbar for pill row */
322
+ .hivtrace-pill-row::-webkit-scrollbar {
323
+ height: 6px;
324
+ }
325
+
326
+ .hivtrace-pill-row::-webkit-scrollbar-track {
327
+ background: #f1f1f1;
328
+ border-radius: 3px;
329
+ }
330
+
331
+ .hivtrace-pill-row::-webkit-scrollbar-thumb {
332
+ background: #c1c1c1;
333
+ border-radius: 3px;
334
+ }
335
+
336
+ .hivtrace-pill-row::-webkit-scrollbar-thumb:hover {
337
+ background: #a1a1a1;
319
338
  }
320
339
 
321
340
  /* 横向 Pill 样式 */
package/dist/hivtrace.css CHANGED
@@ -11975,10 +11975,40 @@ circle.cluster {
11975
11975
  border-radius: 6px;
11976
11976
  }
11977
11977
 
11978
+ /* Force scrollbar visibility on macOS/WebKit browsers */
11979
+ #trace-results #network_tag::-webkit-scrollbar,
11980
+ .hivtrace-network-svg-container::-webkit-scrollbar {
11981
+ width: 8px;
11982
+ height: 8px;
11983
+ }
11984
+
11985
+ #trace-results #network_tag::-webkit-scrollbar-track,
11986
+ .hivtrace-network-svg-container::-webkit-scrollbar-track {
11987
+ background: #f1f1f1;
11988
+ border-radius: 4px;
11989
+ }
11990
+
11991
+ #trace-results #network_tag::-webkit-scrollbar-thumb,
11992
+ .hivtrace-network-svg-container::-webkit-scrollbar-thumb {
11993
+ background: #c1c1c1;
11994
+ border-radius: 4px;
11995
+ }
11996
+
11997
+ #trace-results #network_tag::-webkit-scrollbar-thumb:hover,
11998
+ .hivtrace-network-svg-container::-webkit-scrollbar-thumb:hover {
11999
+ background: #a1a1a1;
12000
+ }
12001
+
11978
12002
  .nav-trace {
11979
12003
  margin-top: 5px;
11980
12004
  }
11981
12005
 
12006
+ /* Statistics tab - scrollable content area without affecting tabs */
12007
+ #trace-attributes {
12008
+ overflow-y: auto;
12009
+ height: calc(100vh - 120px);
12010
+ }
12011
+
11982
12012
  /* Checkbox and label vertical alignment - only for hide_filter addon */
11983
12013
  input[data-hivtrace-ui-role="hide_filter"] {
11984
12014
  vertical-align: middle;