jodit 3.8.4 → 3.8.8
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/.idea/workspace.xml +165 -1308
- package/{.stylelintrc.json → .stylelintrc} +2 -1
- package/CHANGELOG.MD +54 -14
- package/build/jodit.css +280 -258
- package/build/jodit.es2018.css +231 -213
- package/build/jodit.es2018.en.css +231 -213
- package/build/jodit.es2018.en.js +9453 -9409
- package/build/jodit.es2018.en.min.css +1 -1
- package/build/jodit.es2018.en.min.js +1 -10
- package/build/jodit.es2018.js +13482 -13438
- package/build/jodit.es2018.min.css +1 -1
- package/build/jodit.es2018.min.js +1 -10
- package/build/jodit.js +9064 -9013
- package/build/jodit.min.css +2 -2
- package/build/jodit.min.js +1 -10
- package/build-system/index.js +78 -0
- package/{src/utils → build-system/loaders}/css-variables-prefixes.js +0 -0
- package/{src/utils → build-system/loaders}/lang-loader.js +0 -0
- package/build-system/loaders/style.js +31 -0
- package/{src/utils → build-system/loaders}/svg-loader.js +1 -0
- package/build-system/minimizer/css.js +20 -0
- package/build-system/minimizer/index.js +7 -0
- package/build-system/minimizer/js.js +41 -0
- package/{src/utils/plugin-loader.js → build-system/plugins/banner.js} +7 -6
- package/build-system/plugins/define.js +22 -0
- package/build-system/plugins/extract-css.js +14 -0
- package/build-system/plugins/index.js +31 -0
- package/build-system/plugins/post-build.js +52 -0
- package/build-system/rules/css.js +12 -0
- package/build-system/rules/extra-typescript.js +22 -0
- package/build-system/rules/index.js +17 -0
- package/build-system/rules/internal-typescript.js +23 -0
- package/build-system/rules/langs.js +20 -0
- package/build-system/rules/svg.js +19 -0
- package/build-system/utils/filename.js +17 -0
- package/{src → build-system}/utils/post-build.js +0 -0
- package/build-system/variables.js +53 -0
- package/package.json +34 -33
- package/src/config.ts +8 -14
- package/src/core/ajax.ts +16 -46
- package/src/core/async.ts +6 -17
- package/src/core/component/view-component.ts +0 -1
- package/src/core/constants.ts +5 -5
- package/src/core/create.ts +8 -27
- package/src/core/decorators/debounce.ts +0 -8
- package/src/core/decorators/hook.ts +0 -1
- package/src/core/decorators/nonenumerable.ts +1 -2
- package/src/core/decorators/persistent.ts +0 -3
- package/src/core/decorators/spy.ts +0 -1
- package/src/core/decorators/wait.ts +0 -1
- package/src/core/dom.ts +56 -114
- package/src/core/events/events-native.ts +52 -26
- package/src/core/events/observe-object.ts +0 -2
- package/src/core/global.ts +10 -6
- package/src/core/helpers/append-script.ts +0 -8
- package/src/core/helpers/array/as-array.ts +2 -5
- package/src/core/helpers/array/split-array.ts +0 -1
- package/src/core/helpers/async/set-timeout.ts +0 -7
- package/src/core/helpers/browser.ts +0 -1
- package/src/core/helpers/checker/has-browser-color-picker.ts +0 -3
- package/src/core/helpers/checker/is-array.ts +0 -1
- package/src/core/helpers/checker/is-equal.ts +0 -3
- package/src/core/helpers/checker/is-function.ts +0 -2
- package/src/core/helpers/checker/is-html-from-word.ts +0 -3
- package/src/core/helpers/checker/is-html.ts +0 -1
- package/src/core/helpers/checker/is-number.ts +0 -1
- package/src/core/helpers/checker/is-numeric.ts +0 -2
- package/src/core/helpers/checker/is-plain-object.ts +0 -1
- package/src/core/helpers/checker/is-string.ts +0 -1
- package/src/core/helpers/checker/is-url.ts +0 -4
- package/src/core/helpers/color/color-to-hex.ts +2 -2
- package/src/core/helpers/config-proto.ts +0 -3
- package/src/core/helpers/convert-media-url-to-video-embed.ts +1 -6
- package/src/core/helpers/ctrl-key.ts +1 -3
- package/src/core/helpers/data-bind.ts +0 -6
- package/src/core/helpers/default-language.ts +0 -3
- package/src/core/helpers/each.ts +12 -0
- package/src/core/helpers/html/htmlspecialchars.ts +0 -4
- package/src/core/helpers/html/nl2br.ts +0 -1
- package/src/core/helpers/human-size-to-bytes.ts +1 -4
- package/src/core/helpers/normalize/normalize-color.ts +2 -3
- package/src/core/helpers/normalize/normalize-key-aliases.ts +0 -2
- package/src/core/helpers/normalize/normalize-path.ts +0 -2
- package/src/core/helpers/normalize/normalize-size.ts +0 -3
- package/src/core/helpers/selector.ts +0 -8
- package/src/core/helpers/size/get-content-width.ts +0 -2
- package/src/core/helpers/size/offset.ts +1 -7
- package/src/core/helpers/size/position.ts +0 -4
- package/src/core/helpers/string/camel-case.ts +1 -2
- package/src/core/helpers/string/i18n.ts +0 -7
- package/src/core/helpers/string/kebab-case.ts +7 -5
- package/src/core/helpers/string/stringify.ts +0 -3
- package/src/core/helpers/string/trim.ts +0 -2
- package/src/core/helpers/string/ucfirst.ts +2 -5
- package/src/core/helpers/type.ts +0 -1
- package/src/core/helpers/utils/get.ts +0 -2
- package/src/core/helpers/utils/mark-deprecated.ts +0 -4
- package/src/core/helpers/utils/set.ts +0 -2
- package/src/core/helpers/utils/utils.ts +35 -14
- package/src/core/plugin-system.ts +0 -31
- package/src/core/selection/select.ts +15 -13
- package/src/core/selection/style/api/is-normal-node.ts +1 -2
- package/src/core/selection/style/api/toggle-styles.ts +0 -2
- package/src/core/selection/style/apply-style.ts +6 -2
- package/src/core/traits/mods.ts +1 -3
- package/src/core/ui/button/button/button.less +7 -3
- package/src/core/ui/button/button/button.ts +1 -1
- package/src/core/ui/button/group/group.less +5 -5
- package/src/core/ui/element.ts +0 -4
- package/src/core/ui/form/inputs/file/file.less +4 -4
- package/src/core/ui/form/validators/input.ts +0 -2
- package/src/core/ui/form/validators/select.ts +0 -1
- package/src/core/ui/helpers/get-control-type.ts +0 -2
- package/src/core/ui/icon.ts +0 -10
- package/src/core/ui/list/group.less +1 -1
- package/src/core/ui/list/group.ts +1 -6
- package/src/core/ui/list/list.ts +0 -3
- package/src/core/ui/popup/popup.ts +0 -11
- package/src/core/ui/progress-bar/progress-bar.less +8 -8
- package/src/core/view/view-with-toolbar.ts +0 -5
- package/src/core/view/view.ts +2 -18
- package/src/index.ts +1 -1
- package/src/jodit.ts +14 -70
- package/src/modules/context-menu/context-menu.ts +3 -6
- package/src/modules/dialog/alert.ts +0 -6
- package/src/modules/dialog/confirm.ts +1 -1
- package/src/modules/dialog/dialog.ts +22 -55
- package/src/modules/dialog/prompt.ts +3 -5
- package/src/modules/image-editor/image-editor.less +51 -46
- package/src/modules/status-bar/status-bar.less +12 -12
- package/src/modules/status-bar/status-bar.ts +0 -3
- package/src/modules/table.ts +17 -6
- package/src/modules/toolbar/button/button.less +5 -6
- package/src/modules/toolbar/button/button.ts +1 -1
- package/src/modules/toolbar/button/content.less +2 -2
- package/src/modules/widget/color-picker/color-picker.less +7 -6
- package/src/modules/widget/tabs/tabs.less +3 -3
- package/src/plugins/about/about.less +1 -1
- package/src/plugins/add-new-line/add-new-line.less +14 -15
- package/src/plugins/add-new-line/add-new-line.ts +1 -1
- package/src/plugins/clipboard/paste-storage/paste-storage.less +10 -11
- package/src/plugins/fix/clean-html.ts +2 -2
- package/src/plugins/fix/wrap-text-nodes.ts +1 -2
- package/src/plugins/fullsize/fullsize.less +5 -5
- package/src/plugins/image/image-properties/image-properties.less +11 -7
- package/src/plugins/image/image-properties/image-properties.ts +11 -8
- package/src/plugins/placeholder/placeholder.less +4 -4
- package/src/plugins/resizer/resizer.less +28 -23
- package/src/plugins/search/search.less +25 -25
- package/src/plugins/source/source.less +15 -15
- package/src/plugins/xpath/xpath.less +3 -3
- package/src/styles/form.less +19 -14
- package/src/styles/modules/button-group.less +2 -2
- package/src/styles/modules/icon.less +9 -8
- package/src/types/ajax.d.ts +28 -0
- package/src/types/async.d.ts +4 -3
- package/src/types/events.d.ts +15 -0
- package/tsconfig.json +1 -1
- package/types/config.d.ts +8 -14
- package/types/core/ajax.d.ts +6 -29
- package/types/core/async.d.ts +2 -15
- package/types/core/component/view-component.d.ts +0 -1
- package/types/core/constants.d.ts +5 -5
- package/types/core/create.d.ts +0 -4
- package/types/core/decorators/debounce.d.ts +0 -8
- package/types/core/decorators/hook.d.ts +0 -1
- package/types/core/decorators/nonenumerable.d.ts +1 -2
- package/types/core/decorators/persistent.d.ts +0 -3
- package/types/core/decorators/wait.d.ts +0 -1
- package/types/core/dom.d.ts +25 -112
- package/types/core/events/events-native.d.ts +18 -17
- package/types/core/events/observe-object.d.ts +0 -2
- package/types/core/global.d.ts +0 -4
- package/types/core/helpers/append-script.d.ts +0 -8
- package/types/core/helpers/array/as-array.d.ts +3 -0
- package/types/core/helpers/array/split-array.d.ts +0 -1
- package/types/core/helpers/async/set-timeout.d.ts +0 -7
- package/types/core/helpers/browser.d.ts +0 -1
- package/types/core/helpers/checker/has-browser-color-picker.d.ts +0 -3
- package/types/core/helpers/checker/is-array.d.ts +0 -1
- package/types/core/helpers/checker/is-equal.d.ts +0 -3
- package/types/core/helpers/checker/is-function.d.ts +0 -2
- package/types/core/helpers/checker/is-html-from-word.d.ts +0 -3
- package/types/core/helpers/checker/is-html.d.ts +0 -1
- package/types/core/helpers/checker/is-number.d.ts +0 -1
- package/types/core/helpers/checker/is-numeric.d.ts +0 -2
- package/types/core/helpers/checker/is-plain-object.d.ts +0 -1
- package/types/core/helpers/checker/is-string.d.ts +0 -1
- package/types/core/helpers/checker/is-url.d.ts +0 -4
- package/types/core/helpers/color/color-to-hex.d.ts +2 -2
- package/types/core/helpers/config-proto.d.ts +0 -3
- package/types/core/helpers/convert-media-url-to-video-embed.d.ts +1 -6
- package/types/core/helpers/ctrl-key.d.ts +1 -3
- package/types/core/helpers/data-bind.d.ts +0 -6
- package/types/core/helpers/default-language.d.ts +0 -3
- package/types/core/helpers/each.d.ts +9 -0
- package/types/core/helpers/html/htmlspecialchars.d.ts +0 -4
- package/types/core/helpers/html/nl2br.d.ts +0 -1
- package/types/core/helpers/human-size-to-bytes.d.ts +1 -4
- package/types/core/helpers/normalize/normalize-color.d.ts +2 -3
- package/types/core/helpers/normalize/normalize-key-aliases.d.ts +0 -2
- package/types/core/helpers/normalize/normalize-path.d.ts +0 -2
- package/types/core/helpers/normalize/normalize-size.d.ts +0 -3
- package/types/core/helpers/selector.d.ts +0 -8
- package/types/core/helpers/size/get-content-width.d.ts +0 -2
- package/types/core/helpers/size/offset.d.ts +1 -7
- package/types/core/helpers/string/camel-case.d.ts +1 -2
- package/types/core/helpers/string/i18n.d.ts +0 -7
- package/types/core/helpers/string/kebab-case.d.ts +1 -5
- package/types/core/helpers/string/stringify.d.ts +0 -3
- package/types/core/helpers/string/trim.d.ts +0 -2
- package/types/core/helpers/string/ucfirst.d.ts +1 -4
- package/types/core/helpers/type.d.ts +0 -1
- package/types/core/helpers/utils/get.d.ts +0 -2
- package/types/core/helpers/utils/mark-deprecated.d.ts +0 -4
- package/types/core/helpers/utils/set.d.ts +0 -2
- package/types/core/helpers/utils/utils.d.ts +4 -15
- package/types/core/plugin-system.d.ts +0 -31
- package/types/core/selection/select.d.ts +8 -9
- package/types/core/selection/style/api/toggle-styles.d.ts +0 -2
- package/types/core/traits/mods.d.ts +1 -3
- package/types/core/ui/element.d.ts +0 -4
- package/types/core/ui/form/validators/input.d.ts +0 -2
- package/types/core/ui/form/validators/select.d.ts +0 -1
- package/types/core/ui/helpers/get-control-type.d.ts +0 -2
- package/types/core/ui/icon.d.ts +0 -10
- package/types/core/ui/list/group.d.ts +1 -6
- package/types/core/ui/list/list.d.ts +0 -3
- package/types/core/ui/popup/popup.d.ts +0 -11
- package/types/core/view/view-with-toolbar.d.ts +0 -5
- package/types/core/view/view.d.ts +2 -18
- package/types/index.d.ts +1 -1
- package/types/jodit.d.ts +2 -46
- package/types/modules/context-menu/context-menu.d.ts +3 -6
- package/types/modules/dialog/alert.d.ts +0 -6
- package/types/modules/dialog/confirm.d.ts +1 -1
- package/types/modules/dialog/dialog.d.ts +9 -29
- package/types/modules/dialog/prompt.d.ts +3 -5
- package/types/modules/status-bar/status-bar.d.ts +0 -3
- package/types/modules/table.d.ts +1 -1
- package/types/types/ajax.d.ts +28 -0
- package/types/types/async.d.ts +4 -3
- package/types/types/events.d.ts +15 -0
- package/src/utils/create-entries.js +0 -57
- package/src/utils/lang-translater.js +0 -142
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
|
|
3
3
|
* Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)
|
|
4
|
-
* Version: v3.8.
|
|
4
|
+
* Version: v3.8.8
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -137,6 +137,12 @@
|
|
|
137
137
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
138
138
|
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
139
139
|
*/
|
|
140
|
+
:root {
|
|
141
|
+
--jd-switche-width: 60px;
|
|
142
|
+
--jd-switche-height: 32px;
|
|
143
|
+
--jd-switche-slider-margin: 4px;
|
|
144
|
+
--jd-switche-slider-size: calc(var(--jd-switche-height) - var(--jd-switche-slider-margin) * 2);
|
|
145
|
+
}
|
|
140
146
|
.jodit-form {
|
|
141
147
|
font-family: var(--jd-font-default);
|
|
142
148
|
font-size: var(--jd-font-size-default);
|
|
@@ -301,37 +307,33 @@
|
|
|
301
307
|
vertical-align: middle;
|
|
302
308
|
}
|
|
303
309
|
.jodi-switcher {
|
|
304
|
-
--jd-width: 60px;
|
|
305
|
-
--jd-height: 32px;
|
|
306
|
-
--jd-slider-margin: 4px;
|
|
307
|
-
--jd-slider-size: calc(var(--jd-height) - var(--jd-slider-margin) * 2);
|
|
308
310
|
position: relative;
|
|
309
311
|
display: inline-block;
|
|
310
|
-
width: var(--jd-width);
|
|
311
|
-
height: var(--jd-height);
|
|
312
|
+
width: var(--jd-switche-width);
|
|
313
|
+
height: var(--jd-switche-height);
|
|
312
314
|
}
|
|
313
315
|
.jodi-switcher input {
|
|
314
316
|
width: 0;
|
|
315
317
|
height: 0;
|
|
316
318
|
opacity: 0;
|
|
317
319
|
}
|
|
318
|
-
.jodi-switcher__slider {
|
|
320
|
+
.jodi-switcher .jodi-switcher__slider {
|
|
319
321
|
position: absolute;
|
|
320
322
|
top: 0;
|
|
321
323
|
right: 0;
|
|
322
324
|
bottom: 0;
|
|
323
325
|
left: 0;
|
|
324
326
|
background-color: var(--jd-color-gray);
|
|
325
|
-
border-radius: var(--jd-height);
|
|
327
|
+
border-radius: var(--jd-switche-height);
|
|
326
328
|
cursor: pointer;
|
|
327
329
|
transition: 0.4s;
|
|
328
330
|
}
|
|
329
|
-
.jodi-switcher__slider:before {
|
|
331
|
+
.jodi-switcher .jodi-switcher__slider:before {
|
|
330
332
|
position: absolute;
|
|
331
|
-
bottom: var(--jd-slider-margin);
|
|
332
|
-
left: var(--jd-slider-margin);
|
|
333
|
-
width: var(--jd-slider-size);
|
|
334
|
-
height: var(--jd-slider-size);
|
|
333
|
+
bottom: var(--jd-switche-slider-margin);
|
|
334
|
+
left: var(--jd-switche-slider-margin);
|
|
335
|
+
width: var(--jd-switche-slider-size);
|
|
336
|
+
height: var(--jd-switche-slider-size);
|
|
335
337
|
background-color: white;
|
|
336
338
|
border-radius: 50%;
|
|
337
339
|
content: '';
|
|
@@ -341,7 +343,7 @@ input:checked + .jodi-switcher__slider {
|
|
|
341
343
|
background-color: var(--jd-color-background-active);
|
|
342
344
|
}
|
|
343
345
|
input:checked + .jodi-switcher__slider:before {
|
|
344
|
-
transform: translateX(calc(var(--jd-width) - var(--jd-slider-margin) * 2 - var(--jd-slider-size)));
|
|
346
|
+
transform: translateX(calc(var(--jd-switche-width) - var(--jd-switche-slider-margin) * 2 - var(--jd-switche-slider-size)));
|
|
345
347
|
}
|
|
346
348
|
input:focus + .jodi-switcher__slider {
|
|
347
349
|
box-shadow: 0 0 1px var(--jd-color-background-active);
|
|
@@ -369,14 +371,14 @@ input:focus + .jodi-switcher__slider {
|
|
|
369
371
|
.jodit-button-group input:first-child + button,
|
|
370
372
|
.jodit-button-group button:first-child {
|
|
371
373
|
border-right: 0;
|
|
372
|
-
border-top-right-radius: 0;
|
|
373
374
|
border-bottom-right-radius: 0;
|
|
375
|
+
border-top-right-radius: 0;
|
|
374
376
|
}
|
|
375
377
|
.jodit-button-group input:last-child + button,
|
|
376
378
|
.jodit-button-group button:last-child {
|
|
377
379
|
border-left: 0;
|
|
378
|
-
border-top-left-radius: 0;
|
|
379
380
|
border-bottom-left-radius: 0;
|
|
381
|
+
border-top-left-radius: 0;
|
|
380
382
|
}
|
|
381
383
|
.jodit-button-group input[type='checkbox']:not(:checked) + button + button {
|
|
382
384
|
background-image: none;
|
|
@@ -561,31 +563,31 @@ input:focus + .jodi-switcher__slider {
|
|
|
561
563
|
}
|
|
562
564
|
}
|
|
563
565
|
.jodit-icon_loader {
|
|
564
|
-
|
|
565
|
-
background-size: 100% 100%;
|
|
566
|
+
display: inline-block;
|
|
566
567
|
width: var(--jd-icon-loader-size);
|
|
567
568
|
height: var(--jd-icon-loader-size);
|
|
568
|
-
|
|
569
|
+
animation: rotate 2s ease-out 0s infinite;
|
|
570
|
+
background: url(data:image/png;base64,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) no-repeat center;
|
|
571
|
+
background-size: 100% 100%;
|
|
569
572
|
vertical-align: middle;
|
|
570
573
|
will-change: transform;
|
|
571
|
-
animation: rotate 2s ease-out 0s infinite;
|
|
572
574
|
}
|
|
573
575
|
.jodit-icon {
|
|
576
|
+
overflow: visible;
|
|
574
577
|
width: 14px;
|
|
575
578
|
height: 14px;
|
|
579
|
+
background: center no-repeat;
|
|
580
|
+
background-size: contain;
|
|
576
581
|
fill: var(--jd-color-icon);
|
|
577
582
|
stroke: var(--jd-color-icon);
|
|
578
583
|
transform-origin: 0 0 !important;
|
|
579
|
-
overflow: visible;
|
|
580
|
-
background: center no-repeat;
|
|
581
|
-
background-size: contain;
|
|
582
584
|
}
|
|
583
585
|
.jodit-icon_close {
|
|
584
586
|
stroke: var(--jd-color-icon);
|
|
585
587
|
}
|
|
586
588
|
svg.jodit-icon {
|
|
587
|
-
isolation: isolate;
|
|
588
589
|
height: auto;
|
|
590
|
+
isolation: isolate;
|
|
589
591
|
}
|
|
590
592
|
.jodit-icon_text {
|
|
591
593
|
font-size: 14px;
|
|
@@ -825,7 +827,7 @@ svg.jodit-icon {
|
|
|
825
827
|
font-family: var(--jd-font-default);
|
|
826
828
|
font-size: var(--jd-font-size-default);
|
|
827
829
|
display: inline-flex;
|
|
828
|
-
flex: 1;
|
|
830
|
+
flex-grow: 1;
|
|
829
831
|
justify-content: center;
|
|
830
832
|
}
|
|
831
833
|
.jodit-ui-button-icon-text_context_menu .jodit-ui-button-icon-text__text {
|
|
@@ -847,6 +849,21 @@ svg.jodit-icon {
|
|
|
847
849
|
.jodit-ui-button-icon-text__icon:empty + .jodit-ui-button-icon-text__text:not(:empty) {
|
|
848
850
|
padding: 0 var(--jd-padding-default);
|
|
849
851
|
}
|
|
852
|
+
.jodit-ui-button-clear {
|
|
853
|
+
position: relative;
|
|
854
|
+
box-sizing: border-box;
|
|
855
|
+
padding: 0;
|
|
856
|
+
border: 0;
|
|
857
|
+
appearance: none;
|
|
858
|
+
background: 0 0;
|
|
859
|
+
box-shadow: none;
|
|
860
|
+
font-style: normal;
|
|
861
|
+
outline: 0;
|
|
862
|
+
text-align: center;
|
|
863
|
+
text-decoration: none;
|
|
864
|
+
text-transform: none;
|
|
865
|
+
user-select: none;
|
|
866
|
+
}
|
|
850
867
|
.jodit-ui-button_clear {
|
|
851
868
|
position: relative;
|
|
852
869
|
box-sizing: border-box;
|
|
@@ -1238,7 +1255,7 @@ svg.jodit-icon {
|
|
|
1238
1255
|
font-family: var(--jd-font-default);
|
|
1239
1256
|
font-size: var(--jd-font-size-default);
|
|
1240
1257
|
display: inline-flex;
|
|
1241
|
-
flex: 1;
|
|
1258
|
+
flex-grow: 1;
|
|
1242
1259
|
justify-content: center;
|
|
1243
1260
|
}
|
|
1244
1261
|
.jodit-ui-button_context_menu .jodit-ui-button__text {
|
|
@@ -1462,10 +1479,10 @@ svg.jodit-icon {
|
|
|
1462
1479
|
*/
|
|
1463
1480
|
.jodit-ui-group {
|
|
1464
1481
|
display: inline-flex;
|
|
1482
|
+
max-width: 100%;
|
|
1465
1483
|
flex: 0 0 auto;
|
|
1466
1484
|
flex-shrink: 0;
|
|
1467
1485
|
flex-wrap: wrap;
|
|
1468
|
-
max-width: 100%;
|
|
1469
1486
|
}
|
|
1470
1487
|
.jodit-ui-group_separated_true:not(:last-child):after {
|
|
1471
1488
|
content: '';
|
|
@@ -1493,20 +1510,20 @@ svg.jodit-icon {
|
|
|
1493
1510
|
justify-content: flex-start;
|
|
1494
1511
|
}
|
|
1495
1512
|
.jodit-ui-button-group .jodit-ui-button:not(:last-child) {
|
|
1496
|
-
border-top-right-radius: 0;
|
|
1497
1513
|
border-bottom-right-radius: 0;
|
|
1514
|
+
border-top-right-radius: 0;
|
|
1498
1515
|
}
|
|
1499
1516
|
.jodit-ui-button-group .jodit-ui-button + .jodit-ui-button {
|
|
1500
|
-
border-top-left-radius: 0;
|
|
1501
|
-
border-bottom-left-radius: 0;
|
|
1502
1517
|
border-left: 1px solid var(--jd-color-button-background-hover_opacity40);
|
|
1518
|
+
border-bottom-left-radius: 0;
|
|
1519
|
+
border-top-left-radius: 0;
|
|
1503
1520
|
}
|
|
1504
1521
|
.jodit-ui-button-group .jodit-ui-button[aria-pressed='true']:not([disabled]) {
|
|
1522
|
+
border-left: 0;
|
|
1505
1523
|
background-color: var(--jd-color-button-background-hover);
|
|
1506
|
-
color: var(--jd-color-dark);
|
|
1507
1524
|
box-shadow: inset 0 0 3px 0 var(--jd-color-dark);
|
|
1525
|
+
color: var(--jd-color-dark);
|
|
1508
1526
|
outline: 0;
|
|
1509
|
-
border-left: 0;
|
|
1510
1527
|
}
|
|
1511
1528
|
.jodit-ui-button-group .jodit-ui-button[aria-pressed='true']:not([disabled]) + .jodit-ui-button {
|
|
1512
1529
|
border: 0;
|
|
@@ -1916,15 +1933,15 @@ svg.jodit-icon {
|
|
|
1916
1933
|
overflow: hidden;
|
|
1917
1934
|
}
|
|
1918
1935
|
.jodit-ui-file-input__input {
|
|
1919
|
-
cursor: pointer;
|
|
1920
1936
|
position: absolute;
|
|
1921
|
-
right: 0;
|
|
1922
1937
|
top: 0;
|
|
1938
|
+
right: 0;
|
|
1923
1939
|
bottom: 0;
|
|
1924
|
-
margin: 0 calc(var(--jd-padding-default) * -1) 0 0;
|
|
1925
1940
|
padding: 0;
|
|
1926
|
-
|
|
1941
|
+
margin: 0 calc(var(--jd-padding-default) * -1) 0 0;
|
|
1942
|
+
cursor: pointer;
|
|
1927
1943
|
font-size: 400px;
|
|
1944
|
+
opacity: 0;
|
|
1928
1945
|
}
|
|
1929
1946
|
|
|
1930
1947
|
.jodit-ui-block {
|
|
@@ -1964,40 +1981,40 @@ svg.jodit-icon {
|
|
|
1964
1981
|
}
|
|
1965
1982
|
.jodit-progress-bar {
|
|
1966
1983
|
position: absolute;
|
|
1984
|
+
z-index: 2147483647;
|
|
1967
1985
|
top: 0;
|
|
1968
1986
|
left: 0;
|
|
1969
1987
|
height: 2px;
|
|
1970
|
-
z-index: 2147483647;
|
|
1971
1988
|
border-radius: 1px;
|
|
1972
1989
|
opacity: 0.7;
|
|
1973
1990
|
}
|
|
1974
1991
|
.jodit-progress-bar div {
|
|
1975
1992
|
position: relative;
|
|
1976
|
-
background: var(--jd-color-background-progress);
|
|
1977
1993
|
height: 2px;
|
|
1994
|
+
background: var(--jd-color-background-progress);
|
|
1978
1995
|
transition: width 500ms ease-out, opacity 500ms linear;
|
|
1979
1996
|
will-change: width, opacity;
|
|
1980
1997
|
}
|
|
1981
1998
|
.jodit-progress-bar div::before,
|
|
1982
1999
|
.jodit-progress-bar div::after {
|
|
1983
|
-
animation: pulse 2s ease-out 0s infinite;
|
|
1984
|
-
content: '';
|
|
1985
|
-
display: inline-block;
|
|
1986
2000
|
position: absolute;
|
|
1987
2001
|
top: 0;
|
|
2002
|
+
display: inline-block;
|
|
1988
2003
|
height: 2px;
|
|
1989
|
-
|
|
2004
|
+
animation: pulse 2s ease-out 0s infinite;
|
|
1990
2005
|
border-radius: 100%;
|
|
2006
|
+
box-shadow: var(--jd-color-background-progress) 1px 0 6px 1px;
|
|
2007
|
+
content: '';
|
|
1991
2008
|
opacity: 0.6;
|
|
1992
2009
|
}
|
|
1993
2010
|
.jodit-progress-bar div::before {
|
|
1994
|
-
width: 180px;
|
|
1995
2011
|
right: -80px;
|
|
2012
|
+
width: 180px;
|
|
1996
2013
|
clip: rect(-6px, 90px, 14px, -6px);
|
|
1997
2014
|
}
|
|
1998
2015
|
.jodit-progress-bar div::after {
|
|
1999
|
-
width: 20px;
|
|
2000
2016
|
right: 0;
|
|
2017
|
+
width: 20px;
|
|
2001
2018
|
clip: rect(-6px, 22px, 14px, var(--jd-padding-default));
|
|
2002
2019
|
}
|
|
2003
2020
|
|
|
@@ -2456,12 +2473,12 @@ svg.jodit-icon {
|
|
|
2456
2473
|
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
2457
2474
|
*/
|
|
2458
2475
|
.jodit-toolbar-button {
|
|
2459
|
-
border: 1px solid transparent;
|
|
2460
|
-
border-radius: var(--jd-border-radius-default);
|
|
2461
|
-
overflow: hidden;
|
|
2462
2476
|
display: flex;
|
|
2463
|
-
|
|
2477
|
+
overflow: hidden;
|
|
2464
2478
|
align-items: center;
|
|
2479
|
+
justify-content: center;
|
|
2480
|
+
border: 1px solid transparent;
|
|
2481
|
+
border-radius: var(--jd-border-radius-default);
|
|
2465
2482
|
min-width: 34px;
|
|
2466
2483
|
height: 34px;
|
|
2467
2484
|
}
|
|
@@ -2478,7 +2495,7 @@ svg.jodit-icon {
|
|
|
2478
2495
|
font-family: var(--jd-font-default);
|
|
2479
2496
|
font-size: var(--jd-font-size-default);
|
|
2480
2497
|
display: inline-flex;
|
|
2481
|
-
flex: 1;
|
|
2498
|
+
flex-grow: 1;
|
|
2482
2499
|
justify-content: center;
|
|
2483
2500
|
}
|
|
2484
2501
|
.jodit-toolbar-button_context_menu .jodit-toolbar-button__text {
|
|
@@ -2623,11 +2640,11 @@ svg.jodit-icon {
|
|
|
2623
2640
|
}
|
|
2624
2641
|
.jodit-toolbar-button__trigger {
|
|
2625
2642
|
display: flex;
|
|
2643
|
+
height: 100%;
|
|
2626
2644
|
align-items: center;
|
|
2627
2645
|
justify-content: center;
|
|
2628
2646
|
border-radius: 0 var(--jd-border-radius-default) var(--jd-border-radius-default) 0;
|
|
2629
2647
|
opacity: 0.4;
|
|
2630
|
-
height: 100%;
|
|
2631
2648
|
width: 14px;
|
|
2632
2649
|
}
|
|
2633
2650
|
.jodit-toolbar-button__trigger:hover:not([disabled]) {
|
|
@@ -2706,8 +2723,8 @@ svg.jodit-icon {
|
|
|
2706
2723
|
border-radius: var(--jd-border-radius-default);
|
|
2707
2724
|
min-width: 34px;
|
|
2708
2725
|
height: 34px;
|
|
2709
|
-
border: 1px solid transparent;
|
|
2710
2726
|
padding: 0;
|
|
2727
|
+
border: 1px solid transparent;
|
|
2711
2728
|
}
|
|
2712
2729
|
.jodit-toolbar-content:hover:not([disabled]) {
|
|
2713
2730
|
background-color: var(--jd-color-button-background-hover);
|
|
@@ -2820,7 +2837,7 @@ svg.jodit-icon {
|
|
|
2820
2837
|
font-family: var(--jd-font-default);
|
|
2821
2838
|
font-size: var(--jd-font-size-default);
|
|
2822
2839
|
display: inline-flex;
|
|
2823
|
-
flex: 1;
|
|
2840
|
+
flex-grow: 1;
|
|
2824
2841
|
justify-content: center;
|
|
2825
2842
|
}
|
|
2826
2843
|
.jodit-toolbar-content_context_menu .jodit-toolbar-content__text {
|
|
@@ -2998,8 +3015,8 @@ svg.jodit-icon {
|
|
|
2998
3015
|
}
|
|
2999
3016
|
.jodit-toolbar-content:hover:not([disabled]) {
|
|
3000
3017
|
background-color: transparent;
|
|
3001
|
-
outline: 0;
|
|
3002
3018
|
opacity: 1;
|
|
3019
|
+
outline: 0;
|
|
3003
3020
|
}
|
|
3004
3021
|
|
|
3005
3022
|
/*!
|
|
@@ -3403,10 +3420,10 @@ svg.jodit-icon {
|
|
|
3403
3420
|
--jd-image_editor_resizer_target_bg_color: #8c7878;
|
|
3404
3421
|
}
|
|
3405
3422
|
.jodit-image-editor {
|
|
3423
|
+
overflow: hidden;
|
|
3406
3424
|
width: 100%;
|
|
3407
3425
|
height: 100%;
|
|
3408
3426
|
padding: var(--jd-padding-default);
|
|
3409
|
-
overflow: hidden;
|
|
3410
3427
|
}
|
|
3411
3428
|
@media (max-width: 768px) {
|
|
3412
3429
|
.jodit-image-editor {
|
|
@@ -3428,22 +3445,22 @@ svg.jodit-icon {
|
|
|
3428
3445
|
box-sizing: border-box;
|
|
3429
3446
|
}
|
|
3430
3447
|
.jodit-image-editor .jodit-image-editor__slider-title {
|
|
3431
|
-
|
|
3432
|
-
color: #333333;
|
|
3448
|
+
padding: 0.8em 1em;
|
|
3433
3449
|
border-bottom: 1px solid rgba(158, 158, 158, 0.31);
|
|
3434
3450
|
background-color: #f9f9f9;
|
|
3435
|
-
|
|
3436
|
-
text-overflow: ellipsis;
|
|
3437
|
-
white-space: nowrap;
|
|
3451
|
+
color: #333333;
|
|
3438
3452
|
cursor: pointer;
|
|
3439
|
-
user-select: none;
|
|
3440
3453
|
font-weight: bold;
|
|
3441
3454
|
line-height: 1em;
|
|
3455
|
+
text-overflow: ellipsis;
|
|
3456
|
+
text-shadow: #f3f3f3 0 1px 0;
|
|
3457
|
+
user-select: none;
|
|
3458
|
+
white-space: nowrap;
|
|
3442
3459
|
}
|
|
3443
3460
|
.jodit-image-editor .jodit-image-editor__slider-title svg {
|
|
3444
|
-
margin-right: var(--jd-padding-default);
|
|
3445
|
-
width: 16px;
|
|
3446
3461
|
display: inline-block;
|
|
3462
|
+
width: 16px;
|
|
3463
|
+
margin-right: var(--jd-padding-default);
|
|
3447
3464
|
vertical-align: middle;
|
|
3448
3465
|
}
|
|
3449
3466
|
.jodit-image-editor .jodit-image-editor__slider-content {
|
|
@@ -3461,59 +3478,59 @@ svg.jodit-icon {
|
|
|
3461
3478
|
display: block;
|
|
3462
3479
|
}
|
|
3463
3480
|
.jodit-image-editor__area {
|
|
3481
|
+
position: relative;
|
|
3482
|
+
display: none;
|
|
3483
|
+
overflow: hidden;
|
|
3464
3484
|
width: 100%;
|
|
3485
|
+
height: 100%;
|
|
3465
3486
|
background-color: #eee;
|
|
3466
3487
|
background-image: linear-gradient(45deg, var(--jd-color-border) 25%, transparent 25%, transparent 75%, var(--jd-color-border) 75%, var(--jd-color-border)), linear-gradient(45deg, var(--jd-color-border) 25%, transparent 25%, transparent 75%, var(--jd-color-border) 75%, var(--jd-color-border));
|
|
3467
|
-
background-size: 30px 30px;
|
|
3468
3488
|
background-position: 0 0, 15px 15px;
|
|
3469
|
-
|
|
3470
|
-
overflow: hidden;
|
|
3489
|
+
background-size: 30px 30px;
|
|
3471
3490
|
user-select: none;
|
|
3472
|
-
position: relative;
|
|
3473
|
-
display: none;
|
|
3474
3491
|
}
|
|
3475
3492
|
.jodit-image-editor__area.jodit-image-editor_active {
|
|
3476
3493
|
display: block;
|
|
3477
3494
|
}
|
|
3478
3495
|
.jodit-image-editor__area .jodit-image-editor__box {
|
|
3479
|
-
overflow: hidden;
|
|
3480
3496
|
position: relative;
|
|
3481
3497
|
z-index: 1;
|
|
3482
|
-
|
|
3498
|
+
overflow: hidden;
|
|
3483
3499
|
height: 100%;
|
|
3500
|
+
pointer-events: none;
|
|
3484
3501
|
}
|
|
3485
3502
|
.jodit-image-editor__area .jodit-image-editor__box img {
|
|
3486
|
-
user-select: none;
|
|
3487
3503
|
max-width: 100%;
|
|
3488
3504
|
max-height: 100%;
|
|
3505
|
+
user-select: none;
|
|
3489
3506
|
}
|
|
3490
3507
|
.jodit-image-editor__area .jodit-image-editor__croper,
|
|
3491
3508
|
.jodit-image-editor__area .jodit-image-editor__resizer {
|
|
3509
|
+
position: absolute;
|
|
3492
3510
|
z-index: 2;
|
|
3511
|
+
top: var(--jd-padding-default);
|
|
3512
|
+
left: 20px;
|
|
3493
3513
|
width: 100px;
|
|
3494
3514
|
height: 100px;
|
|
3495
|
-
position: absolute;
|
|
3496
|
-
box-shadow: 0 0 11px #000;
|
|
3497
3515
|
border: 1px solid #fff;
|
|
3498
3516
|
background-repeat: no-repeat;
|
|
3499
|
-
|
|
3500
|
-
left: 20px;
|
|
3517
|
+
box-shadow: 0 0 11px #000;
|
|
3501
3518
|
pointer-events: none;
|
|
3502
3519
|
}
|
|
3503
3520
|
.jodit-image-editor__area .jodit-image-editor__croper i.jodit_bottomright,
|
|
3504
3521
|
.jodit-image-editor__area .jodit-image-editor__resizer i.jodit_bottomright {
|
|
3505
3522
|
position: absolute;
|
|
3523
|
+
z-index: 4;
|
|
3524
|
+
right: calc(var(--jd-padding-default) * -1);
|
|
3525
|
+
bottom: calc(var(--jd-padding-default) * -1);
|
|
3506
3526
|
display: inline-block;
|
|
3527
|
+
width: 20px;
|
|
3528
|
+
height: 20px;
|
|
3507
3529
|
border: 1px solid var(--jd-image_editor_resizer_target_border_color);
|
|
3508
|
-
z-index: 4;
|
|
3509
3530
|
background-color: var(--jd-image_editor_resizer_target_bg_color);
|
|
3510
|
-
cursor: se-resize;
|
|
3511
3531
|
border-radius: 50%;
|
|
3512
|
-
height: 20px;
|
|
3513
|
-
width: 20px;
|
|
3514
|
-
right: calc(var(--jd-padding-default) * -1);
|
|
3515
|
-
bottom: calc(var(--jd-padding-default) * -1);
|
|
3516
3532
|
box-shadow: 0 0 11px #000;
|
|
3533
|
+
cursor: se-resize;
|
|
3517
3534
|
pointer-events: all;
|
|
3518
3535
|
}
|
|
3519
3536
|
.jodit-image-editor__area .jodit-image-editor__croper i.jodit_bottomright:active,
|
|
@@ -3521,58 +3538,58 @@ svg.jodit-icon {
|
|
|
3521
3538
|
border: 1px solid yellow;
|
|
3522
3539
|
}
|
|
3523
3540
|
.jodit-image-editor__area.jodit-image-editor__area_crop {
|
|
3541
|
+
position: relative;
|
|
3524
3542
|
height: 100%;
|
|
3525
3543
|
background: #eee;
|
|
3526
|
-
text-align: center;
|
|
3527
3544
|
line-height: 100%;
|
|
3528
|
-
|
|
3545
|
+
text-align: center;
|
|
3529
3546
|
}
|
|
3530
3547
|
.jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box {
|
|
3531
|
-
height: 100%;
|
|
3532
3548
|
overflow: visible;
|
|
3549
|
+
height: 100%;
|
|
3550
|
+
line-height: 100%;
|
|
3533
3551
|
pointer-events: all;
|
|
3534
3552
|
text-align: left;
|
|
3535
|
-
line-height: 100%;
|
|
3536
3553
|
}
|
|
3537
3554
|
.jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box img {
|
|
3538
|
-
max-width: 100%;
|
|
3539
|
-
max-height: 100%;
|
|
3540
3555
|
width: 100%;
|
|
3556
|
+
max-width: 100%;
|
|
3541
3557
|
height: 100%;
|
|
3558
|
+
max-height: 100%;
|
|
3542
3559
|
}
|
|
3543
3560
|
.jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box::after {
|
|
3544
|
-
content: '';
|
|
3545
3561
|
position: absolute;
|
|
3562
|
+
z-index: 1;
|
|
3546
3563
|
top: 0;
|
|
3547
|
-
left: 0;
|
|
3548
|
-
bottom: 0;
|
|
3549
3564
|
right: 0;
|
|
3565
|
+
bottom: 0;
|
|
3566
|
+
left: 0;
|
|
3550
3567
|
margin: auto;
|
|
3551
3568
|
background: rgba(255, 255, 255, 0.3);
|
|
3552
|
-
|
|
3569
|
+
content: '';
|
|
3553
3570
|
}
|
|
3554
3571
|
.jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box .jodit-image-editor__croper {
|
|
3555
|
-
pointer-events: all;
|
|
3556
3572
|
cursor: move;
|
|
3573
|
+
pointer-events: all;
|
|
3557
3574
|
}
|
|
3558
3575
|
.jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box .jodit-image-editor__croper i.jodit-image-editor__sizes {
|
|
3559
|
-
font-size: 12px;
|
|
3560
|
-
white-space: pre;
|
|
3561
3576
|
position: absolute;
|
|
3562
3577
|
bottom: -30px;
|
|
3563
3578
|
left: 100%;
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
text-shadow: none;
|
|
3579
|
+
display: block;
|
|
3580
|
+
padding: 9px 6px;
|
|
3567
3581
|
background: rgba(0, 0, 0, 0.2);
|
|
3568
3582
|
border-radius: 0.4em;
|
|
3569
|
-
|
|
3570
|
-
|
|
3583
|
+
color: #ffffff;
|
|
3584
|
+
font-size: 12px;
|
|
3585
|
+
text-align: center;
|
|
3586
|
+
text-shadow: none;
|
|
3587
|
+
white-space: pre;
|
|
3571
3588
|
}
|
|
3572
3589
|
.jodit-image-editor__area.jodit-image-editor__area_crop.jodit-image-editor_active {
|
|
3573
3590
|
display: flex;
|
|
3574
|
-
justify-content: center;
|
|
3575
3591
|
align-items: center;
|
|
3592
|
+
justify-content: center;
|
|
3576
3593
|
}
|
|
3577
3594
|
|
|
3578
3595
|
/*!
|
|
@@ -3581,25 +3598,25 @@ svg.jodit-icon {
|
|
|
3581
3598
|
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3582
3599
|
*/
|
|
3583
3600
|
.jodit-status-bar {
|
|
3584
|
-
font-size: var(--jd-font-size-small);
|
|
3585
3601
|
display: flex;
|
|
3586
|
-
|
|
3602
|
+
overflow: hidden;
|
|
3587
3603
|
align-items: center;
|
|
3588
|
-
|
|
3604
|
+
justify-content: flex-start;
|
|
3589
3605
|
padding: 0 calc(var(--jd-padding-default) / 2);
|
|
3590
|
-
|
|
3606
|
+
background-color: var(--jd-color-panel);
|
|
3591
3607
|
border-radius: 0 0 var(--jd-border-radius-default) var(--jd-border-radius-default);
|
|
3608
|
+
font-size: var(--jd-font-size-small);
|
|
3592
3609
|
}
|
|
3593
3610
|
.jodit-status-bar::before {
|
|
3594
|
-
content: '';
|
|
3595
3611
|
flex: auto;
|
|
3596
3612
|
order: 1;
|
|
3613
|
+
content: '';
|
|
3597
3614
|
}
|
|
3598
3615
|
.jodit-status-bar .jodit-status-bar__item {
|
|
3599
|
-
line-height: 1.57142857em;
|
|
3600
|
-
margin: 0 var(--jd-padding-default) 0 0;
|
|
3601
|
-
padding: 0;
|
|
3602
3616
|
order: 0;
|
|
3617
|
+
padding: 0;
|
|
3618
|
+
margin: 0 var(--jd-padding-default) 0 0;
|
|
3619
|
+
line-height: 1.57142857em;
|
|
3603
3620
|
}
|
|
3604
3621
|
.jodit-status-bar .jodit-status-bar__item,
|
|
3605
3622
|
.jodit-status-bar .jodit-status-bar__item > span {
|
|
@@ -3608,18 +3625,18 @@ svg.jodit-icon {
|
|
|
3608
3625
|
font-size: var(--jd-font-size-small);
|
|
3609
3626
|
}
|
|
3610
3627
|
.jodit-status-bar .jodit-status-bar__item.jodit-status-bar__item-right {
|
|
3611
|
-
margin: 0 0 0 var(--jd-padding-default);
|
|
3612
3628
|
order: 2;
|
|
3629
|
+
margin: 0 0 0 var(--jd-padding-default);
|
|
3613
3630
|
}
|
|
3614
3631
|
.jodit-status-bar .jodit-status-bar__item a {
|
|
3615
|
-
text-decoration: none;
|
|
3616
|
-
cursor: default;
|
|
3617
3632
|
border-radius: 3px;
|
|
3633
|
+
cursor: default;
|
|
3634
|
+
text-decoration: none;
|
|
3618
3635
|
}
|
|
3619
3636
|
.jodit-status-bar .jodit-status-bar__item a:hover {
|
|
3620
3637
|
background-color: var(--jd-color-background-gray);
|
|
3621
|
-
text-decoration: none;
|
|
3622
3638
|
color: var(--jd-color-text);
|
|
3639
|
+
text-decoration: none;
|
|
3623
3640
|
}
|
|
3624
3641
|
.jodit-workplace + .jodit-status-bar:not(:empty) {
|
|
3625
3642
|
border-top: 1px solid var(--jd-color-border);
|
|
@@ -3679,34 +3696,34 @@ svg.jodit-icon {
|
|
|
3679
3696
|
--jd-height-icon: calc(var(--jd-padding-default) * 2);
|
|
3680
3697
|
}
|
|
3681
3698
|
.jodit-add-new-line {
|
|
3682
|
-
box-sizing: border-box;
|
|
3683
|
-
z-index: 1;
|
|
3684
3699
|
position: fixed;
|
|
3685
|
-
|
|
3700
|
+
z-index: 1;
|
|
3686
3701
|
top: 0;
|
|
3687
|
-
outline: none;
|
|
3688
3702
|
display: block;
|
|
3703
|
+
height: 1px;
|
|
3704
|
+
box-sizing: border-box;
|
|
3705
|
+
outline: none;
|
|
3689
3706
|
}
|
|
3690
3707
|
.jodit-add-new-line * {
|
|
3691
3708
|
box-sizing: border-box;
|
|
3692
3709
|
}
|
|
3693
3710
|
.jodit-add-new-line::after {
|
|
3694
|
-
content: '';
|
|
3695
|
-
background-color: var(--jd-color-new-line);
|
|
3696
|
-
height: 1px;
|
|
3697
3711
|
display: block;
|
|
3698
3712
|
width: calc(100% - var(--jd-width-icon));
|
|
3713
|
+
height: 1px;
|
|
3714
|
+
background-color: var(--jd-color-new-line);
|
|
3715
|
+
content: '';
|
|
3699
3716
|
}
|
|
3700
3717
|
.jodit-add-new-line span {
|
|
3701
3718
|
position: absolute;
|
|
3702
3719
|
right: 0;
|
|
3703
3720
|
display: flex;
|
|
3704
|
-
justify-content: center;
|
|
3705
|
-
align-items: center;
|
|
3706
3721
|
width: var(--jd-width-icon);
|
|
3707
3722
|
height: var(--jd-height-icon);
|
|
3708
|
-
|
|
3723
|
+
align-items: center;
|
|
3724
|
+
justify-content: center;
|
|
3709
3725
|
border: 1px solid var(--jd-color-new-line);
|
|
3726
|
+
background: var(--jd-color-background-button-hover-opacity30);
|
|
3710
3727
|
cursor: pointer;
|
|
3711
3728
|
}
|
|
3712
3729
|
.jodit-add-new-line span:hover {
|
|
@@ -3738,8 +3755,8 @@ svg.jodit-icon {
|
|
|
3738
3755
|
.jodit-about a:focus,
|
|
3739
3756
|
.jodit-about a:hover {
|
|
3740
3757
|
color: #23527c;
|
|
3741
|
-
text-decoration: underline;
|
|
3742
3758
|
outline: 0;
|
|
3759
|
+
text-decoration: underline;
|
|
3743
3760
|
}
|
|
3744
3761
|
.jodit-about div {
|
|
3745
3762
|
margin-bottom: calc(var(--jd-padding-default) / 2);
|
|
@@ -3751,8 +3768,8 @@ svg.jodit-icon {
|
|
|
3751
3768
|
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3752
3769
|
*/
|
|
3753
3770
|
.jodit-paste-storage {
|
|
3754
|
-
padding: var(--jd-padding-default);
|
|
3755
3771
|
max-width: 600px;
|
|
3772
|
+
padding: var(--jd-padding-default);
|
|
3756
3773
|
}
|
|
3757
3774
|
@media (max-width: 768px) {
|
|
3758
3775
|
.jodit-paste-storage {
|
|
@@ -3768,29 +3785,29 @@ svg.jodit-icon {
|
|
|
3768
3785
|
margin-bottom: var(--jd-padding-default);
|
|
3769
3786
|
}
|
|
3770
3787
|
.jodit-paste-storage > div:first-child a {
|
|
3771
|
-
outline: none;
|
|
3772
|
-
box-sizing: border-box;
|
|
3773
3788
|
display: block;
|
|
3774
|
-
max-width: 100%;
|
|
3775
|
-
white-space: pre;
|
|
3776
3789
|
overflow: hidden;
|
|
3777
|
-
|
|
3790
|
+
max-width: 100%;
|
|
3791
|
+
box-sizing: border-box;
|
|
3778
3792
|
padding: calc(var(--jd-padding-default) / 2);
|
|
3779
|
-
margin: 0;
|
|
3780
3793
|
border: 1px solid transparent;
|
|
3781
|
-
|
|
3794
|
+
margin: 0;
|
|
3782
3795
|
color: var(--jd-color-default);
|
|
3796
|
+
outline: none;
|
|
3797
|
+
text-decoration: none;
|
|
3798
|
+
text-overflow: ellipsis;
|
|
3799
|
+
white-space: pre;
|
|
3783
3800
|
}
|
|
3784
3801
|
.jodit-paste-storage > div:first-child a.jodit_active {
|
|
3785
|
-
color: var(--jd-color-white);
|
|
3786
3802
|
background-color: var(--jd-dark_background_color);
|
|
3803
|
+
color: var(--jd-color-white);
|
|
3787
3804
|
}
|
|
3788
3805
|
.jodit-paste-storage > div:first-child a:focus {
|
|
3789
3806
|
outline: none;
|
|
3790
3807
|
}
|
|
3791
3808
|
.jodit-paste-storage > div:last-child {
|
|
3792
|
-
padding: var(--jd-padding-default);
|
|
3793
3809
|
overflow: auto;
|
|
3810
|
+
padding: var(--jd-padding-default);
|
|
3794
3811
|
}
|
|
3795
3812
|
.jodit-paste-storage > div:last-child ul,
|
|
3796
3813
|
.jodit-paste-storage > div:last-child li {
|
|
@@ -3802,24 +3819,25 @@ svg.jodit-icon {
|
|
|
3802
3819
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3803
3820
|
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3804
3821
|
*/
|
|
3822
|
+
:root {
|
|
3823
|
+
--jd-color-picker-cell-size: 24px;
|
|
3824
|
+
}
|
|
3805
3825
|
.jodit-color-picker {
|
|
3806
|
-
--jd-color-cell-size: 24px;
|
|
3807
|
-
--jd-color-cell-icon-size: 12px;
|
|
3808
3826
|
margin: 0;
|
|
3809
3827
|
text-align: left;
|
|
3810
3828
|
user-select: none;
|
|
3811
3829
|
}
|
|
3812
3830
|
.jodit-color-picker__group {
|
|
3813
3831
|
display: flex;
|
|
3814
|
-
max-width: calc(var(--jd-color-cell-size) * 10);
|
|
3832
|
+
max-width: calc(var(--jd-color-picker-cell-size) * 10);
|
|
3815
3833
|
flex-wrap: wrap;
|
|
3816
3834
|
margin-bottom: calc(var(--jd-padding-default) / 2);
|
|
3817
3835
|
white-space: normal;
|
|
3818
3836
|
}
|
|
3819
3837
|
.jodit-color-picker__color-item {
|
|
3820
3838
|
display: block;
|
|
3821
|
-
width: var(--jd-color-cell-size);
|
|
3822
|
-
height: var(--jd-color-cell-size);
|
|
3839
|
+
width: var(--jd-color-picker-cell-size);
|
|
3840
|
+
height: var(--jd-color-picker-cell-size);
|
|
3823
3841
|
border: 1px solid transparent;
|
|
3824
3842
|
text-align: center;
|
|
3825
3843
|
text-decoration: none;
|
|
@@ -3862,11 +3880,11 @@ svg.jodit-icon {
|
|
|
3862
3880
|
font-size: var(--jd-font-size-default);
|
|
3863
3881
|
}
|
|
3864
3882
|
.jodit-tabs .jodit-tabs__buttons {
|
|
3865
|
-
line-height: 18px;
|
|
3866
|
-
margin-bottom: calc(var(--jd-padding-default) / 2);
|
|
3867
|
-
margin-top: 4px;
|
|
3868
3883
|
display: flex;
|
|
3869
3884
|
justify-content: center;
|
|
3885
|
+
margin-top: 4px;
|
|
3886
|
+
margin-bottom: calc(var(--jd-padding-default) / 2);
|
|
3887
|
+
line-height: 18px;
|
|
3870
3888
|
}
|
|
3871
3889
|
.jodit-tabs .jodit-tabs__buttons > * {
|
|
3872
3890
|
margin-left: calc(var(--jd-padding-default) / 2);
|
|
@@ -3954,26 +3972,26 @@ svg.jodit-icon {
|
|
|
3954
3972
|
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3955
3973
|
*/
|
|
3956
3974
|
.jodit_fullsize-box_true {
|
|
3957
|
-
z-index: var(--jd-z-index-full-size) !important;
|
|
3958
3975
|
position: static !important;
|
|
3976
|
+
z-index: var(--jd-z-index-full-size) !important;
|
|
3959
3977
|
overflow: visible !important;
|
|
3960
3978
|
}
|
|
3961
3979
|
html.jodit_fullsize-box_true,
|
|
3962
3980
|
body.jodit_fullsize-box_true {
|
|
3963
|
-
height: 0 !important;
|
|
3964
|
-
width: 0 !important;
|
|
3965
3981
|
overflow: initial !important;
|
|
3982
|
+
width: 0 !important;
|
|
3983
|
+
height: 0 !important;
|
|
3966
3984
|
}
|
|
3967
3985
|
html.jodit_fullsize-box_true {
|
|
3968
3986
|
position: fixed !important;
|
|
3969
3987
|
}
|
|
3970
3988
|
.jodit_fullsize {
|
|
3971
3989
|
position: absolute;
|
|
3990
|
+
z-index: var(--jd-z-index-full-size);
|
|
3972
3991
|
top: 0;
|
|
3973
|
-
left: 0;
|
|
3974
3992
|
right: 0;
|
|
3975
3993
|
bottom: 0;
|
|
3976
|
-
|
|
3994
|
+
left: 0;
|
|
3977
3995
|
max-width: none !important;
|
|
3978
3996
|
}
|
|
3979
3997
|
.jodit_fullsize .toolbar {
|
|
@@ -3991,25 +4009,25 @@ html.jodit_fullsize-box_true {
|
|
|
3991
4009
|
*/
|
|
3992
4010
|
.jodit-properties__unlock > svg,
|
|
3993
4011
|
.jodit-properties__lock > svg {
|
|
3994
|
-
font-style: normal;
|
|
3995
4012
|
display: inline-block;
|
|
4013
|
+
overflow: hidden;
|
|
3996
4014
|
width: 14px;
|
|
3997
4015
|
height: 14px;
|
|
3998
|
-
line-height: 14px;
|
|
3999
|
-
font-size: 8px;
|
|
4000
|
-
overflow: hidden;
|
|
4001
|
-
vertical-align: middle;
|
|
4002
4016
|
fill: #222;
|
|
4017
|
+
font-size: 8px;
|
|
4018
|
+
font-style: normal;
|
|
4019
|
+
line-height: 14px;
|
|
4003
4020
|
transform-origin: 0 0 !important;
|
|
4021
|
+
vertical-align: middle;
|
|
4004
4022
|
}
|
|
4005
4023
|
.jodit-properties .jodit-properties_view_box {
|
|
4006
4024
|
padding: var(--jd-padding-default);
|
|
4007
4025
|
}
|
|
4008
4026
|
.jodit-properties .jodit-properties_view_box .jodit-properties_image_view {
|
|
4009
4027
|
display: flex;
|
|
4028
|
+
height: 150px;
|
|
4010
4029
|
align-items: center;
|
|
4011
4030
|
justify-content: center;
|
|
4012
|
-
height: 150px;
|
|
4013
4031
|
padding: 0;
|
|
4014
4032
|
margin: 0 0 var(--jd-padding-default);
|
|
4015
4033
|
background-color: #f6f6f6;
|
|
@@ -4019,11 +4037,11 @@ html.jodit_fullsize-box_true {
|
|
|
4019
4037
|
max-height: 100%;
|
|
4020
4038
|
}
|
|
4021
4039
|
.jodit-properties .jodit-properties_view_box .jodit-properties_image_sizes.jodit-form__group {
|
|
4040
|
+
min-width: auto;
|
|
4022
4041
|
flex-direction: row;
|
|
4023
4042
|
align-items: center;
|
|
4024
4043
|
padding: 0 !important;
|
|
4025
4044
|
margin: 0 !important;
|
|
4026
|
-
min-width: auto;
|
|
4027
4045
|
}
|
|
4028
4046
|
.jodit-properties .jodit-properties_view_box .jodit-properties_image_sizes.jodit-form__group a {
|
|
4029
4047
|
display: inline-block;
|
|
@@ -4049,16 +4067,16 @@ html.jodit_fullsize-box_true {
|
|
|
4049
4067
|
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4050
4068
|
*/
|
|
4051
4069
|
.jodit-placeholder {
|
|
4052
|
-
|
|
4053
|
-
|
|
4070
|
+
position: absolute;
|
|
4071
|
+
z-index: 1;
|
|
4054
4072
|
top: 0;
|
|
4055
4073
|
left: 0;
|
|
4056
4074
|
display: block;
|
|
4057
|
-
|
|
4075
|
+
width: 100%;
|
|
4058
4076
|
padding: var(--jd-padding-default);
|
|
4059
4077
|
color: var(--jd-color-placeholder);
|
|
4060
|
-
z-index: 1;
|
|
4061
4078
|
pointer-events: none;
|
|
4079
|
+
user-select: none !important;
|
|
4062
4080
|
}
|
|
4063
4081
|
|
|
4064
4082
|
/*!
|
|
@@ -4072,74 +4090,74 @@ html.jodit_fullsize-box_true {
|
|
|
4072
4090
|
--jd-resizer-handle-size: var(--jd-padding-default);
|
|
4073
4091
|
}
|
|
4074
4092
|
[data-jodit_iframe_wrapper] {
|
|
4093
|
+
position: relative;
|
|
4075
4094
|
display: block;
|
|
4076
4095
|
user-select: none;
|
|
4077
|
-
position: relative;
|
|
4078
4096
|
}
|
|
4079
4097
|
[data-jodit_iframe_wrapper]::after {
|
|
4080
4098
|
position: absolute;
|
|
4081
|
-
content: '';
|
|
4082
4099
|
z-index: 1;
|
|
4083
4100
|
top: 0;
|
|
4084
|
-
left: 0;
|
|
4085
4101
|
right: 0;
|
|
4086
4102
|
bottom: 0;
|
|
4087
|
-
|
|
4103
|
+
left: 0;
|
|
4088
4104
|
display: block;
|
|
4089
4105
|
background: rgba(0, 0, 0, 0);
|
|
4106
|
+
content: '';
|
|
4107
|
+
cursor: pointer;
|
|
4090
4108
|
}
|
|
4091
4109
|
.jodit-resizer {
|
|
4092
|
-
width: 100px;
|
|
4093
|
-
height: 100px;
|
|
4094
4110
|
position: absolute;
|
|
4095
|
-
border: 1px solid var(--jd-color-border-dark);
|
|
4096
4111
|
top: 0;
|
|
4097
4112
|
left: 0;
|
|
4098
|
-
|
|
4113
|
+
width: 100px;
|
|
4114
|
+
height: 100px;
|
|
4115
|
+
border: 1px solid var(--jd-color-border-dark);
|
|
4099
4116
|
font-size: 0;
|
|
4117
|
+
pointer-events: none;
|
|
4100
4118
|
}
|
|
4101
4119
|
.jodit-resizer * {
|
|
4102
4120
|
box-sizing: border-box;
|
|
4103
4121
|
}
|
|
4104
4122
|
.jodit-resizer > span {
|
|
4105
4123
|
position: absolute;
|
|
4106
|
-
left: 50%;
|
|
4107
4124
|
top: 50%;
|
|
4125
|
+
left: 50%;
|
|
4108
4126
|
display: inline-block;
|
|
4127
|
+
overflow: visible;
|
|
4109
4128
|
width: var(--jd-viewer_width);
|
|
4110
4129
|
height: var(--jd-viewer_height);
|
|
4111
|
-
margin-left: calc(var(--jd-viewer_width) / -2);
|
|
4112
4130
|
margin-top: calc(var(--jd-viewer_height) / -2);
|
|
4113
|
-
|
|
4114
|
-
font-size: 12px;
|
|
4115
|
-
text-align: center;
|
|
4116
|
-
color: var(--jd-color-white);
|
|
4131
|
+
margin-left: calc(var(--jd-viewer_width) / -2);
|
|
4117
4132
|
background-color: var(--jd-color-placeholder);
|
|
4133
|
+
color: var(--jd-color-white);
|
|
4134
|
+
font-size: 12px;
|
|
4135
|
+
line-height: var(--jd-viewer_height);
|
|
4118
4136
|
opacity: 0;
|
|
4137
|
+
text-align: center;
|
|
4119
4138
|
transition: opacity 0.2s linear;
|
|
4120
|
-
overflow: visible;
|
|
4121
4139
|
}
|
|
4122
4140
|
.jodit-resizer > i {
|
|
4123
4141
|
position: absolute;
|
|
4124
|
-
display: inline-block;
|
|
4125
4142
|
z-index: 4;
|
|
4126
|
-
|
|
4127
|
-
border: 1px solid var(--jd-color-border-dark);
|
|
4128
|
-
background-color: var(--jd-color-background-gray);
|
|
4143
|
+
display: inline-block;
|
|
4129
4144
|
width: var(--jd-resizer-handle-size);
|
|
4130
4145
|
height: var(--jd-resizer-handle-size);
|
|
4146
|
+
border: 1px solid var(--jd-color-border-dark);
|
|
4147
|
+
background-color: var(--jd-color-background-gray);
|
|
4148
|
+
pointer-events: all;
|
|
4131
4149
|
}
|
|
4132
4150
|
.jodit-resizer > i:hover {
|
|
4133
4151
|
background-color: var(--jd-color-background-gray-hover);
|
|
4134
4152
|
}
|
|
4135
4153
|
.jodit-resizer > i:nth-child(1) {
|
|
4136
|
-
left: calc(var(--jd-resizer-handle-size) / -2);
|
|
4137
4154
|
top: calc(var(--jd-resizer-handle-size) / -2);
|
|
4155
|
+
left: calc(var(--jd-resizer-handle-size) / -2);
|
|
4138
4156
|
cursor: nw-resize;
|
|
4139
4157
|
}
|
|
4140
4158
|
.jodit-resizer > i:nth-child(2) {
|
|
4141
|
-
right: calc(var(--jd-resizer-handle-size) / -2);
|
|
4142
4159
|
top: calc(var(--jd-resizer-handle-size) / -2);
|
|
4160
|
+
right: calc(var(--jd-resizer-handle-size) / -2);
|
|
4143
4161
|
cursor: ne-resize;
|
|
4144
4162
|
}
|
|
4145
4163
|
.jodit-resizer > i:nth-child(3) {
|
|
@@ -4148,8 +4166,8 @@ html.jodit_fullsize-box_true {
|
|
|
4148
4166
|
cursor: se-resize;
|
|
4149
4167
|
}
|
|
4150
4168
|
.jodit-resizer > i:nth-child(4) {
|
|
4151
|
-
left: calc(var(--jd-resizer-handle-size) / -2);
|
|
4152
4169
|
bottom: calc(var(--jd-resizer-handle-size) / -2);
|
|
4170
|
+
left: calc(var(--jd-resizer-handle-size) / -2);
|
|
4153
4171
|
cursor: sw-resize;
|
|
4154
4172
|
}
|
|
4155
4173
|
@media (max-width: 768px) {
|
|
@@ -4172,12 +4190,12 @@ html.jodit_fullsize-box_true {
|
|
|
4172
4190
|
--jd-timeout-button-active: 0.1s;
|
|
4173
4191
|
}
|
|
4174
4192
|
.jodit-search {
|
|
4175
|
-
visibility: hidden;
|
|
4176
4193
|
position: absolute;
|
|
4177
4194
|
top: 0;
|
|
4178
4195
|
right: 0;
|
|
4179
4196
|
width: 0;
|
|
4180
4197
|
height: 0;
|
|
4198
|
+
visibility: hidden;
|
|
4181
4199
|
}
|
|
4182
4200
|
.jodit-search_sticky {
|
|
4183
4201
|
position: fixed;
|
|
@@ -4186,24 +4204,24 @@ html.jodit_fullsize-box_true {
|
|
|
4186
4204
|
visibility: visible;
|
|
4187
4205
|
}
|
|
4188
4206
|
.jodit-search .jodit-search__box {
|
|
4189
|
-
width: var(--jd-width-search);
|
|
4190
|
-
max-width: 100vw;
|
|
4191
|
-
display: flex;
|
|
4192
4207
|
position: absolute;
|
|
4193
4208
|
right: 0;
|
|
4194
|
-
|
|
4209
|
+
display: flex;
|
|
4210
|
+
width: var(--jd-width-search);
|
|
4211
|
+
max-width: 100vw;
|
|
4212
|
+
padding: calc(var(--jd-padding-default) / 2);
|
|
4195
4213
|
border: solid var(--jd-color-border);
|
|
4196
4214
|
border-width: 0 0 1px 1px;
|
|
4197
|
-
|
|
4215
|
+
background-color: var(--jd-color-panel);
|
|
4198
4216
|
}
|
|
4199
4217
|
.jodit-search .jodit-search__box input {
|
|
4200
|
-
margin: 0;
|
|
4201
4218
|
width: 100%;
|
|
4202
4219
|
height: 100%;
|
|
4220
|
+
padding: 0 var(--jd-padding-default);
|
|
4203
4221
|
border: 0;
|
|
4222
|
+
margin: 0;
|
|
4204
4223
|
background-color: transparent;
|
|
4205
4224
|
outline: none;
|
|
4206
|
-
padding: 0 var(--jd-padding-default);
|
|
4207
4225
|
}
|
|
4208
4226
|
.jodit-search .jodit-search__box input[data-ref='replace'] {
|
|
4209
4227
|
display: none;
|
|
@@ -4221,32 +4239,32 @@ html.jodit_fullsize-box_true {
|
|
|
4221
4239
|
padding-right: calc(var(--jd-padding-default) / 2);
|
|
4222
4240
|
}
|
|
4223
4241
|
.jodit-search .jodit-search__box .jodit-search__counts {
|
|
4224
|
-
width: var(--jd-width-search-count-box);
|
|
4225
4242
|
display: flex;
|
|
4226
|
-
|
|
4243
|
+
width: var(--jd-width-search-count-box);
|
|
4227
4244
|
align-items: center;
|
|
4228
|
-
|
|
4245
|
+
justify-content: center;
|
|
4229
4246
|
border-left: 1px solid var(--jd-color-border);
|
|
4247
|
+
color: var(--jd-color-border);
|
|
4230
4248
|
}
|
|
4231
4249
|
.jodit-search .jodit-search__box .jodit-search__buttons {
|
|
4232
|
-
flex: 1;
|
|
4233
|
-
padding-left: 0;
|
|
4234
4250
|
display: flex;
|
|
4235
|
-
|
|
4251
|
+
flex: 1;
|
|
4236
4252
|
align-items: center;
|
|
4253
|
+
justify-content: center;
|
|
4254
|
+
padding-left: 0;
|
|
4237
4255
|
}
|
|
4238
4256
|
.jodit-search .jodit-search__box .jodit-search__buttons button {
|
|
4239
4257
|
width: 32%;
|
|
4240
|
-
margin-right: 1%;
|
|
4241
4258
|
height: 100%;
|
|
4242
4259
|
border: 1px solid transparent;
|
|
4260
|
+
margin-right: 1%;
|
|
4243
4261
|
background-color: transparent;
|
|
4244
4262
|
}
|
|
4245
4263
|
.jodit-search .jodit-search__box .jodit-search__buttons button[data-ref='replace-btn'] {
|
|
4264
|
+
display: none;
|
|
4246
4265
|
width: 100%;
|
|
4247
4266
|
border: 1px solid var(--jd-color-border);
|
|
4248
4267
|
margin-top: 2px;
|
|
4249
|
-
display: none;
|
|
4250
4268
|
}
|
|
4251
4269
|
.jodit-search .jodit-search__box .jodit-search__buttons button:hover {
|
|
4252
4270
|
background-color: var(--jd-color-background-button-hover);
|
|
@@ -4317,12 +4335,12 @@ html.jodit_fullsize-box_true {
|
|
|
4317
4335
|
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4318
4336
|
*/
|
|
4319
4337
|
.jodit-source {
|
|
4320
|
-
display: none;
|
|
4321
4338
|
position: relative;
|
|
4322
|
-
|
|
4339
|
+
display: none;
|
|
4340
|
+
overflow: auto;
|
|
4323
4341
|
min-height: 100%;
|
|
4324
4342
|
flex: auto;
|
|
4325
|
-
|
|
4343
|
+
background-color: var(--jd-color-source-area);
|
|
4326
4344
|
}
|
|
4327
4345
|
.jodit-source .jodit-source__mirror-fake {
|
|
4328
4346
|
min-height: 100%;
|
|
@@ -4338,8 +4356,8 @@ html.jodit_fullsize-box_true {
|
|
|
4338
4356
|
display: block !important;
|
|
4339
4357
|
}
|
|
4340
4358
|
.jodit-container.jodit_split_mode .jodit-workplace {
|
|
4341
|
-
flex-wrap: nowrap;
|
|
4342
4359
|
flex-direction: row;
|
|
4360
|
+
flex-wrap: nowrap;
|
|
4343
4361
|
}
|
|
4344
4362
|
.jodit-container.jodit_split_mode .jodit-wysiwyg,
|
|
4345
4363
|
.jodit-container.jodit_split_mode .jodit-wysiwyg_iframe,
|
|
@@ -4349,24 +4367,24 @@ html.jodit_fullsize-box_true {
|
|
|
4349
4367
|
flex: 1;
|
|
4350
4368
|
}
|
|
4351
4369
|
.jodit-source__mirror {
|
|
4352
|
-
|
|
4370
|
+
z-index: 2;
|
|
4371
|
+
overflow: auto;
|
|
4353
4372
|
width: 100%;
|
|
4354
4373
|
height: 100%;
|
|
4355
|
-
|
|
4356
|
-
margin: 0;
|
|
4357
|
-
resize: none;
|
|
4374
|
+
min-height: 100%;
|
|
4358
4375
|
box-sizing: border-box;
|
|
4376
|
+
padding: var(--jd-padding-default);
|
|
4377
|
+
border: 0;
|
|
4378
|
+
margin: 0;
|
|
4379
|
+
background: var(--jd-color-source-area);
|
|
4380
|
+
box-shadow: none;
|
|
4359
4381
|
color: #f0f0f0;
|
|
4382
|
+
line-height: 1.5;
|
|
4360
4383
|
outline: none;
|
|
4384
|
+
resize: none;
|
|
4385
|
+
tab-size: 2em;
|
|
4361
4386
|
font: 12px / normal 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
|
|
4362
|
-
line-height: 1.5;
|
|
4363
|
-
box-shadow: none;
|
|
4364
|
-
overflow: auto;
|
|
4365
|
-
z-index: 2;
|
|
4366
|
-
padding: var(--jd-padding-default);
|
|
4367
4387
|
white-space: pre-wrap;
|
|
4368
|
-
tab-size: 2em;
|
|
4369
|
-
min-height: 100%;
|
|
4370
4388
|
}
|
|
4371
4389
|
.jodit-source__mirror::selection {
|
|
4372
4390
|
background: var(--jd-color-selection-area);
|
|
@@ -4586,14 +4604,14 @@ html.jodit_fullsize-box_true {
|
|
|
4586
4604
|
}
|
|
4587
4605
|
.jodit-xpath__item {
|
|
4588
4606
|
display: flex;
|
|
4589
|
-
line-height: calc(var(--jd-font-size-small) - 1px);
|
|
4590
4607
|
height: var(--jd-font-size-small);
|
|
4608
|
+
line-height: calc(var(--jd-font-size-small) - 1px);
|
|
4591
4609
|
}
|
|
4592
4610
|
.jodit-xpath__item a {
|
|
4593
|
-
font-size: var(--jd-font-size-small);
|
|
4594
|
-
color: var(--jd-color-default);
|
|
4595
4611
|
padding: 0 3px;
|
|
4596
4612
|
margin-left: 2px;
|
|
4613
|
+
color: var(--jd-color-default);
|
|
4614
|
+
font-size: var(--jd-font-size-small);
|
|
4597
4615
|
outline: 0;
|
|
4598
4616
|
}
|
|
4599
4617
|
|