handler-playable-sdk 0.3.65 → 0.3.69

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: auto 1fr auto;
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 {
@@ -2022,7 +2040,7 @@
2022
2040
  .asset-editor-card {
2023
2041
  width: min(680px, 90vw);
2024
2042
  max-height: 85vh;
2025
- background: var(--ui-dark-panel);
2043
+ background: var(--ui-surface);
2026
2044
  border: 1px solid var(--ui-border);
2027
2045
  border-radius: 16px;
2028
2046
  box-shadow: var(--ui-shadow-strong);
@@ -2144,7 +2162,7 @@
2144
2162
  .asset-preview-card {
2145
2163
  width: min(720px, 92vw);
2146
2164
  max-height: 82vh;
2147
- background: var(--ui-dark-panel);
2165
+ background: var(--ui-surface);
2148
2166
  border: 1px solid var(--ui-border);
2149
2167
  border-radius: 14px;
2150
2168
  box-shadow: var(--ui-shadow);
@@ -2273,7 +2291,7 @@
2273
2291
 
2274
2292
  .asset-crop-card {
2275
2293
  width: min(860px, 96vw);
2276
- background: var(--ui-dark-panel);
2294
+ background: var(--ui-surface);
2277
2295
  border: 1px solid var(--ui-border);
2278
2296
  border-radius: 14px;
2279
2297
  box-shadow: var(--ui-shadow);
@@ -2422,12 +2440,12 @@
2422
2440
  justify-content: space-between;
2423
2441
  gap: 12px;
2424
2442
  padding: 10px 14px;
2425
- background-color: var(--ui-dark-panel);
2443
+ background-color: var(--ui-bg-2);
2426
2444
  color: var(--ui-text);
2427
2445
  font-size: 12px;
2428
2446
  user-select: none;
2429
2447
  cursor: move;
2430
- border-bottom: 1px solid var(--ui-overlay-light-1);
2448
+ border-bottom: 1px solid var(--ui-border);
2431
2449
  }
2432
2450
 
2433
2451
  .scene-panel-actions {
@@ -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,167 @@
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 .console-header,
2825
+ .preview-shell.layout-fixed .workbench-tab[data-tab="library"],
2826
+ .preview-shell.layout-fixed .workbench-tab-panel[data-tab-panel="library"],
2827
+ .preview-shell.layout-fixed .console-panel.docked-hidden,
2828
+ .preview-shell.layout-fixed #debug-close,
2829
+ .preview-shell.layout-fixed .scene-panel-toggle {
2830
+ display: none !important;
2831
+ }
2832
+
2833
+ /* Bottom Dock Styles */
2834
+ .bottom-dock {
2835
+ background: var(--ui-bg-2);
2836
+ border-top: 1px solid var(--ui-border);
2837
+ display: flex;
2838
+ flex-direction: column;
2839
+ height: 250px;
2840
+ grid-column: 1 / span 3;
2841
+ grid-row: 2;
2842
+ overflow: hidden;
2843
+ z-index: 100;
2844
+ }
2845
+
2846
+ .bottom-dock.hidden {
2847
+ display: none;
2848
+ }
2849
+
2850
+ .bottom-dock-tabs {
2851
+ display: flex;
2852
+ padding: 8px 16px;
2853
+ gap: 16px;
2854
+ background: var(--ui-bg-3);
2855
+ border-bottom: 1px solid var(--ui-border);
2856
+ }
2857
+
2858
+ .bottom-dock-tab {
2859
+ background: none;
2860
+ border: none;
2861
+ color: var(--ui-muted);
2862
+ font-size: 11px;
2863
+ font-weight: 600;
2864
+ text-transform: uppercase;
2865
+ letter-spacing: 0.5px;
2866
+ cursor: pointer;
2867
+ padding: 4px 0;
2868
+ border-bottom: 2px solid transparent;
2869
+ transition: all 0.2s;
2870
+ }
2871
+
2872
+ .bottom-dock-tab:hover {
2873
+ color: var(--ui-text);
2874
+ }
2875
+
2876
+ .bottom-dock-tab.active {
2877
+ color: var(--ui-terracotta);
2878
+ border-bottom-color: var(--ui-terracotta);
2879
+ }
2880
+
2881
+ .bottom-dock-content {
2882
+ flex: 1;
2883
+ overflow: hidden;
2884
+ position: relative;
2885
+ }
2886
+
2887
+ .bottom-dock-panel {
2888
+ display: none;
2889
+ height: 100%;
2890
+ }
2891
+
2892
+ .bottom-dock-panel.active {
2893
+ display: block;
2894
+ }
2895
+
2896
+ #dock-console-content {
2897
+ background: var(--ui-bg-1);
2898
+ }
2899
+
2900
+ #dock-console-content .console-messages {
2901
+ height: 100%;
2902
+ overflow-y: auto;
2903
+ padding: 12px;
2904
+ }
2905
+
2906
+ .bottom-dock-resize-handle {
2907
+ position: absolute;
2908
+ top: 0;
2909
+ left: 0;
2910
+ right: 0;
2911
+ height: 4px;
2912
+ cursor: ns-resize;
2913
+ background: transparent;
2914
+ transition: background 0.2s;
2915
+ }
2916
+
2917
+ .bottom-dock-resize-handle:hover,
2918
+ .bottom-dock.resizing .bottom-dock-resize-handle {
2919
+ background: var(--ui-terracotta);
2920
+ }
2921
+
2731
2922
  .workbench-header {
2732
2923
  display: flex;
2733
2924
  align-items: center;
@@ -2801,7 +2992,6 @@
2801
2992
  z-index: 10;
2802
2993
  }
2803
2994
 
2804
-
2805
2995
  /* ========== 07-panels.css ========== */
2806
2996
  /* 07 Panels */
2807
2997
  /* Auto-generated from preview.css */
@@ -4079,8 +4269,8 @@
4079
4269
  border-radius: 10px;
4080
4270
  padding: 12px;
4081
4271
  margin-top: 8px;
4082
- background-color: var(--ui-dark-panel);
4083
- color: var(--ui-dark-text);
4272
+ background-color: var(--ui-surface-2);
4273
+ color: var(--ui-text);
4084
4274
  }
4085
4275
 
4086
4276
  .debug-select {
@@ -4100,8 +4290,8 @@
4100
4290
  }
4101
4291
 
4102
4292
  .debug-select option {
4103
- background-color: var(--ui-dark-panel);
4104
- color: var(--ui-dark-text);
4293
+ background-color: var(--ui-surface);
4294
+ color: var(--ui-text);
4105
4295
  }
4106
4296
 
4107
4297
  /* Simple subsection with title and inline row of children */