@industry-theme/xterm-terminal-panel 0.5.14 → 0.5.15

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.
package/dist/index.css CHANGED
@@ -465,6 +465,7 @@
465
465
  background-color: var(--panel-background);
466
466
  box-sizing: border-box;
467
467
  flex-direction: column;
468
+ min-width: 0;
468
469
  }
469
470
 
470
471
  .three-panel-item[data-edit-mode="true"] {
@@ -472,12 +473,16 @@
472
473
  border-radius: 12px;
473
474
  }
474
475
 
475
- .three-panel-item.collapsible-panel {
476
- will-change: flex;
476
+ .three-panel-layout [data-panel] {
477
+ transition: flex-grow var(--panel-transition-duration, .3s) var(--panel-transition-easing, cubic-bezier(.4, 0, .2, 1));
477
478
  }
478
479
 
479
- .three-panel-item.collapsible-panel.animating {
480
- pointer-events: none;
480
+ .three-panel-layout.is-dragging [data-panel] {
481
+ transition: none;
482
+ }
483
+
484
+ .three-panel-item.collapsible-panel {
485
+ will-change: flex;
481
486
  }
482
487
 
483
488
  .three-panel-item.collapsible-panel.collapsed {
@@ -489,17 +494,13 @@
489
494
  max-width: 0 !important;
490
495
  }
491
496
 
492
- .three-panel-item.middle-panel {
493
- flex: 1;
494
- min-width: 200px;
495
- }
496
-
497
497
  .panel-content-wrapper {
498
498
  overflow-x: hidden;
499
499
  overflow-y: auto;
500
500
  will-change: opacity;
501
501
  box-sizing: border-box;
502
502
  flex: 1;
503
+ min-width: 0;
503
504
  }
504
505
 
505
506
  .resize-handle {