@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.
@@ -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;