deck.gl 9.3.0-alpha.1 → 9.3.0-alpha.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.
@@ -257,19 +257,6 @@
257
257
  padding: 4px;
258
258
  }
259
259
 
260
- /* FPS widget styles */
261
-
262
- .deck-widget.deck-widget-fps button {
263
- pointer-events: none;
264
- }
265
-
266
- .deck-widget.deck-widget-fps .text {
267
- color: var(--button-text, rgb(24, 24, 26));
268
- font-family: monospace;
269
- font-size: 8px;
270
- font-weight: 700;
271
- }
272
-
273
260
  /* Loading styles */
274
261
  @keyframes spin {
275
262
  to {
@@ -451,6 +438,12 @@
451
438
  }
452
439
 
453
440
  /* Stats styles */
441
+ .deck-widget.deck-widget-stats button .text {
442
+ color: var(--button-text, rgb(24, 24, 26));
443
+ font-family: monospace;
444
+ font-size: 8px;
445
+ font-weight: 700;
446
+ }
454
447
  .deck-widget-stats-container {
455
448
  border-radius: var(--button-corner-radius, 8px);
456
449
  display: inline-flex;
@@ -647,3 +640,47 @@
647
640
  .deck-widget-scrollbar[data-placement^=bottom-] .deck-widget-range--horizontal {
648
641
  bottom: 0;
649
642
  }
643
+
644
+ /** Splitter */
645
+ .deck-widget.deck-widget-splitter {
646
+ position: absolute;
647
+ margin: 0;
648
+ left: 0;
649
+ right: 0;
650
+ top: 0;
651
+ bottom: 0;
652
+ }
653
+ .deck-widget-splitter-handle {
654
+ position: absolute;
655
+ background: var(--button-background, #fff);
656
+ z-index: 10;
657
+ pointer-events: auto;
658
+ box-shadow: inset 1px 1px 1px var(--button-icon-idle, #616166);
659
+ }
660
+ .deck-widget-splitter-handle.active {
661
+ box-shadow: var(--button-shadow, 0px 0px 8px 0px rgba(0, 0, 0, 0.25));
662
+ }
663
+ .deck-widget-splitter-handle:before {
664
+ content: ' ';
665
+ display: block;
666
+ position: absolute;
667
+ box-sizing: content-box;
668
+ width: 100%;
669
+ height: 100%;
670
+ padding: 4px;
671
+ margin: -4px;
672
+ }
673
+ .deck-widget-splitter-handle--horizontal {
674
+ top: 0;
675
+ bottom: 0;
676
+ width: 2px;
677
+ margin-left: -1px;
678
+ cursor: col-resize;
679
+ }
680
+ .deck-widget-splitter-handle--vertical {
681
+ left: 0;
682
+ right: 0;
683
+ height: 2px;
684
+ margin-top: -1px;
685
+ cursor: row-resize;
686
+ }