@basic-genomics/hivtrace-viz 1.1.11 → 1.2.1

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.
@@ -11950,14 +11950,65 @@ circle.cluster {
11950
11950
  stroke-opacity: 0.3;
11951
11951
  }
11952
11952
 
11953
- #network_tag {
11953
+ /* Network SVG container - only in main network tab */
11954
+ #trace-results #network_tag {
11954
11955
  margin-top: 15px;
11956
+ overflow: scroll;
11957
+ height: calc(100vh - 200px);
11958
+ position: relative;
11959
+ border: 1px solid #e5e7eb;
11960
+ border-radius: 6px;
11961
+ }
11962
+
11963
+ /* Hide the cloned empty #network_tag in dynamic cluster views */
11964
+ .hivtrace-cluster-view #network_tag {
11965
+ display: none;
11966
+ }
11967
+
11968
+ /* SVG container for dynamic cluster views - same style as main network_tag */
11969
+ .hivtrace-network-svg-container {
11970
+ margin-top: 15px;
11971
+ overflow: scroll;
11972
+ height: calc(100vh - 200px);
11973
+ position: relative;
11974
+ border: 1px solid #e5e7eb;
11975
+ border-radius: 6px;
11976
+ }
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;
11955
12000
  }
11956
12001
 
11957
12002
  .nav-trace {
11958
12003
  margin-top: 5px;
11959
12004
  }
11960
12005
 
12006
+ /* Checkbox and label vertical alignment - only for hide_filter addon */
12007
+ input[data-hivtrace-ui-role="hide_filter"] {
12008
+ vertical-align: middle;
12009
+ margin-top: -3px !important;
12010
+ }
12011
+
11961
12012
  .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn{
11962
12013
  height: 36px !important;
11963
12014
  }