handler-playable-sdk 0.3.65 → 0.3.67

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.
@@ -871,6 +871,24 @@
871
871
  background: var(--ui-terracotta);
872
872
  }
873
873
 
874
+ /* Fixed Layout Container */
875
+ .preview-shell.layout-fixed .preview-main {
876
+ display: grid;
877
+ grid-template-columns: 300px 1fr 350px;
878
+ grid-template-rows: 1fr auto;
879
+ gap: 0;
880
+ overflow: hidden;
881
+ }
882
+
883
+ .preview-shell.layout-fixed .preview-container {
884
+ position: relative;
885
+ grid-column: 2;
886
+ grid-row: 1;
887
+ background: var(--ui-bg-3);
888
+ border-left: 1px solid var(--ui-border);
889
+ border-right: 1px solid var(--ui-border);
890
+ }
891
+
874
892
  /* Responsive toolbar - width responsive, height fixed */
875
893
  /* Scene Panel Styles - MUST BE OUTSIDE MEDIA QUERY */
876
894
  .scene-panel.collapsed .scene-panel-toggle {
@@ -2593,6 +2611,18 @@
2593
2611
  pointer-events: none;
2594
2612
  }
2595
2613
 
2614
+ /* Docked Console for Fixed Layout */
2615
+ .preview-shell.layout-fixed .console-panel {
2616
+ position: static;
2617
+ grid-column: 1 / span 3;
2618
+ grid-row: 2;
2619
+ height: 200px;
2620
+ border-top: 1px solid var(--ui-border);
2621
+ opacity: 1 !important;
2622
+ visibility: visible !important;
2623
+ pointer-events: auto !important;
2624
+ }
2625
+
2596
2626
  .console-msg {
2597
2627
  font-family: 'Consolas', 'Monaco', monospace;
2598
2628
  font-size: 12px;
@@ -2728,6 +2758,162 @@
2728
2758
  z-index: 1000;
2729
2759
  }
2730
2760
 
2761
+ /* Docked Styles for Fixed Layout */
2762
+ .preview-shell.layout-fixed .debug-overlay {
2763
+ position: static;
2764
+ display: contents;
2765
+ /* Let children participate in grid directly or via parent */
2766
+ }
2767
+
2768
+ .preview-shell.layout-fixed .debug-workbench {
2769
+ position: static;
2770
+ grid-column: 3;
2771
+ grid-row: 1;
2772
+ width: 100%;
2773
+ height: 100%;
2774
+ border-radius: 0;
2775
+ border-top: none;
2776
+ border-right: none;
2777
+ border-bottom: none;
2778
+ box-shadow: none;
2779
+ }
2780
+
2781
+ .preview-shell.layout-fixed .scene-panel.scene-objects {
2782
+ position: static;
2783
+ grid-column: 1;
2784
+ grid-row: 1;
2785
+ width: 100%;
2786
+ height: 100%;
2787
+ max-height: none;
2788
+ border-radius: 0;
2789
+ border-top: none;
2790
+ border-left: none;
2791
+ border-bottom: none;
2792
+ box-shadow: none;
2793
+ position: relative;
2794
+ }
2795
+
2796
+ .panel-resize-handle-v,
2797
+ .workbench-resize-handle-v {
2798
+ position: absolute;
2799
+ top: 0;
2800
+ bottom: 0;
2801
+ width: 4px;
2802
+ cursor: ew-resize;
2803
+ background: transparent;
2804
+ transition: background 0.2s;
2805
+ z-index: 10;
2806
+ }
2807
+
2808
+ .panel-resize-handle-v {
2809
+ right: 0;
2810
+ }
2811
+
2812
+ .workbench-resize-handle-v {
2813
+ left: 0;
2814
+ }
2815
+
2816
+ .panel-resize-handle-v:hover,
2817
+ .workbench-resize-handle-v:hover,
2818
+ .scene-panel.resizing .panel-resize-handle-v,
2819
+ .debug-workbench.resizing .workbench-resize-handle-v {
2820
+ background: var(--ui-terracotta);
2821
+ }
2822
+
2823
+ .preview-shell.layout-fixed .workbench-header,
2824
+ .preview-shell.layout-fixed .scene-panel-header {
2825
+ cursor: default;
2826
+ }
2827
+
2828
+ /* Bottom Dock Styles */
2829
+ .bottom-dock {
2830
+ background: var(--ui-bg-2);
2831
+ border-top: 1px solid var(--ui-border);
2832
+ display: flex;
2833
+ flex-direction: column;
2834
+ height: 250px;
2835
+ grid-column: 1 / span 3;
2836
+ grid-row: 2;
2837
+ overflow: hidden;
2838
+ z-index: 100;
2839
+ }
2840
+
2841
+ .bottom-dock.hidden {
2842
+ display: none;
2843
+ }
2844
+
2845
+ .bottom-dock-tabs {
2846
+ display: flex;
2847
+ padding: 8px 16px;
2848
+ gap: 16px;
2849
+ background: var(--ui-bg-3);
2850
+ border-bottom: 1px solid var(--ui-border);
2851
+ }
2852
+
2853
+ .bottom-dock-tab {
2854
+ background: none;
2855
+ border: none;
2856
+ color: var(--ui-muted);
2857
+ font-size: 11px;
2858
+ font-weight: 600;
2859
+ text-transform: uppercase;
2860
+ letter-spacing: 0.5px;
2861
+ cursor: pointer;
2862
+ padding: 4px 0;
2863
+ border-bottom: 2px solid transparent;
2864
+ transition: all 0.2s;
2865
+ }
2866
+
2867
+ .bottom-dock-tab:hover {
2868
+ color: var(--ui-text);
2869
+ }
2870
+
2871
+ .bottom-dock-tab.active {
2872
+ color: var(--ui-terracotta);
2873
+ border-bottom-color: var(--ui-terracotta);
2874
+ }
2875
+
2876
+ .bottom-dock-content {
2877
+ flex: 1;
2878
+ overflow: hidden;
2879
+ position: relative;
2880
+ }
2881
+
2882
+ .bottom-dock-panel {
2883
+ display: none;
2884
+ height: 100%;
2885
+ }
2886
+
2887
+ .bottom-dock-panel.active {
2888
+ display: block;
2889
+ }
2890
+
2891
+ #dock-console-content {
2892
+ background: var(--ui-bg-1);
2893
+ }
2894
+
2895
+ #dock-console-content .console-messages {
2896
+ height: 100%;
2897
+ overflow-y: auto;
2898
+ padding: 12px;
2899
+ }
2900
+
2901
+ .bottom-dock-resize-handle {
2902
+ position: absolute;
2903
+ top: 0;
2904
+ left: 0;
2905
+ right: 0;
2906
+ height: 4px;
2907
+ cursor: ns-resize;
2908
+ background: transparent;
2909
+ transition: background 0.2s;
2910
+ }
2911
+
2912
+ .bottom-dock-resize-handle:hover,
2913
+ .bottom-dock.resizing .bottom-dock-resize-handle {
2914
+ background: var(--ui-terracotta);
2915
+ }
2916
+
2731
2917
  .workbench-header {
2732
2918
  display: flex;
2733
2919
  align-items: center;
@@ -2801,7 +2987,6 @@
2801
2987
  z-index: 10;
2802
2988
  }
2803
2989
 
2804
-
2805
2990
  /* ========== 07-panels.css ========== */
2806
2991
  /* 07 Panels */
2807
2992
  /* Auto-generated from preview.css */