js-draw 1.1.0 → 1.2.0

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/Editor.css CHANGED
@@ -476,15 +476,15 @@
476
476
  }
477
477
  @keyframes toolbar--edgemenu-transition-in {
478
478
  from {
479
- translate: 0 100%;
479
+ transform: translate(0, 100%);
480
480
  }
481
481
  to {
482
- translate: 0;
482
+ transform: translate(0, 0);
483
483
  }
484
484
  }
485
485
  @keyframes toolbar--edgemenu-transition-out {
486
486
  to {
487
- translate: 0 100%;
487
+ transform: translate(0, 100%);
488
488
  }
489
489
  }
490
490
  @keyframes toolbar--edgemenu-container-transition-in {
@@ -670,6 +670,7 @@
670
670
  }
671
671
  .toolbar-edge-toolbar .toolbar-toolContainer.label-inline.label-left > .toolbar-button > .toolbar-icon {
672
672
  margin-left: 10px;
673
+ margin-right: 0;
673
674
  }
674
675
  .toolbar-edge-toolbar .toolbar-toolContainer.label-inline.label-right {
675
676
  order: -1;
@@ -681,6 +682,7 @@
681
682
  .toolbar-edge-toolbar .toolbar-toolContainer.label-inline > .toolbar-button > .toolbar-icon {
682
683
  height: 100%;
683
684
  margin-right: 10px;
685
+ margin-left: 0;
684
686
  }
685
687
  .toolbar-edge-toolbar .toolbar-toolContainer:not(.no-icon):not(.label-inline) .toolbar-button {
686
688
  width: calc(var(--toolbar-button-size) + var(--extra-left-right-padding));
@@ -893,7 +895,7 @@
893
895
  box-sizing: border-box;
894
896
  border-top-left-radius: 30px;
895
897
  border-top-right-radius: 30px;
896
- transition: translate 0.1s ease, padding-bottom 0.1s ease;
898
+ transition: transform 0.1s ease, padding-bottom 0.1s ease;
897
899
  }
898
900
  .toolbar-edgemenu-container .toolbar-edgemenu input, .toolbar-edgemenu-container .toolbar-edgemenu textarea {
899
901
  user-select: auto;