@zipify/wysiwyg 1.0.0-dev.6 → 1.0.0-dev.62
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/.editorconfig +1 -1
- package/.eslintrc.js +2 -2
- package/.github/dependabot.yaml +1 -0
- package/.lintstagedrc +2 -2
- package/.release-it.json +3 -1
- package/.stylelintrc +0 -4
- package/README.md +2 -2
- package/config/jest/setupTests.js +0 -3
- package/config/vite/example.config.js +25 -0
- package/config/vite/lib.config.js +28 -0
- package/config/{webpack → vite}/settings.js +0 -0
- package/dist/wysiwyg.css +1 -837
- package/dist/wysiwyg.mjs +18353 -0
- package/example/ExampleApp.vue +41 -3
- package/example/example.js +0 -3
- package/example/{example.html → index.html} +1 -0
- package/example/pageBlocks.js +31 -0
- package/example/presets.js +2 -2
- package/example/tooltip/Tooltip.js +1 -1
- package/jest.config.js +3 -1
- package/lib/Wysiwyg.vue +65 -26
- package/lib/__tests__/utils/NodeFactory.js +13 -0
- package/lib/__tests__/utils/withComponentContext.js +1 -1
- package/lib/assets/icons/link.svg +3 -0
- package/lib/assets/icons/unlink.svg +3 -0
- package/lib/components/base/Button.vue +22 -2
- package/lib/components/base/Checkbox.vue +89 -0
- package/lib/components/base/FieldLabel.vue +2 -1
- package/lib/components/base/Icon.vue +3 -3
- package/lib/components/base/Modal.vue +1 -2
- package/lib/components/base/NumberField.vue +2 -2
- package/lib/components/base/Range.vue +1 -1
- package/lib/components/base/ScrollView.vue +1 -3
- package/lib/components/base/TextField.vue +106 -0
- package/lib/components/base/__tests__/Modal.test.js +7 -2
- package/lib/components/base/__tests__/TextField.test.js +57 -0
- package/lib/components/base/__tests__/__snapshots__/TextField.test.js.snap +9 -0
- package/lib/components/base/colorPicker/ColorPicker.vue +2 -2
- package/lib/components/base/colorPicker/composables/__tests__/usePickerApi.test.js +1 -1
- package/lib/components/base/colorPicker/composables/usePickerApi.js +3 -3
- package/lib/components/base/colorPicker/composables/usePickerHotkeys.js +3 -2
- package/lib/components/base/composables/__tests__/useActivatedListener.test.js +1 -1
- package/lib/components/base/composables/__tests__/useDeselectionLock.test.js +1 -1
- package/lib/components/base/composables/__tests__/useElementRef.test.js +1 -1
- package/lib/components/base/composables/__tests__/useModalToggler.test.js +1 -1
- package/lib/components/base/composables/__tests__/useNumberValue.test.js +1 -1
- package/lib/components/base/composables/__tests__/useScrollView.test.js +1 -1
- package/lib/components/base/composables/__tests__/useTempValue.test.js +1 -1
- package/lib/components/base/composables/__tests__/useValidator.test.js +44 -0
- package/lib/components/base/composables/index.js +1 -0
- package/lib/components/base/composables/useActivatedListener.js +1 -1
- package/lib/components/base/composables/useDeselectionLock.js +1 -1
- package/lib/components/base/composables/useElementRef.js +1 -1
- package/lib/components/base/composables/useModalToggler.js +1 -1
- package/lib/components/base/composables/useScrollView.js +1 -1
- package/lib/components/base/composables/useTempValue.js +1 -1
- package/lib/components/base/composables/useValidator.js +23 -0
- package/lib/components/base/dropdown/Dropdown.vue +16 -4
- package/lib/components/base/dropdown/DropdownActivator.vue +19 -3
- package/lib/components/base/dropdown/DropdownGroup.vue +1 -1
- package/lib/components/base/dropdown/DropdownMenu.vue +1 -1
- package/lib/components/base/dropdown/DropdownOption.vue +1 -1
- package/lib/components/base/dropdown/__tests__/DropdownActivator.test.js +1 -1
- package/lib/components/base/dropdown/__tests__/DropdownMenu.test.js +1 -1
- package/lib/components/base/dropdown/__tests__/DropdownOption.test.js +1 -1
- package/lib/components/base/dropdown/composables/__tests__/useActiveOptionManager.test.js +1 -1
- package/lib/components/base/dropdown/composables/__tests__/useDropdownEntityTitle.test.js +1 -1
- package/lib/components/base/dropdown/composables/useActiveOptionManager.js +1 -1
- package/lib/components/base/dropdown/composables/useDropdownEntityTitle.js +1 -1
- package/lib/components/base/index.js +3 -1
- package/lib/components/toolbar/Toolbar.vue +49 -9
- package/lib/components/toolbar/ToolbarDivider.vue +1 -1
- package/lib/components/toolbar/ToolbarFull.vue +10 -2
- package/lib/components/toolbar/ToolbarRow.vue +1 -0
- package/lib/components/toolbar/__tests__/Toolbar.test.js +6 -0
- package/lib/components/toolbar/controls/AlignmentControl.vue +1 -1
- package/lib/components/toolbar/controls/AlignmentDeviceControl.vue +1 -1
- package/lib/components/toolbar/controls/BackgroundColorControl.vue +1 -1
- package/lib/components/toolbar/controls/CaseStyleControl.vue +1 -1
- package/lib/components/toolbar/controls/FontColorControl.vue +1 -1
- package/lib/components/toolbar/controls/FontFamilyControl.vue +1 -1
- package/lib/components/toolbar/controls/FontSizeControl.vue +8 -1
- package/lib/components/toolbar/controls/FontWeightControl.vue +1 -1
- package/lib/components/toolbar/controls/ItalicControl.vue +1 -1
- package/lib/components/toolbar/controls/LineHeightControl.vue +1 -1
- package/lib/components/toolbar/controls/ListControl.vue +68 -34
- package/lib/components/toolbar/controls/RemoveFormatControl.vue +1 -1
- package/lib/components/toolbar/controls/StrikeThroughControl.vue +1 -1
- package/lib/components/toolbar/controls/StylePresetControl.vue +15 -2
- package/lib/components/toolbar/controls/SuperscriptControl.vue +1 -1
- package/lib/components/toolbar/controls/UnderlineControl.vue +2 -2
- package/lib/components/toolbar/controls/__tests__/AlignmentControl.test.js +1 -1
- package/lib/components/toolbar/controls/__tests__/AlignmentDeviceControl.test.js +1 -1
- package/lib/components/toolbar/controls/__tests__/BackgroundColorControl.test.js +1 -1
- package/lib/components/toolbar/controls/__tests__/CaseStyleControl.test.js +1 -1
- package/lib/components/toolbar/controls/__tests__/FontColorControl.test.js +1 -1
- package/lib/components/toolbar/controls/__tests__/FontFamilyControl.test.js +1 -1
- package/lib/components/toolbar/controls/__tests__/FontSizeControl.test.js +1 -1
- package/lib/components/toolbar/controls/__tests__/FontWeightControl.test.js +1 -1
- package/lib/components/toolbar/controls/__tests__/ItalicControl.test.js +1 -1
- package/lib/components/toolbar/controls/__tests__/LineHeightControl.test.js +1 -1
- package/lib/components/toolbar/controls/__tests__/ListControl.test.js +18 -3
- package/lib/components/toolbar/controls/__tests__/StrikeThroughControl.test.js +1 -1
- package/lib/components/toolbar/controls/__tests__/StylePresetControl.test.js +17 -1
- package/lib/components/toolbar/controls/__tests__/UnderlineControl.test.js +5 -1
- package/lib/components/toolbar/controls/composables/useRecentFonts.js +1 -1
- package/lib/components/toolbar/controls/index.js +1 -0
- package/lib/components/toolbar/controls/link/LinkControl.vue +155 -0
- package/lib/components/toolbar/controls/link/LinkControlApply.vue +35 -0
- package/lib/components/toolbar/controls/link/LinkControlHeader.vue +67 -0
- package/lib/components/toolbar/controls/link/__tests__/LinkControl.test.js +79 -0
- package/lib/components/toolbar/controls/link/__tests__/LinkControlHeader.test.js +42 -0
- package/lib/components/toolbar/controls/link/composables/__tests__/__snapshots__/useLink.test.js.snap +8 -0
- package/lib/components/toolbar/controls/link/composables/__tests__/useLink.test.js +114 -0
- package/lib/components/toolbar/controls/link/composables/index.js +1 -0
- package/lib/components/toolbar/controls/link/composables/useLink.js +61 -0
- package/lib/components/toolbar/controls/link/destination/LinkControlDestination.vue +103 -0
- package/lib/components/toolbar/controls/link/destination/LinkControlPageBlock.vue +54 -0
- package/lib/components/toolbar/controls/link/destination/LinkControlUrl.vue +52 -0
- package/lib/components/toolbar/controls/link/destination/__tests__/LinkControlPageBlock.test.js +36 -0
- package/lib/components/toolbar/controls/link/destination/__tests__/LinkControlUrl.test.js +46 -0
- package/lib/components/toolbar/controls/link/destination/__tests__/__snapshots__/LinkControlPageBlock.test.js.snap +9 -0
- package/lib/components/toolbar/controls/link/destination/__tests__/__snapshots__/LinkControlUrl.test.js.snap +17 -0
- package/lib/components/toolbar/controls/link/destination/index.js +1 -0
- package/lib/components/toolbar/controls/link/index.js +1 -0
- package/lib/composables/__tests__/useEditor.test.js +4 -3
- package/lib/composables/useEditor.js +8 -8
- package/lib/composables/useToolbar.js +23 -28
- package/lib/directives/__tests__/outClick.test.js +6 -0
- package/lib/directives/outClick.js +19 -6
- package/lib/enums/Alignments.js +10 -1
- package/lib/enums/LinkDestinations.js +4 -0
- package/lib/enums/LinkTargets.js +4 -0
- package/lib/enums/TextSettings.js +3 -1
- package/lib/enums/index.js +2 -0
- package/lib/extensions/Alignment.js +22 -8
- package/lib/extensions/BackgroundColor.js +15 -7
- package/lib/extensions/DeviceManager.js +2 -5
- package/lib/extensions/FontColor.js +15 -7
- package/lib/extensions/FontFamily.js +26 -9
- package/lib/extensions/FontSize.js +32 -13
- package/lib/extensions/FontStyle.js +24 -14
- package/lib/extensions/FontWeight.js +25 -15
- package/lib/extensions/LineHeight.js +32 -29
- package/lib/extensions/Link.js +90 -0
- package/lib/extensions/StylePreset.js +20 -19
- package/lib/extensions/Superscript.js +5 -1
- package/lib/extensions/TextDecoration.js +46 -13
- package/lib/extensions/__tests__/Alignment.test.js +13 -7
- package/lib/extensions/__tests__/BackgroundColor.test.js +12 -6
- package/lib/extensions/__tests__/CaseStyle.test.js +3 -5
- package/lib/extensions/__tests__/FontColor.test.js +12 -6
- package/lib/extensions/__tests__/FontFamily.test.js +33 -8
- package/lib/extensions/__tests__/FontSize.test.js +15 -8
- package/lib/extensions/__tests__/FontStyle.test.js +12 -6
- package/lib/extensions/__tests__/FontWeight.test.js +20 -6
- package/lib/extensions/__tests__/LineHeight.test.js +24 -12
- package/lib/extensions/__tests__/Link.test.js +102 -0
- package/lib/extensions/__tests__/StylePreset.test.js +71 -8
- package/lib/extensions/__tests__/TextDecoration.test.js +52 -6
- package/lib/extensions/__tests__/__snapshots__/Alignment.test.js.snap +26 -2
- package/lib/extensions/__tests__/__snapshots__/BackgroundColor.test.js.snap +30 -1
- package/lib/extensions/__tests__/__snapshots__/FontColor.test.js.snap +18 -1
- package/lib/extensions/__tests__/__snapshots__/FontFamily.test.js.snap +88 -1
- package/lib/extensions/__tests__/__snapshots__/FontSize.test.js.snap +33 -2
- package/lib/extensions/__tests__/__snapshots__/FontStyle.test.js.snap +25 -4
- package/lib/extensions/__tests__/__snapshots__/FontWeight.test.js.snap +47 -1
- package/lib/extensions/__tests__/__snapshots__/LineHeight.test.js.snap +26 -2
- package/lib/extensions/__tests__/__snapshots__/Link.test.js.snap +225 -0
- package/lib/extensions/__tests__/__snapshots__/StylePreset.test.js.snap +6 -2
- package/lib/extensions/__tests__/__snapshots__/TextDecoration.test.js.snap +183 -3
- package/lib/extensions/core/CopyPasteProcessor.js +10 -0
- package/lib/extensions/core/NodeProcessor.js +1 -1
- package/lib/extensions/core/TextProcessor.js +10 -0
- package/lib/extensions/core/__tests__/NodeProcessor.test.js +3 -5
- package/lib/extensions/core/__tests__/SelectionProcessor.test.js +3 -5
- package/lib/extensions/core/__tests__/TextProcessor.test.js +138 -12
- package/lib/extensions/core/__tests__/__snapshots__/TextProcessor.test.js.snap +26 -0
- package/lib/extensions/core/index.js +11 -2
- package/lib/extensions/core/plugins/PastePlugin.js +57 -0
- package/lib/extensions/core/plugins/ProseMirrorPlugin.js +20 -0
- package/lib/extensions/core/plugins/index.js +1 -0
- package/lib/extensions/index.js +46 -34
- package/lib/extensions/list/List.js +2 -3
- package/lib/extensions/list/__tests__/List.test.js +5 -8
- package/lib/extensions/list/__tests__/__snapshots__/List.test.js.snap +60 -20
- package/lib/injectionTokens.js +2 -1
- package/lib/services/ContentNormalizer.js +122 -29
- package/lib/services/ContextWidnow.js +23 -0
- package/lib/services/__tests__/ContentNormalizer.test.js +96 -7
- package/lib/services/__tests__/FavoriteColors.test.js +1 -1
- package/lib/services/index.js +1 -0
- package/lib/styles/content.css +110 -13
- package/lib/styles/helpers/offsets.css +16 -0
- package/lib/styles/variables.css +6 -0
- package/lib/utils/__tests__/__snapshots__/renderInlineSetting.test.js.snap +4 -4
- package/lib/utils/__tests__/convertAlignment.test.js +16 -0
- package/lib/utils/__tests__/convertFontSize.test.js +21 -0
- package/lib/utils/__tests__/convertLineHeight.test.js +21 -0
- package/lib/utils/convertAlignment.js +12 -0
- package/lib/utils/convertColor.js +1 -1
- package/lib/utils/convertFontSize.js +8 -0
- package/lib/utils/convertLineHeight.js +17 -0
- package/lib/utils/importIcon.js +7 -6
- package/lib/utils/index.js +3 -0
- package/lib/utils/renderInlineSetting.js +1 -1
- package/package.json +26 -31
- package/config/webpack/example.config.js +0 -88
- package/config/webpack/lib.config.js +0 -40
- package/config/webpack/loaders/index.js +0 -6
- package/config/webpack/loaders/js-loader.js +0 -5
- package/config/webpack/loaders/style-loader.js +0 -9
- package/config/webpack/loaders/svg-loader.js +0 -4
- package/config/webpack/loaders/vue-loader.js +0 -4
- package/dist/wysiwyg.js +0 -2
- package/dist/wysiwyg.js.LICENSE.txt +0 -1
- package/lib/composables/__tests__/useToolbar.test.js +0 -56
package/dist/wysiwyg.css
CHANGED
|
@@ -1,837 +1 @@
|
|
|
1
|
-
|
|
2
|
-
.zw-toolbar__divider[data-v-034e1143] {
|
|
3
|
-
border-color: rgba(var(--zw-color-n90), 0.1);
|
|
4
|
-
border-style: solid;
|
|
5
|
-
border-width: 0;
|
|
6
|
-
}
|
|
7
|
-
.zw-toolbar__divider--vertical[data-v-034e1143] {
|
|
8
|
-
border-left-width: 1px;
|
|
9
|
-
}
|
|
10
|
-
.zw-toolbar__divider--horizontal[data-v-034e1143] {
|
|
11
|
-
border-bottom-width: 1px;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
.zw-toolbar__row[data-v-65916ef8] {
|
|
16
|
-
display: flex;
|
|
17
|
-
column-gap: var(--zw-offset-xs);
|
|
18
|
-
padding: var(--zw-offset-xxs) var(--zw-offset-xs);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
.zw-toolbar__group[data-v-06bbae29] {
|
|
23
|
-
display: flex;
|
|
24
|
-
column-gap: var(--zw-offset-xxs);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
.zw-button[data-v-610825a2] {
|
|
29
|
-
display: inline-flex;
|
|
30
|
-
align-items: center;
|
|
31
|
-
vertical-align: middle;
|
|
32
|
-
touch-action: manipulation;
|
|
33
|
-
cursor: pointer;
|
|
34
|
-
background-image: none;
|
|
35
|
-
background-color: transparent;
|
|
36
|
-
border: 0;
|
|
37
|
-
padding: 0;
|
|
38
|
-
white-space: nowrap;
|
|
39
|
-
appearance: none;
|
|
40
|
-
user-select: none;
|
|
41
|
-
text-transform: none;
|
|
42
|
-
letter-spacing: normal;
|
|
43
|
-
color: inherit;
|
|
44
|
-
transition: 0.1s opacity ease-out;
|
|
45
|
-
will-change: opacity;
|
|
46
|
-
}
|
|
47
|
-
.zw-button[data-v-610825a2]::-moz-focus-inner {
|
|
48
|
-
border: 0 !important;
|
|
49
|
-
}
|
|
50
|
-
.zw-button[data-v-610825a2]:hover,
|
|
51
|
-
.zw-button[data-v-610825a2]:focus {
|
|
52
|
-
text-decoration: none;
|
|
53
|
-
outline: none;
|
|
54
|
-
}
|
|
55
|
-
.zw-button[data-v-610825a2]:disabled {
|
|
56
|
-
user-select: none;
|
|
57
|
-
box-shadow: none;
|
|
58
|
-
cursor: not-allowed;
|
|
59
|
-
opacity: 0.35;
|
|
60
|
-
}
|
|
61
|
-
.zw-button--toolbar[data-v-610825a2] {
|
|
62
|
-
border-radius: 1px;
|
|
63
|
-
min-height: 28px;
|
|
64
|
-
font-weight: var(--zw-font-weight-semibold);
|
|
65
|
-
font-size: var(--zw-font-size-xs);
|
|
66
|
-
line-height: var(--zw-line-height-xxs);
|
|
67
|
-
color: rgb(var(--zw-color-n70));
|
|
68
|
-
transition-property: background-color, color, opacity;
|
|
69
|
-
will-change: background-color, color, opacity;
|
|
70
|
-
}
|
|
71
|
-
.zw-button--toolbar[data-v-610825a2]:not(.zw-button--icon) {
|
|
72
|
-
padding: var(--zw-offset-xxs) var(--zw-offset-xs);
|
|
73
|
-
}
|
|
74
|
-
.zw-button--toolbar[data-v-610825a2]:not(:disabled):hover,
|
|
75
|
-
.zw-button--toolbar[data-v-610825a2]:not(:disabled):focus,
|
|
76
|
-
.zw-button--toolbar.zw-button--active[data-v-610825a2]:not(:disabled) {
|
|
77
|
-
color: rgb(var(--zw-color-white));
|
|
78
|
-
background-color: rgb(var(--zw-color-n5));
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
.zw-button-toggle[data-v-de5fa53a] {
|
|
83
|
-
display: flex;
|
|
84
|
-
column-gap: var(--zw-offset-xxs);
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
.zw-icon[data-v-d4624794] {
|
|
89
|
-
display: inline-block;
|
|
90
|
-
}
|
|
91
|
-
.zw-icon--auto-color[data-v-d4624794] {
|
|
92
|
-
--zw-icon-foreground: currentColor;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
[data-simplebar] {
|
|
96
|
-
position: relative;
|
|
97
|
-
flex-direction: column;
|
|
98
|
-
flex-wrap: wrap;
|
|
99
|
-
justify-content: flex-start;
|
|
100
|
-
align-content: flex-start;
|
|
101
|
-
align-items: flex-start;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.simplebar-wrapper {
|
|
105
|
-
overflow: hidden;
|
|
106
|
-
width: inherit;
|
|
107
|
-
height: inherit;
|
|
108
|
-
max-width: inherit;
|
|
109
|
-
max-height: inherit;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.simplebar-mask {
|
|
113
|
-
direction: inherit;
|
|
114
|
-
position: absolute;
|
|
115
|
-
overflow: hidden;
|
|
116
|
-
padding: 0;
|
|
117
|
-
margin: 0;
|
|
118
|
-
left: 0;
|
|
119
|
-
top: 0;
|
|
120
|
-
bottom: 0;
|
|
121
|
-
right: 0;
|
|
122
|
-
width: auto !important;
|
|
123
|
-
height: auto !important;
|
|
124
|
-
z-index: 0;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.simplebar-offset {
|
|
128
|
-
direction: inherit !important;
|
|
129
|
-
box-sizing: inherit !important;
|
|
130
|
-
resize: none !important;
|
|
131
|
-
position: absolute;
|
|
132
|
-
top: 0;
|
|
133
|
-
left: 0;
|
|
134
|
-
bottom: 0;
|
|
135
|
-
right: 0;
|
|
136
|
-
padding: 0;
|
|
137
|
-
margin: 0;
|
|
138
|
-
-webkit-overflow-scrolling: touch;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.simplebar-content-wrapper {
|
|
142
|
-
direction: inherit;
|
|
143
|
-
box-sizing: border-box !important;
|
|
144
|
-
position: relative;
|
|
145
|
-
display: block;
|
|
146
|
-
height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
|
|
147
|
-
width: auto;
|
|
148
|
-
max-width: 100%; /* Not required for horizontal scroll to trigger */
|
|
149
|
-
max-height: 100%; /* Needed for vertical scroll to trigger */
|
|
150
|
-
scrollbar-width: none;
|
|
151
|
-
-ms-overflow-style: none;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
.simplebar-content-wrapper::-webkit-scrollbar,
|
|
155
|
-
.simplebar-hide-scrollbar::-webkit-scrollbar {
|
|
156
|
-
width: 0;
|
|
157
|
-
height: 0;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.simplebar-content:before,
|
|
161
|
-
.simplebar-content:after {
|
|
162
|
-
content: ' ';
|
|
163
|
-
display: table;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
.simplebar-placeholder {
|
|
167
|
-
max-height: 100%;
|
|
168
|
-
max-width: 100%;
|
|
169
|
-
width: 100%;
|
|
170
|
-
pointer-events: none;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.simplebar-height-auto-observer-wrapper {
|
|
174
|
-
box-sizing: inherit !important;
|
|
175
|
-
height: 100%;
|
|
176
|
-
width: 100%;
|
|
177
|
-
max-width: 1px;
|
|
178
|
-
position: relative;
|
|
179
|
-
float: left;
|
|
180
|
-
max-height: 1px;
|
|
181
|
-
overflow: hidden;
|
|
182
|
-
z-index: -1;
|
|
183
|
-
padding: 0;
|
|
184
|
-
margin: 0;
|
|
185
|
-
pointer-events: none;
|
|
186
|
-
flex-grow: inherit;
|
|
187
|
-
flex-shrink: 0;
|
|
188
|
-
flex-basis: 0;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
.simplebar-height-auto-observer {
|
|
192
|
-
box-sizing: inherit;
|
|
193
|
-
display: block;
|
|
194
|
-
opacity: 0;
|
|
195
|
-
position: absolute;
|
|
196
|
-
top: 0;
|
|
197
|
-
left: 0;
|
|
198
|
-
height: 1000%;
|
|
199
|
-
width: 1000%;
|
|
200
|
-
min-height: 1px;
|
|
201
|
-
min-width: 1px;
|
|
202
|
-
overflow: hidden;
|
|
203
|
-
pointer-events: none;
|
|
204
|
-
z-index: -1;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
.simplebar-track {
|
|
208
|
-
z-index: 1;
|
|
209
|
-
position: absolute;
|
|
210
|
-
right: 0;
|
|
211
|
-
bottom: 0;
|
|
212
|
-
pointer-events: none;
|
|
213
|
-
overflow: hidden;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
[data-simplebar].simplebar-dragging .simplebar-content {
|
|
217
|
-
pointer-events: none;
|
|
218
|
-
user-select: none;
|
|
219
|
-
-webkit-user-select: none;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
[data-simplebar].simplebar-dragging .simplebar-track {
|
|
223
|
-
pointer-events: all;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
.simplebar-scrollbar {
|
|
227
|
-
position: absolute;
|
|
228
|
-
left: 0;
|
|
229
|
-
right: 0;
|
|
230
|
-
min-height: 10px;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
.simplebar-scrollbar:before {
|
|
234
|
-
position: absolute;
|
|
235
|
-
content: '';
|
|
236
|
-
background: black;
|
|
237
|
-
border-radius: 7px;
|
|
238
|
-
left: 2px;
|
|
239
|
-
right: 2px;
|
|
240
|
-
opacity: 0;
|
|
241
|
-
transition: opacity 0.2s linear;
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
.simplebar-scrollbar.simplebar-visible:before {
|
|
245
|
-
/* When hovered, remove all transitions from drag handle */
|
|
246
|
-
opacity: 0.5;
|
|
247
|
-
transition: opacity 0s linear;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
.simplebar-track.simplebar-vertical {
|
|
251
|
-
top: 0;
|
|
252
|
-
width: 11px;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
|
|
256
|
-
top: 2px;
|
|
257
|
-
bottom: 2px;
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
.simplebar-track.simplebar-horizontal {
|
|
261
|
-
left: 0;
|
|
262
|
-
height: 11px;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
|
|
266
|
-
height: 100%;
|
|
267
|
-
left: 2px;
|
|
268
|
-
right: 2px;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
|
|
272
|
-
right: auto;
|
|
273
|
-
left: 0;
|
|
274
|
-
top: 2px;
|
|
275
|
-
height: 7px;
|
|
276
|
-
min-height: 0;
|
|
277
|
-
min-width: 10px;
|
|
278
|
-
width: auto;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
/* Rtl support */
|
|
282
|
-
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
|
|
283
|
-
right: auto;
|
|
284
|
-
left: 0;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
.hs-dummy-scrollbar-size {
|
|
288
|
-
direction: rtl;
|
|
289
|
-
position: fixed;
|
|
290
|
-
opacity: 0;
|
|
291
|
-
visibility: hidden;
|
|
292
|
-
height: 500px;
|
|
293
|
-
width: 500px;
|
|
294
|
-
overflow-y: hidden;
|
|
295
|
-
overflow-x: scroll;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
.simplebar-hide-scrollbar {
|
|
299
|
-
position: fixed;
|
|
300
|
-
left: 0;
|
|
301
|
-
visibility: hidden;
|
|
302
|
-
overflow-y: scroll;
|
|
303
|
-
scrollbar-width: none;
|
|
304
|
-
-ms-overflow-style: none;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
.zw-scroll-view[data-v-56dc828f] .simplebar-placeholder {
|
|
309
|
-
display: none;
|
|
310
|
-
}
|
|
311
|
-
.zw-scroll-view[data-v-56dc828f] .simplebar-track {
|
|
312
|
-
width: 4px;
|
|
313
|
-
background-color: rgb(var(--zw-color-n20));
|
|
314
|
-
pointer-events: initial;
|
|
315
|
-
}
|
|
316
|
-
.zw-scroll-view[data-v-56dc828f] .simplebar-scrollbar {
|
|
317
|
-
width: 4px;
|
|
318
|
-
}
|
|
319
|
-
.zw-scroll-view[data-v-56dc828f] .simplebar-scrollbar::before {
|
|
320
|
-
top: 0;
|
|
321
|
-
left: 0;
|
|
322
|
-
background-color: rgb(var(--zw-color-n5));
|
|
323
|
-
cursor: pointer;
|
|
324
|
-
height: 100%;
|
|
325
|
-
width: 100%;
|
|
326
|
-
opacity: 1;
|
|
327
|
-
border-radius: 0;
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
.zw-field-label[data-v-2be4d197] {
|
|
332
|
-
font-weight: var(--zw-font-weight-thin);
|
|
333
|
-
font-size: var(--zw-font-size-xxs);
|
|
334
|
-
line-height: var(--zw-line-height-xxs);
|
|
335
|
-
color: rgb(var(--zw-color-n70));
|
|
336
|
-
display: block;
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
.zw-range[data-v-4cc06850] {
|
|
341
|
-
width: 100%;
|
|
342
|
-
height: 32px;
|
|
343
|
-
background: none;
|
|
344
|
-
cursor: pointer;
|
|
345
|
-
flex-grow: 1;
|
|
346
|
-
-webkit-appearance: none;
|
|
347
|
-
|
|
348
|
-
--zw-range-track-background-color: transparent;
|
|
349
|
-
--zw-range-track-background-image: linear-gradient(to right, #B3B3B3 var(--zw-range-progress), #3B3B3B var(--zw-range-progress));
|
|
350
|
-
--zw-range-thumb-background: rgb(var(--zw-color-white));
|
|
351
|
-
--zw-range-thumb-box-shadow: -1px -1px 3px rgba(59, 59, 59, 0.35), 1px 1px 3px rgba(59, 59, 59, 0.35);
|
|
352
|
-
}
|
|
353
|
-
.zw-range[data-v-4cc06850]::-webkit-slider-runnable-track {
|
|
354
|
-
width: 100%;
|
|
355
|
-
height: 4px;
|
|
356
|
-
border: 0;
|
|
357
|
-
border-radius: 0;
|
|
358
|
-
background-size: 100%;
|
|
359
|
-
background-color: var(--zw-range-track-background-color);
|
|
360
|
-
background-image: var(--zw-range-track-background-image);
|
|
361
|
-
}
|
|
362
|
-
.zw-range[data-v-4cc06850]::-moz-range-track {
|
|
363
|
-
width: 100%;
|
|
364
|
-
height: 4px;
|
|
365
|
-
border: 0;
|
|
366
|
-
border-radius: 0;
|
|
367
|
-
background-size: 100%;
|
|
368
|
-
background-color: var(--zw-range-track-background-color);
|
|
369
|
-
background-image: var(--zw-range-track-background-image);
|
|
370
|
-
}
|
|
371
|
-
.zw-range[data-v-4cc06850]::-ms-track {
|
|
372
|
-
width: 100%;
|
|
373
|
-
height: 4px;
|
|
374
|
-
border: 0;
|
|
375
|
-
border-radius: 0;
|
|
376
|
-
background-size: 100%;
|
|
377
|
-
background-color: var(--zw-range-track-background-color);
|
|
378
|
-
background-image: var(--zw-range-track-background-image);
|
|
379
|
-
}
|
|
380
|
-
.zw-range[data-v-4cc06850]::-webkit-slider-thumb {
|
|
381
|
-
height: 13px;
|
|
382
|
-
width: 13px;
|
|
383
|
-
border-radius: 100%;
|
|
384
|
-
margin-top: -5px;
|
|
385
|
-
background: var(--zw-range-thumb-background);
|
|
386
|
-
box-shadow: var(--zw-range-thumb-box-shadow);
|
|
387
|
-
-webkit-appearance: none;
|
|
388
|
-
transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1);
|
|
389
|
-
}
|
|
390
|
-
.zw-range[data-v-4cc06850]::-moz-range-thumb {
|
|
391
|
-
height: 13px;
|
|
392
|
-
width: 13px;
|
|
393
|
-
border-radius: 100%;
|
|
394
|
-
margin-top: -5px;
|
|
395
|
-
background: var(--zw-range-thumb-background);
|
|
396
|
-
box-shadow: var(--zw-range-thumb-box-shadow);
|
|
397
|
-
-webkit-appearance: none;
|
|
398
|
-
transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1);
|
|
399
|
-
}
|
|
400
|
-
.zw-range[data-v-4cc06850]::-ms-thumb {
|
|
401
|
-
height: 13px;
|
|
402
|
-
width: 13px;
|
|
403
|
-
border-radius: 100%;
|
|
404
|
-
margin-top: -5px;
|
|
405
|
-
background: var(--zw-range-thumb-background);
|
|
406
|
-
box-shadow: var(--zw-range-thumb-box-shadow);
|
|
407
|
-
-webkit-appearance: none;
|
|
408
|
-
transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1);
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
/* Browser hacks */
|
|
412
|
-
.zw-range[data-v-4cc06850]::-moz-focus-outer,
|
|
413
|
-
.zw-range[data-v-4cc06850]::-moz-range-thumb {
|
|
414
|
-
border: 0;
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
/* In IE don't know how it count margin for thumb */
|
|
418
|
-
/* but it works */
|
|
419
|
-
.zw-range[data-v-4cc06850]::-ms-thumb {
|
|
420
|
-
margin-top: -2px;
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
/* END browser hacks */
|
|
424
|
-
.zw-range[data-v-4cc06850]:focus {
|
|
425
|
-
outline: none;
|
|
426
|
-
}
|
|
427
|
-
.zw-range[data-v-4cc06850]:disabled {
|
|
428
|
-
cursor: not-allowed;
|
|
429
|
-
opacity: 0.6;
|
|
430
|
-
--zw-range-track-background-color: #3B3B3B;
|
|
431
|
-
--zw-range-track-background-image: linear-gradient(to right, #B3B3B3 var(--zw-range-progress), #3B3B3B var(--zw-range-progress));
|
|
432
|
-
}
|
|
433
|
-
.zw-range[data-v-4cc06850]:disabled {
|
|
434
|
-
--zw-range-thumb-background: #B3B3B3;
|
|
435
|
-
--zw-range-thumb-box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
|
|
436
|
-
}
|
|
437
|
-
.zw-range[data-v-4cc06850]:not(:disabled):hover {
|
|
438
|
-
--zw-range-thumb-box-shadow: 0 0 0 8px rgba(240, 240, 240, 0.15);
|
|
439
|
-
}
|
|
440
|
-
.zw-range[data-v-4cc06850]:not(:disabled):active {
|
|
441
|
-
--zw-range-thumb-box-shadow: 0 0 0 12px rgba(240, 240, 240, 0.15);
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
.zw-number-field[data-v-289baff8] {
|
|
446
|
-
--border-color: rgb(var(--zw-color-n60));
|
|
447
|
-
--text-color: rgb(var(--zw-color-n85));
|
|
448
|
-
--buttons-color: rgb(var(--zw-color-n70));
|
|
449
|
-
|
|
450
|
-
padding: 2px 4px;
|
|
451
|
-
border: solid 1px var(--border-color);
|
|
452
|
-
align-items: stretch;
|
|
453
|
-
display: flex;
|
|
454
|
-
}
|
|
455
|
-
.zw-number-field[data-v-289baff8]:hover {
|
|
456
|
-
--border-color: rgb(var(--zw-color-n80));
|
|
457
|
-
--text-color: rgb(var(--zw-color-n85));
|
|
458
|
-
}
|
|
459
|
-
.zw-number-field[data-v-289baff8]:focus,
|
|
460
|
-
.zw-number-field[data-v-289baff8]:focus-within {
|
|
461
|
-
--border-color: rgb(var(--zw-color-white));
|
|
462
|
-
--text-color: rgb(var(--zw-color-white));
|
|
463
|
-
}
|
|
464
|
-
.zw-number-field__input[data-v-289baff8] {
|
|
465
|
-
color: var(--text-color);
|
|
466
|
-
background-color: rgb(var(--zw-color-n15));
|
|
467
|
-
border: 0;
|
|
468
|
-
display: block;
|
|
469
|
-
width: 100%;
|
|
470
|
-
outline: none !important;
|
|
471
|
-
line-height: var(--zw-line-height-md);
|
|
472
|
-
font-size: var(--zw-font-size-xs);
|
|
473
|
-
-moz-appearance: textfield;
|
|
474
|
-
}
|
|
475
|
-
.zw-number-field__buttons[data-v-289baff8] {
|
|
476
|
-
display: none;
|
|
477
|
-
flex-direction: column;
|
|
478
|
-
height: 100%;
|
|
479
|
-
}
|
|
480
|
-
.zw-number-field:hover .zw-number-field__buttons[data-v-289baff8],
|
|
481
|
-
.zw-number-field:focus .zw-number-field__buttons[data-v-289baff8],
|
|
482
|
-
.zw-number-field:focus-within .zw-number-field__buttons[data-v-289baff8] {
|
|
483
|
-
display: flex;
|
|
484
|
-
}
|
|
485
|
-
.zw-number-field__input[data-v-289baff8]::placeholder {
|
|
486
|
-
color: var(--text-color);
|
|
487
|
-
}
|
|
488
|
-
.zw-number-field__input[data-v-289baff8]::-webkit-outer-spin-button,
|
|
489
|
-
.zw-number-field__input[data-v-289baff8]::-webkit-inner-spin-button {
|
|
490
|
-
color: var(--text-color);
|
|
491
|
-
-webkit-appearance: none;
|
|
492
|
-
}
|
|
493
|
-
.zw-number-field__controls[data-v-289baff8] {
|
|
494
|
-
min-width: var(--zw-offset-sm);
|
|
495
|
-
}
|
|
496
|
-
.zw-number-field--disabled[data-v-289baff8] {
|
|
497
|
-
opacity: 0.5;
|
|
498
|
-
}
|
|
499
|
-
.zw-number-field--disabled[data-v-289baff8],
|
|
500
|
-
.zw-number-field--disabled .zw-number-field__input[data-v-289baff8] {
|
|
501
|
-
cursor: not-allowed;
|
|
502
|
-
}
|
|
503
|
-
.zw-number-field__increment-button[data-v-289baff8],
|
|
504
|
-
.zw-number-field__decrement-button[data-v-289baff8] {
|
|
505
|
-
width: 100%;
|
|
506
|
-
height: 50%;
|
|
507
|
-
display: flex;
|
|
508
|
-
align-items: center;
|
|
509
|
-
justify-content: center;
|
|
510
|
-
}
|
|
511
|
-
.zw-number-field__increment-button[data-v-289baff8]::after,
|
|
512
|
-
.zw-number-field__decrement-button[data-v-289baff8]::after {
|
|
513
|
-
content: "";
|
|
514
|
-
border-left: 3px solid transparent;
|
|
515
|
-
border-right: 3px solid transparent;
|
|
516
|
-
}
|
|
517
|
-
.zw-number-field__increment-button[data-v-289baff8]::after {
|
|
518
|
-
border-bottom: 3px solid var(--buttons-color);
|
|
519
|
-
}
|
|
520
|
-
.zw-number-field__decrement-button[data-v-289baff8]::after {
|
|
521
|
-
border-top: 3px solid var(--buttons-color);
|
|
522
|
-
}
|
|
523
|
-
.zw-number-field__increment-button[data-v-289baff8]:hover,
|
|
524
|
-
.zw-number-field__decrement-button[data-v-289baff8]:hover {
|
|
525
|
-
background-color: rgb(var(--zw-color-n20));
|
|
526
|
-
--buttons-color: rgb(var(--zw-color-white));
|
|
527
|
-
}
|
|
528
|
-
.zw-number-field__units[data-v-289baff8] {
|
|
529
|
-
color: rgb(var(--zw-color-n70));
|
|
530
|
-
font-size: var(--zw-font-size-xs);
|
|
531
|
-
line-height: var(--zw-line-height-md);
|
|
532
|
-
text-align: center;
|
|
533
|
-
display: inline-block;
|
|
534
|
-
width: 100%;
|
|
535
|
-
}
|
|
536
|
-
.zw-number-field:hover .zw-number-field__units[data-v-289baff8],
|
|
537
|
-
.zw-number-field:focus .zw-number-field__units[data-v-289baff8] {
|
|
538
|
-
display: none;
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
.zw-modal[data-v-0a3c1c80] {
|
|
543
|
-
border-radius: 2px;
|
|
544
|
-
overflow: hidden;
|
|
545
|
-
box-shadow: 0 0 4px rgba(var(--zw-color-black), 0.3);
|
|
546
|
-
background-color: rgb(var(--zw-color-n15));
|
|
547
|
-
max-height: var(--zw-modal-max-height);
|
|
548
|
-
max-width: var(--zw-modal-max-width);
|
|
549
|
-
z-index: 1000;
|
|
550
|
-
will-change: transform;
|
|
551
|
-
}
|
|
552
|
-
.zw-modal--enter-active[data-v-0a3c1c80] {
|
|
553
|
-
transition: opacity 0.15s ease-out;
|
|
554
|
-
}
|
|
555
|
-
.zw-modal--enter[data-v-0a3c1c80],
|
|
556
|
-
.zw-modal--leave-to[data-v-0a3c1c80] {
|
|
557
|
-
opacity: 0;
|
|
558
|
-
}
|
|
559
|
-
.zw-modal--leave-active[data-v-0a3c1c80] {
|
|
560
|
-
transition: opacity 0.1s ease-in;
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
/* Scrollbar overrides in modal */
|
|
564
|
-
.zw-modal[data-v-0a3c1c80] .simplebar-offset,
|
|
565
|
-
.zw-modal[data-v-0a3c1c80] .simplebar-mask {
|
|
566
|
-
position: initial;
|
|
567
|
-
}
|
|
568
|
-
.zw-modal[data-v-0a3c1c80] .simplebar-content {
|
|
569
|
-
max-height: var(--zw-modal-max-height);
|
|
570
|
-
padding: 0 !important;
|
|
571
|
-
}
|
|
572
|
-
.zw-modal[data-v-0a3c1c80] .simplebar-content-wrapper {
|
|
573
|
-
overscroll-behavior: contain;
|
|
574
|
-
}
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
.zw-dropdown__activator[data-v-4865ea7a] {
|
|
578
|
-
width: 100%;
|
|
579
|
-
}
|
|
580
|
-
.zw-dropdown__activator-title[data-v-4865ea7a] {
|
|
581
|
-
margin-right: var(--zw-offset-xs);
|
|
582
|
-
}
|
|
583
|
-
.zw-dropdown__activator-arrow[data-v-4865ea7a] {
|
|
584
|
-
margin-left: auto;
|
|
585
|
-
}
|
|
586
|
-
.zw-dropdown__activator--active .zw-dropdown__activator-arrow[data-v-4865ea7a] {
|
|
587
|
-
transform: rotateX(180deg);
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
.zw-dropdown__option[data-v-10a0f0b7] {
|
|
592
|
-
width: 100%;
|
|
593
|
-
display: block;
|
|
594
|
-
color: rgb(var(--zw-color-white));
|
|
595
|
-
padding-top: var(--zw-offset-xxs);
|
|
596
|
-
padding-right: var(--zw-offset-sm);
|
|
597
|
-
padding-left: calc(var(--zw-offset-sm) + var(--zw-option-offset, 0px));
|
|
598
|
-
padding-bottom: var(--zw-offset-xxs);
|
|
599
|
-
text-align: left;
|
|
600
|
-
transition: 0.1s background-color ease-out;
|
|
601
|
-
will-change: background-color;
|
|
602
|
-
}
|
|
603
|
-
.zw-dropdown__option[data-v-10a0f0b7]:hover,
|
|
604
|
-
.zw-dropdown__option[data-v-10a0f0b7]:focus,
|
|
605
|
-
.zw-dropdown__option--active[data-v-10a0f0b7] {
|
|
606
|
-
background-color: rgb(var(--zw-color-n30));
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
.zw-dropdown__group[data-v-207aa7a6] {
|
|
611
|
-
padding-top: var(--zw-offset-xs);
|
|
612
|
-
padding-bottom: var(--zw-offset-xs);
|
|
613
|
-
--zw-option-offset: var(--zw-offset-xs);
|
|
614
|
-
}
|
|
615
|
-
.zw-dropdown__group-title[data-v-207aa7a6] {
|
|
616
|
-
color: var(--zw-color-n70);
|
|
617
|
-
font-weight: var(--zw-font-weight-semibold);
|
|
618
|
-
padding-left: var(--zw-offset-sm);
|
|
619
|
-
padding-right: var(--zw-offset-sm);
|
|
620
|
-
margin-top: 0;
|
|
621
|
-
margin-bottom: var(--zw-offset-xs);
|
|
622
|
-
}
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
.zw-dropdown__divider[data-v-72e4c372] {
|
|
626
|
-
padding: 0 var(--zw-offset-sm);
|
|
627
|
-
}
|
|
628
|
-
.zw-dropdown__divider[data-v-72e4c372]::before {
|
|
629
|
-
content: "";
|
|
630
|
-
display: block;
|
|
631
|
-
border-bottom: 1px solid rgb(var(--zw-color-n30));
|
|
632
|
-
}
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
.zw-dropdown__menu {
|
|
636
|
-
padding-top: var(--zw-offset-xs);
|
|
637
|
-
padding-bottom: var(--zw-offset-xs);
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
.zw-dropdown[data-v-35f81e22] {
|
|
642
|
-
position: relative;
|
|
643
|
-
font-size: var(--zw-font-size-xs);
|
|
644
|
-
line-height: var(--zw-line-height-xxs);
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
.zw-style-preset-control[data-v-0f6b31b1] {
|
|
649
|
-
display: flex;
|
|
650
|
-
align-items: center;
|
|
651
|
-
}
|
|
652
|
-
.zw-style-preset-control__dropdown[data-v-0f6b31b1] {
|
|
653
|
-
width: 96px;
|
|
654
|
-
}
|
|
655
|
-
.zw-style-preset-control__reset[data-v-0f6b31b1] {
|
|
656
|
-
color: rgb(var(--zw-color-n70));
|
|
657
|
-
}
|
|
658
|
-
.zw-style-preset-control__reset[data-v-0f6b31b1]:not(:disabled):hover,
|
|
659
|
-
.zw-style-preset-control__reset[data-v-0f6b31b1]:not(:disabled):focus,
|
|
660
|
-
.zw-style-preset-control__reset[data-v-0f6b31b1]:not(:disabled):focus-within {
|
|
661
|
-
color: rgb(var(--zw-color-white));
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
.zw-font-family-control[data-v-2e95c716] {
|
|
666
|
-
width: 96px;
|
|
667
|
-
}
|
|
668
|
-
.zw-font-family-control__option[data-v-2e95c716] {
|
|
669
|
-
font-weight: 400;
|
|
670
|
-
font-family: var(--zw-font-family-option);
|
|
671
|
-
width: 150px;
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
.zw-alignment-control__modal[data-v-9713d430] {
|
|
676
|
-
padding: var(--zw-offset-xxs);
|
|
677
|
-
}
|
|
678
|
-
.zw-alignment-control__toggle[data-v-9713d430] {
|
|
679
|
-
flex-direction: column;
|
|
680
|
-
}
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
.zw-line-height-control__modal[data-v-b87c3724] {
|
|
684
|
-
padding: var(--zw-offset-sm);
|
|
685
|
-
}
|
|
686
|
-
.zw-line-height-control__row[data-v-b87c3724] {
|
|
687
|
-
display: flex;
|
|
688
|
-
align-items: center;
|
|
689
|
-
}
|
|
690
|
-
.zw-line-height-control__range[data-v-b87c3724] {
|
|
691
|
-
width: 156px;
|
|
692
|
-
}
|
|
693
|
-
.zw-line-height-control__field[data-v-b87c3724] {
|
|
694
|
-
width: 52px;
|
|
695
|
-
margin-left: var(--zw-offset-sm);
|
|
696
|
-
}
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
.zw-list-control__option[data-v-305d852b] {
|
|
700
|
-
padding: 0 var(--zw-offset-xs);
|
|
701
|
-
display: flex;
|
|
702
|
-
}
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
.zw-toolbar[data-v-05accea6] {
|
|
706
|
-
border-radius: 2px;
|
|
707
|
-
background-color: rgb(var(--zw-color-n15));
|
|
708
|
-
color: rgb(var(--zw-color-n70));
|
|
709
|
-
z-index: 999;
|
|
710
|
-
}
|
|
711
|
-
.zw-toolbar--enter-active[data-v-05accea6],
|
|
712
|
-
.zw-toolbar--leave-active[data-v-05accea6] {
|
|
713
|
-
transition: opacity 0.15s ease-out;
|
|
714
|
-
}
|
|
715
|
-
.zw-toolbar--leave-active[data-v-05accea6] {
|
|
716
|
-
transition: opacity 0s ease-in;
|
|
717
|
-
}
|
|
718
|
-
.zw-toolbar--enter[data-v-05accea6],
|
|
719
|
-
.zw-toolbar--leave-to[data-v-05accea6] {
|
|
720
|
-
opacity: 0;
|
|
721
|
-
}
|
|
722
|
-
|
|
723
|
-
.zw-wysiwyg {
|
|
724
|
-
--zw-color-n5: 13, 13, 13; /* #0D0D0D; */
|
|
725
|
-
--zw-color-n15: 38, 38, 38; /* #262626; */
|
|
726
|
-
--zw-color-n20: 59, 59, 59; /* #3B3B3B; */
|
|
727
|
-
--zw-color-n30: 77, 77, 77; /* #4D4D4D; */
|
|
728
|
-
--zw-color-n60: 153, 153, 153; /* #999999 */
|
|
729
|
-
--zw-color-n70: 179, 179, 179; /* #B3B3B3 */
|
|
730
|
-
--zw-color-n80: 196, 196, 196; /* #C4C4C4 */
|
|
731
|
-
--zw-color-n85: 217, 217, 217; /* #D9D9D9 */
|
|
732
|
-
--zw-color-n90: 230, 230, 230; /* #E6E6E6 */
|
|
733
|
-
--zw-color-black: 0, 0, 0;
|
|
734
|
-
--zw-color-white: 255, 255, 255;
|
|
735
|
-
|
|
736
|
-
--zw-offset-xxs: 4px;
|
|
737
|
-
--zw-offset-xs: 8px;
|
|
738
|
-
--zw-offset-xsm: 12px;
|
|
739
|
-
--zw-offset-sm: 16px;
|
|
740
|
-
|
|
741
|
-
--zw-font-weight-thin: 400;
|
|
742
|
-
--zw-font-weight-semibold: 500;
|
|
743
|
-
|
|
744
|
-
--zw-font-size-xxs: 12px;
|
|
745
|
-
--zw-font-size-xs: 14px;
|
|
746
|
-
|
|
747
|
-
--zw-line-height-xxs: 1.21;
|
|
748
|
-
--zw-line-height-md: 1.72;
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
/*
|
|
752
|
-
$builder-N5: #0D0D0D;
|
|
753
|
-
$builder-N10: #1A1A1A;
|
|
754
|
-
$builder-N15: #262626;
|
|
755
|
-
$builder-N20: #3B3B3B;
|
|
756
|
-
$builder-N30: #4D4D4D;
|
|
757
|
-
$builder-N40: #666;
|
|
758
|
-
$builder-N50: #808080;
|
|
759
|
-
$builder-N60: #999;
|
|
760
|
-
$builder-N70: #B3B3B3;
|
|
761
|
-
$builder-N80: #C4C4C4;
|
|
762
|
-
$builder-N85: #D9D9D9;
|
|
763
|
-
$builder-N90: #E6E6E6;
|
|
764
|
-
$builder-N94: #F0F0F0;
|
|
765
|
-
$builder-N96: #F5F5F5;
|
|
766
|
-
$builder-N98: #FAFAFA;
|
|
767
|
-
|
|
768
|
-
$font-size-xxs: 12px;
|
|
769
|
-
$font-size-xs: 14px;
|
|
770
|
-
$font-size-sm: 16px;
|
|
771
|
-
$font-size-md: 18px;
|
|
772
|
-
$font-size-lmd: 20px;
|
|
773
|
-
$font-size-lg: 24px;
|
|
774
|
-
|
|
775
|
-
$font-height--xxs: 1.2;
|
|
776
|
-
$font-height--xs: 1.33;
|
|
777
|
-
$font-height--sm: 1.43;
|
|
778
|
-
$font-height--md: 1.72;
|
|
779
|
-
*/
|
|
780
|
-
|
|
781
|
-
.zw-wysiwyg [contenteditable] {
|
|
782
|
-
outline: none;
|
|
783
|
-
}
|
|
784
|
-
|
|
785
|
-
.zw-style {
|
|
786
|
-
font-weight: var(--zw-font-weight, var(--zw-preset-font-weight));
|
|
787
|
-
font-family: var(--zw-font-family, var(--zw-preset-font-family));
|
|
788
|
-
color: var(--zw-font-color, var(--zw-preset-color));
|
|
789
|
-
font-style: var(--zw-font-style, var(--zw-preset-font-style));
|
|
790
|
-
text-decoration: var(--zw-text-decoration, var(--zw-preset-text-decoration));
|
|
791
|
-
background-color: var(--zw-background-color, var(--zw-preset-background-color));
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
@media (min-width: 1200px) {
|
|
795
|
-
|
|
796
|
-
.zw-style {
|
|
797
|
-
font-size: var(--zw-desktop-font-size, var(--zw-preset-desktop-font-size));
|
|
798
|
-
text-align: var(--zw-desktop-text-align, var(--zw-preset-desktop-text-align));
|
|
799
|
-
line-height: var(--zw-desktop-line-height, var(--zw-preset-desktop-line-height));
|
|
800
|
-
}
|
|
801
|
-
}
|
|
802
|
-
|
|
803
|
-
@media (min-width: 769px) and (max-width: 1199.98px) {
|
|
804
|
-
|
|
805
|
-
.zw-style {
|
|
806
|
-
font-size: var(--zw-tablet-font-size, var(--zw-preset-tablet-font-size));
|
|
807
|
-
text-align: var(--zw-tablet-text-align, var(--zw-preset-tablet-text-align));
|
|
808
|
-
line-height: var(--zw-tablet-line-height, var(--zw-preset-tablet-line-height));
|
|
809
|
-
}
|
|
810
|
-
}
|
|
811
|
-
|
|
812
|
-
@media (max-width: 768.98px) {
|
|
813
|
-
|
|
814
|
-
.zw-style {
|
|
815
|
-
font-size: var(--zw-mobile-font-size, var(--zw-preset-mobile-font-size));
|
|
816
|
-
text-align: var(--zw-mobile-text-align, var(--zw-preset-mobile-text-align));
|
|
817
|
-
line-height: var(--zw-mobile-line-height, var(--zw-preset-mobile-line-height));
|
|
818
|
-
}
|
|
819
|
-
}
|
|
820
|
-
|
|
821
|
-
.zw-text--truncate {
|
|
822
|
-
white-space: nowrap;
|
|
823
|
-
overflow: hidden;
|
|
824
|
-
text-overflow: ellipsis;
|
|
825
|
-
max-width: 100%;
|
|
826
|
-
}
|
|
827
|
-
|
|
828
|
-
.zw-position--relative {
|
|
829
|
-
position: relative;
|
|
830
|
-
}
|
|
831
|
-
|
|
832
|
-
.zw-margin-bottom--xs {
|
|
833
|
-
margin-bottom: var(--zw-offset-xs);
|
|
834
|
-
}
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
1
|
+
.zw-toolbar__divider[data-v-d9845d32]{border-color:rgba(var(--zw-color-n90),.1);border-style:solid;border-width:0}.zw-toolbar__divider--vertical[data-v-d9845d32]{border-left-width:1px}.zw-toolbar__divider--horizontal[data-v-d9845d32]{border-bottom-width:1px}.zw-toolbar__row[data-v-a6ed2ebe]{display:flex;justify-content:space-between;column-gap:var(--zw-offset-xs);padding:var(--zw-offset-xxs) var(--zw-offset-xs)}.zw-toolbar__group[data-v-25eee0ed]{display:flex;column-gap:var(--zw-offset-xxs)}.zw-button[data-v-86a41806]{display:inline-flex;align-items:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;background-color:transparent;border:0;padding:0;white-space:nowrap;appearance:none;user-select:none;text-transform:none;letter-spacing:normal;color:inherit;transition:.1s opacity ease-out;will-change:opacity}.zw-button[data-v-86a41806]::-moz-focus-inner{border:0!important}.zw-button[data-v-86a41806]:hover,.zw-button[data-v-86a41806]:focus{text-decoration:none;outline:none}.zw-button[data-v-86a41806]:disabled{user-select:none;box-shadow:none;cursor:not-allowed;opacity:.35}.zw-button--toolbar[data-v-86a41806]{border-radius:1px;min-height:28px;font-weight:var(--zw-font-weight-semibold);font-size:var(--zw-font-size-xs);line-height:var(--zw-line-height-xxs);color:rgb(var(--zw-color-n70));transition-property:background-color,color,opacity;will-change:background-color,color,opacity}.zw-button--primary[data-v-86a41806]{background-color:rgb(var(--zw-color-green));color:rgb(var(--zw-color-white));padding:var(--zw-offset-xxs) var(--zw-offset-sm);line-height:var(--zw-line-height-md)}.zw-button--primary[data-v-86a41806],.zw-button--secondary[data-v-86a41806]{color:rgb(var(--zw-color-white));padding:var(--zw-offset-xxs) var(--zw-offset-sm);font-weight:600;font-size:var(--zw-font-size-xs)}.zw-button--primary[data-v-86a41806]:not(:disabled):hover,.zw-button--secondary[data-v-86a41806]:not(:disabled):hover{opacity:.9}.zw-button--toolbar[data-v-86a41806]:not(.zw-button--icon){padding:var(--zw-offset-xxs) var(--zw-offset-xs)}.zw-button--toolbar[data-v-86a41806]:not(:disabled):hover,.zw-button--toolbar[data-v-86a41806]:not(:disabled):focus,.zw-button--toolbar.zw-button--active[data-v-86a41806]:not(:disabled){color:rgb(var(--zw-color-white));background-color:rgb(var(--zw-color-n5))}.zw-button-toggle[data-v-a02f12aa]{display:flex;column-gap:var(--zw-offset-xxs)}.zw-icon[data-v-366d6daa]{display:flex}.zw-icon--auto-color[data-v-366d6daa]{--zw-icon-foreground: currentColor}.zw-scroll-view[data-v-95e8ad00] .simplebar-placeholder{display:none}.zw-scroll-view[data-v-95e8ad00] .simplebar-track{width:4px;background-color:rgb(var(--zw-color-n20));pointer-events:initial}.zw-scroll-view[data-v-95e8ad00] .simplebar-scrollbar{width:4px}.zw-scroll-view[data-v-95e8ad00] .simplebar-scrollbar:before{top:0;left:0;background-color:rgb(var(--zw-color-n5));cursor:pointer;height:100%;width:100%;opacity:1;border-radius:0}.zw-field-label[data-v-116650c2]{font-weight:var(--zw-font-weight-thin);font-size:var(--zw-font-size-xxs);line-height:var(--zw-line-height-xxs);color:rgb(var(--zw-color-n70));display:block}.zw-range[data-v-15a6af30]{width:100%;height:32px;background:none;cursor:pointer;flex-grow:1;-webkit-appearance:none;--zw-range-track-background-color: transparent;--zw-range-track-background-image: linear-gradient(to right, #B3B3B3 var(--zw-range-progress), #3B3B3B var(--zw-range-progress));--zw-range-thumb-background: rgb(var(--zw-color-white));--zw-range-thumb-box-shadow: -1px -1px 3px rgba(59, 59, 59, .35), 1px 1px 3px rgba(59, 59, 59, .35)}.zw-range[data-v-15a6af30]::-webkit-slider-runnable-track{width:100%;height:4px;border:0;border-radius:0;background-size:100%;background-color:var(--zw-range-track-background-color);background-image:var(--zw-range-track-background-image)}.zw-range[data-v-15a6af30]::-moz-range-track{width:100%;height:4px;border:0;border-radius:0;background-size:100%;background-color:var(--zw-range-track-background-color);background-image:var(--zw-range-track-background-image)}.zw-range[data-v-15a6af30]::-ms-track{width:100%;height:4px;border:0;border-radius:0;background-size:100%;background-color:var(--zw-range-track-background-color);background-image:var(--zw-range-track-background-image)}.zw-range[data-v-15a6af30]::-webkit-slider-thumb{height:13px;width:13px;border-radius:100%;margin-top:-5px;background:var(--zw-range-thumb-background);box-shadow:var(--zw-range-thumb-box-shadow);-webkit-appearance:none;transition:box-shadow .15s cubic-bezier(0,0,.2,1)}.zw-range[data-v-15a6af30]::-moz-range-thumb{height:13px;width:13px;border-radius:100%;margin-top:-5px;background:var(--zw-range-thumb-background);box-shadow:var(--zw-range-thumb-box-shadow);-webkit-appearance:none;transition:box-shadow .15s cubic-bezier(0,0,.2,1)}.zw-range[data-v-15a6af30]::-ms-thumb{height:13px;width:13px;border-radius:100%;margin-top:-5px;background:var(--zw-range-thumb-background);box-shadow:var(--zw-range-thumb-box-shadow);-webkit-appearance:none;transition:box-shadow .15s cubic-bezier(0,0,.2,1)}.zw-range[data-v-15a6af30]::-moz-focus-outer,.zw-range[data-v-15a6af30]::-moz-range-thumb{border:0}.zw-range[data-v-15a6af30]::-ms-thumb{margin-top:-2px}.zw-range[data-v-15a6af30]:focus{outline:none}.zw-range[data-v-15a6af30]:disabled{cursor:not-allowed;opacity:.6;--zw-range-track-background-color: #3B3B3B;--zw-range-track-background-image: linear-gradient(to right, #B3B3B3 var(--zw-range-progress), #3B3B3B var(--zw-range-progress))}.zw-range[data-v-15a6af30]:disabled{--zw-range-thumb-background: #B3B3B3;--zw-range-thumb-box-shadow: 0 0 6px rgba(0, 0, 0, .35)}.zw-range[data-v-15a6af30]:not(:disabled):hover{--zw-range-thumb-box-shadow: 0 0 0 8px rgba(240, 240, 240, .15)}.zw-range[data-v-15a6af30]:not(:disabled):active{--zw-range-thumb-box-shadow: 0 0 0 12px rgba(240, 240, 240, .15)}.zw-number-field[data-v-746d73f1]{--border-color: rgb(var(--zw-color-n60));--text-color: rgb(var(--zw-color-n85));--buttons-color: rgb(var(--zw-color-n70));padding:2px 4px;border:solid 1px var(--border-color);align-items:stretch;display:flex}.zw-number-field[data-v-746d73f1]:hover{--border-color: rgb(var(--zw-color-n80));--text-color: rgb(var(--zw-color-n85))}.zw-number-field[data-v-746d73f1]:focus,.zw-number-field[data-v-746d73f1]:focus-within{--border-color: rgb(var(--zw-color-white));--text-color: rgb(var(--zw-color-white))}.zw-number-field__input[data-v-746d73f1]{color:var(--text-color);background-color:rgb(var(--zw-color-n15));border:0;display:block;width:100%;outline:none!important;line-height:var(--zw-line-height-md);font-size:var(--zw-font-size-xs);-moz-appearance:textfield}.zw-number-field__buttons[data-v-746d73f1]{display:none;flex-direction:column;height:100%}.zw-number-field:hover .zw-number-field__buttons[data-v-746d73f1],.zw-number-field:focus .zw-number-field__buttons[data-v-746d73f1],.zw-number-field:focus-within .zw-number-field__buttons[data-v-746d73f1]{display:flex}.zw-number-field__input[data-v-746d73f1]::placeholder{color:var(--text-color)}.zw-number-field__input[data-v-746d73f1]::-webkit-outer-spin-button,.zw-number-field__input[data-v-746d73f1]::-webkit-inner-spin-button{color:var(--text-color);-webkit-appearance:none}.zw-number-field__controls[data-v-746d73f1]{min-width:var(--zw-offset-sm)}.zw-number-field--disabled[data-v-746d73f1]{opacity:.5}.zw-number-field--disabled[data-v-746d73f1],.zw-number-field--disabled .zw-number-field__input[data-v-746d73f1]{cursor:not-allowed}.zw-number-field__increment-button[data-v-746d73f1],.zw-number-field__decrement-button[data-v-746d73f1]{width:100%;height:50%;display:flex;align-items:center;justify-content:center}.zw-number-field__increment-button[data-v-746d73f1]:after,.zw-number-field__decrement-button[data-v-746d73f1]:after{content:"";border-left:3px solid transparent;border-right:3px solid transparent}.zw-number-field__increment-button[data-v-746d73f1]:after{border-bottom:3px solid var(--buttons-color)}.zw-number-field__decrement-button[data-v-746d73f1]:after{border-top:3px solid var(--buttons-color)}.zw-number-field__increment-button[data-v-746d73f1]:hover,.zw-number-field__decrement-button[data-v-746d73f1]:hover{background-color:rgb(var(--zw-color-n20));--buttons-color: rgb(var(--zw-color-white))}.zw-number-field__units[data-v-746d73f1]{color:rgb(var(--zw-color-n70));font-size:var(--zw-font-size-xs);line-height:var(--zw-line-height-md);text-align:center;display:inline-block;width:100%}.zw-number-field:hover .zw-number-field__units[data-v-746d73f1],.zw-number-field:focus .zw-number-field__units[data-v-746d73f1]{display:none}.zw-modal[data-v-2c99ae29]{border-radius:2px;box-shadow:0 0 4px rgba(var(--zw-color-black),.3);background-color:rgb(var(--zw-color-n15));max-height:var(--zw-modal-max-height);max-width:var(--zw-modal-max-width);z-index:1000;will-change:transform}.zw-modal--enter-active[data-v-2c99ae29]{transition:opacity .15s ease-out}.zw-modal--enter[data-v-2c99ae29],.zw-modal--leave-to[data-v-2c99ae29]{opacity:0}.zw-modal--leave-active[data-v-2c99ae29]{transition:opacity .1s ease-in}.zw-modal[data-v-2c99ae29] .simplebar-offset,.zw-modal[data-v-2c99ae29] .simplebar-mask{position:initial}.zw-modal[data-v-2c99ae29] .simplebar-content{max-height:var(--zw-modal-max-height);padding:0!important}.zw-modal[data-v-2c99ae29] .simplebar-content-wrapper{overscroll-behavior:contain}.zw-field[data-v-7bbd0125]{display:flex;flex-direction:column}.zw-field__input[data-v-7bbd0125]{--border-color: rgb(var(--zw-color-n60));--text-color: rgb(var(--zw-color-n85));border:1px solid var(--border-color);background-color:transparent;color:var(--text-color);font-size:var(--zw-font-size-xxs);outline:none;padding:6px;line-height:var(--zw-line-height-xxs)}.zw-field__input[data-v-7bbd0125]:hover{--border-color: rgb(var(--zw-color-n80));--text-color: rgb(var(--zw-color-n85))}.zw-field__input[data-v-7bbd0125]:focus,.zw-field__input[data-v-7bbd0125]:focus-within{--border-color: rgb(var(--zw-color-white));--text-color: rgb(var(--zw-color-white))}.zw-field__label[data-v-7bbd0125]{display:inline-block;font-size:var(--zw-font-size-xxs);padding-bottom:var(--zw-offset-xxs);line-height:var(--zw-line-height-xxs)}.zw-field__label--error[data-v-7bbd0125]{font-size:var(--zw-font-size-xxs);margin:var(--zw-offset-xxs) 0 0;color:rgb(var(--zw-color-red))}.zw-checkbox[data-v-2de7f5c1]{display:inline-flex;align-items:center;position:relative;cursor:pointer;padding:var(--zw-offset-xxs) var(--zw-offset-xxs) var(--zw-offset-xxs) 0}.zw-checkbox__field+.zw-checkbox__indicator[data-v-2de7f5c1]{color:var(--zw-color-n200);box-shadow:inset 0 0 0 2px currentColor}.zw-checkbox:hover .zw-checkbox__indicator[data-v-2de7f5c1]{box-shadow:inset 0 0 0 2px rgb(var(--zw-color-green))}.zw-checkbox__field:checked+.zw-checkbox__indicator[data-v-2de7f5c1]{color:rgb(var(--zw-color-green))}.zw-checkbox .zw-checkbox__field:checked+.zw-checkbox__indicator[data-v-2de7f5c1]{background-color:rgb(var(--zw-color-green))}.zw-checkbox .zw-checkbox__indicator[data-v-2de7f5c1]:after{content:"";display:block;height:16px;transform:scale(.6);transition:transform .2s ease-out;width:16px;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNiAyNiIgd2lkdGg9IjUxMiIgaGVpZ2h0PSI1MTIiPgogIDxwYXRoIGZpbGw9IiNGRkYiIGQ9Ik0uMyAxNGMtLjItLjItLjMtLjUtLjMtLjdzLjEtLjUuMy0uN2wxLjQtMS40Yy40LS40IDEtLjQgMS40IDBsLjEuMSA1LjUgNS45Yy4yLjIuNS4yLjcgMEwyMi44IDMuM2guMWMuNC0uNCAxLS40IDEuNCAwbDEuNCAxLjRjLjQuNC40IDEgMCAxLjRsLTE2IDE2LjZjLS4yLjItLjQuMy0uNy4zLS4zIDAtLjUtLjEtLjctLjNMLjUgMTQuMy4zIDE0eiIvPgo8L3N2Zz4K);background-repeat:no-repeat;background-size:16px;background-position:center center}.zw-checkbox__field:not(:checked)+.zw-checkbox__indicator[data-v-2de7f5c1]:after{transform:scale(0)}.zw-checkbox__field[data-v-2de7f5c1]{position:absolute;opacity:0;height:0;width:0}.zw-checkbox__label[data-v-2de7f5c1]{font-size:var(--zw-font-size-xs)}.zw-dropdown__activator[data-v-021ac370]{width:100%}.zw-dropdown__activator-title[data-v-021ac370]{margin-right:var(--zw-offset-xs)}.zw-dropdown__activator-arrow[data-v-021ac370]{margin-left:auto}.zw-dropdown__activator--active .zw-dropdown__activator-arrow[data-v-021ac370]{transform:rotateX(180deg)}.zw-dropdown__activator--gray[data-v-021ac370]{background-color:rgb(var(--zw-color-n20));font-size:var(--zw-font-size-xxs);color:rgb(var(--zw-color-white))}.zw-dropdown__option[data-v-1355d08c]{width:100%;display:block;color:rgb(var(--zw-color-white));padding-top:var(--zw-offset-xxs);padding-right:var(--zw-offset-sm);padding-left:calc(var(--zw-offset-sm) + var(--zw-option-offset, 0px));padding-bottom:var(--zw-offset-xxs);text-align:left;transition:.1s background-color ease-out;will-change:background-color}.zw-dropdown__option[data-v-1355d08c]:hover,.zw-dropdown__option[data-v-1355d08c]:focus,.zw-dropdown__option--active[data-v-1355d08c]{background-color:rgb(var(--zw-color-n30))}.zw-dropdown__group[data-v-21efeb20]{padding-top:var(--zw-offset-xs);padding-bottom:var(--zw-offset-xs);--zw-option-offset: var(--zw-offset-xs)}.zw-dropdown__group-title[data-v-21efeb20]{color:var(--zw-color-n70);font-weight:var(--zw-font-weight-semibold);padding-left:var(--zw-offset-sm);padding-right:var(--zw-offset-sm);margin-top:0;margin-bottom:var(--zw-offset-xs)}.zw-dropdown__divider[data-v-1f5efb01]{padding:0 var(--zw-offset-sm)}.zw-dropdown__divider[data-v-1f5efb01]:before{content:"";display:block;border-bottom:1px solid rgb(var(--zw-color-n30))}.zw-dropdown__menu{padding-top:var(--zw-offset-xs);padding-bottom:var(--zw-offset-xs)}.zw-dropdown[data-v-885109ea]{position:relative;font-size:var(--zw-font-size-xs);line-height:var(--zw-line-height-xxs)}.zw-style-preset-control[data-v-39d20a0e]{display:flex;align-items:center}.zw-style-preset-control__dropdown[data-v-39d20a0e]{width:96px}.zw-style-preset-control__reset[data-v-39d20a0e]{color:rgb(var(--zw-color-n70))}.zw-style-preset-control__reset[data-v-39d20a0e]:not(:disabled):hover,.zw-style-preset-control__reset[data-v-39d20a0e]:not(:disabled):focus,.zw-style-preset-control__reset[data-v-39d20a0e]:not(:disabled):focus-within{color:rgb(var(--zw-color-white))}.zw-font-family-control[data-v-07a47462]{width:96px}.zw-font-family-control__option[data-v-07a47462]{font-weight:400;font-family:var(--zw-font-family-option);width:150px}.zw-font-size-control[data-v-71dd7ffc]{width:64px}.zw-alignment-control__modal[data-v-cef30e1a]{padding:var(--zw-offset-xxs)}.zw-alignment-control__toggle[data-v-cef30e1a]{flex-direction:column}.zw-line-height-control__modal[data-v-532367c1]{padding:var(--zw-offset-sm)}.zw-line-height-control__row[data-v-532367c1]{display:flex;align-items:center}.zw-line-height-control__range[data-v-532367c1]{width:156px}.zw-line-height-control__field[data-v-532367c1]{width:52px;margin-left:var(--zw-offset-sm)}.zpa-list-control[data-v-ce2b1130]{display:flex}.zpa-list-control[data-v-ce2b1130]:hover{color:rgb(var(--zw-color-white));background-color:rgb(var(--zw-color-n5))}.zw-list-control__activator[data-v-ce2b1130]{padding:0 var(--zw-offset-xs)}.zw-list-control__option[data-v-ce2b1130]{padding:0 var(--zw-offset-xs);display:flex}.zw-link-modal-header[data-v-7dbfe03f]{display:flex;align-items:center;justify-content:space-between;padding:var(--zw-offset-sm);border-bottom:2px solid rgb(var(--zw-color-n5))}.zw-link-modal-header__title[data-v-7dbfe03f]{text-transform:uppercase;font-weight:var(--zw-font-weight-semibold);font-size:var(--zw-font-size-xxs);color:rgb(var(--zw-color-white))}.zw-link-modal-header__unlink-icon[data-v-7dbfe03f]{margin-right:var(--zw-offset-xxs)}.zw-link-modal-header__unlink-button[data-v-7dbfe03f]{color:rgb(var(--zw-color-n80));font-size:var(--zw-font-size-xxs);transition:.1s opacity ease-out;will-change:opacity}.zw-link-modal-header__unlink-button[data-v-7dbfe03f]:disabled{opacity:.35}.zw-link-modal-header__unlink-button[data-v-7dbfe03f]:hover{color:rgb(var(--zw-color-white))}.zw-link-modal__apply[data-v-2ad47228]{display:flex;justify-content:flex-end}.zw-link-modal[data-v-0ca87de5]{width:266px}.zw-link-modal__body[data-v-0ca87de5]{padding:var(--zw-offset-sm)}[data-v-0ca87de5] .zw-link-modal-dropdown__option{width:234px}.zw-toolbar[data-v-ad3592b8]{border-radius:2px;background-color:rgb(var(--zw-color-n15));color:rgb(var(--zw-color-n70));z-index:999999}.zw-toolbar[data-v-ad3592b8]:before,.zw-toolbar[data-v-ad3592b8]:after{content:"";display:block;width:100%;height:calc(var(--zw-toolbar-offset-y) + 4px);position:absolute;--zw-toolbar-safe-zone: calc(-1 * var(--zw-toolbar-offset-y))}.zw-toolbar[data-v-ad3592b8]:before{top:var(--zw-toolbar-safe-zone)}.zw-toolbar[data-v-ad3592b8]:after{bottom:var(--zw-toolbar-safe-zone)}.zw-toolbar--enter-active[data-v-ad3592b8],.zw-toolbar--leave-active[data-v-ad3592b8]{transition:opacity .15s ease-out}.zw-toolbar--leave-active[data-v-ad3592b8]{transition:opacity 0s ease-in}.zw-toolbar--enter[data-v-ad3592b8],.zw-toolbar--leave-to[data-v-ad3592b8]{opacity:0}.zw-wysiwyg{--zw-color-n5: 13, 13, 13;--zw-color-n15: 38, 38, 38;--zw-color-n20: 59, 59, 59;--zw-color-n30: 77, 77, 77;--zw-color-n60: 153, 153, 153;--zw-color-n70: 179, 179, 179;--zw-color-n80: 196, 196, 196;--zw-color-n85: 217, 217, 217;--zw-color-n90: 230, 230, 230;--zw-color-n200: 194, 200, 209;--zw-color-black: 0, 0, 0;--zw-color-white: 255, 255, 255;--zw-color-green: 59, 180, 74;--zw-color-red: 234, 58, 58;--zw-offset-xxs: 4px;--zw-offset-xs: 8px;--zw-offset-xsm: 12px;--zw-offset-sm: 16px;--zw-offset-md: 24px;--zw-font-weight-thin: 400;--zw-font-weight-semibold: 500;--zw-font-size-xxs: 12px;--zw-font-size-xs: 14px;--zw-line-height-xxs: 1.21;--zw-line-height-md: 1.72}.zw-wysiwyg [contenteditable]{outline:none}.zw-wysiwyg__placeholder:first-child:last-child:before{content:attr(data-placeholder);color:rgb(var(--zw-color-n70));float:left;height:0;pointer-events:none}.zw-superscript{font-size:75%;line-height:0;position:relative;vertical-align:initial;top:-.5em}.zw-style.zw-style.zw-style{font-weight:var(--zw-font-weight, var(--zw-preset-font-weight));font-family:var(--zw-font-family, var(--zw-preset-font-family));color:var(--zw-font-color, var(--zw-preset-color));font-style:var(--zw-font-style, var(--zw-preset-font-style));text-decoration:var(--zw-text-decoration, var(--zw-preset-text-decoration));background-color:var(--zw-background-color, var(--zw-preset-background-color))}@media (min-width: 1200px){.zw-style.zw-style.zw-style{font-size:var(--zw-font-size-desktop, var(--zw-preset-desktop-font-size));text-align:var(--zw-text-align-desktop, var(--zw-preset-desktop-text-align));line-height:var(--zw-line-height-desktop, var(--zw-preset-desktop-line-height))}}@media (min-width: 769px) and (max-width: 1199.98px){.zw-style.zw-style.zw-style{font-size:var(--zw-font-size-tablet, var(--zw-preset-tablet-font-size));text-align:var(--zw-text-align-tablet, var(--zw-preset-tablet-text-align));line-height:var(--zw-line-height-tablet, var(--zw-preset-tablet-line-height))}}@media (max-width: 768.98px){.zw-style.zw-style.zw-style{font-size:var(--zw-font-size-mobile, var(--zw-preset-mobile-font-size));text-align:var(--zw-text-align-mobile, var(--zw-preset-mobile-text-align));line-height:var(--zw-line-height-mobile, var(--zw-preset-mobile-line-height))}}.ProseMirror{position:relative}.ProseMirror{word-wrap:break-word;white-space:pre-wrap;white-space:break-spaces;-webkit-font-variant-ligatures:none;font-variant-ligatures:none;font-feature-settings:"liga" 0}.ProseMirror [contenteditable=false]{white-space:normal}.ProseMirror [contenteditable=false] [contenteditable=true],.ProseMirror pre{white-space:pre-wrap}img.ProseMirror-separator{display:inline!important;border:none!important;margin:0!important;width:1px!important;height:1px!important}.ProseMirror-gapcursor{display:none;pointer-events:none;position:absolute;margin:0}.ProseMirror-gapcursor:after{content:"";display:block;position:absolute;top:-2px;width:20px;border-top:1px solid #000;animation:ProseMirror-cursor-blink 1.1s steps(2,start) infinite}@keyframes ProseMirror-cursor-blink{to{visibility:hidden}}.ProseMirror-hideselection *::selection{background:transparent}.ProseMirror-hideselection *::-moz-selection{background:transparent}.ProseMirror-hideselection *{caret-color:transparent}.ProseMirror-focused .ProseMirror-gapcursor{display:block}.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}.zw-text--truncate{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%}.zw-position--relative{position:relative}.zw-margin-bottom--xxs{margin-bottom:var(--zw-offset-xxs)}.zw-margin-bottom--xs{margin-bottom:var(--zw-offset-xs)}.zw-margin-bottom--sm{margin-bottom:var(--zw-offset-sm)}.zw-margin-bottom--md{margin-bottom:var(--zw-offset-md)}.zw-margin-right--xs{margin-right:var(--zw-offset-xs)}
|