@zipify/wysiwyg 3.4.1-dev → 3.4.1
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/.release-it.json +1 -2
- package/dist/cli.js +3 -3
- package/dist/wysiwyg.css +11 -10
- package/dist/wysiwyg.mjs +1999 -1595
- package/lib/components/toolbar/Toolbar.vue +1 -0
- package/lib/components/toolbar/controls/AlignmentControl.vue +2 -3
- package/package.json +31 -39
- package/ci/example/deploy.sh +0 -25
- package/config/build/node.config.js +0 -38
- package/dist/wysiwyg.cjs +0 -16
- package/lib/entryNode.js +0 -2
package/dist/wysiwyg.css
CHANGED
|
@@ -639,7 +639,8 @@
|
|
|
639
639
|
width: 234px;
|
|
640
640
|
}
|
|
641
641
|
|
|
642
|
-
.zw-toolbar[data-v-
|
|
642
|
+
.zw-toolbar[data-v-d18ac382] {
|
|
643
|
+
border: 1px solid rgba(var(--zw-color-white), 0.2);
|
|
643
644
|
border-radius: 2px;
|
|
644
645
|
background-color: rgb(var(--zw-color-n15));
|
|
645
646
|
color: rgb(var(--zw-color-n70));
|
|
@@ -647,8 +648,8 @@
|
|
|
647
648
|
text-align: left;
|
|
648
649
|
position: absolute;
|
|
649
650
|
}
|
|
650
|
-
.zw-toolbar[data-v-
|
|
651
|
-
.zw-toolbar[data-v-
|
|
651
|
+
.zw-toolbar[data-v-d18ac382]::before,
|
|
652
|
+
.zw-toolbar[data-v-d18ac382]::after {
|
|
652
653
|
content: "";
|
|
653
654
|
display: block;
|
|
654
655
|
width: 100%;
|
|
@@ -656,21 +657,21 @@
|
|
|
656
657
|
position: absolute;
|
|
657
658
|
--zw-toolbar-safe-zone: calc(-1 * var(--zw-toolbar-offset-y));
|
|
658
659
|
}
|
|
659
|
-
.zw-toolbar[data-v-
|
|
660
|
+
.zw-toolbar[data-v-d18ac382]::before {
|
|
660
661
|
top: var(--zw-toolbar-safe-zone);
|
|
661
662
|
}
|
|
662
|
-
.zw-toolbar[data-v-
|
|
663
|
+
.zw-toolbar[data-v-d18ac382]::after {
|
|
663
664
|
bottom: var(--zw-toolbar-safe-zone);
|
|
664
665
|
}
|
|
665
|
-
.zw-toolbar--enter-active[data-v-
|
|
666
|
-
.zw-toolbar--leave-active[data-v-
|
|
666
|
+
.zw-toolbar--enter-active[data-v-d18ac382],
|
|
667
|
+
.zw-toolbar--leave-active[data-v-d18ac382] {
|
|
667
668
|
transition: opacity 150ms ease-out;
|
|
668
669
|
}
|
|
669
|
-
.zw-toolbar--leave-active[data-v-
|
|
670
|
+
.zw-toolbar--leave-active[data-v-d18ac382] {
|
|
670
671
|
transition: opacity 0s ease-in;
|
|
671
672
|
}
|
|
672
|
-
.zw-toolbar--enter[data-v-
|
|
673
|
-
.zw-toolbar--leave-to[data-v-
|
|
673
|
+
.zw-toolbar--enter[data-v-d18ac382],
|
|
674
|
+
.zw-toolbar--leave-to[data-v-d18ac382] {
|
|
674
675
|
opacity: 0;
|
|
675
676
|
}
|
|
676
677
|
.zw-wysiwyg {
|