jodit 3.9.3 → 3.10.2
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 +306 -295
- package/CHANGELOG.MD +349 -119
- package/build/jodit.css +675 -538
- package/build/jodit.es2018.css +536 -436
- package/build/jodit.es2018.en.css +536 -436
- package/build/jodit.es2018.en.js +1529 -738
- package/build/jodit.es2018.en.min.css +1 -1
- package/build/jodit.es2018.en.min.js +1 -1
- package/build/jodit.es2018.js +1533 -742
- package/build/jodit.es2018.min.css +1 -1
- package/build/jodit.es2018.min.js +1 -1
- package/build/jodit.js +2598 -1680
- package/build/jodit.min.css +2 -2
- package/build/jodit.min.js +1 -1
- package/index.d.ts +10 -0
- package/package.json +10 -10
- package/src/config.ts +19 -20
- package/src/core/component/component.ts +16 -15
- package/src/core/component/statuses.ts +6 -6
- package/src/core/dom.ts +16 -4
- package/src/core/events/event-emitter.ts +4 -2
- package/src/core/global.ts +13 -2
- package/src/core/helpers/append-script.ts +14 -0
- package/src/core/helpers/selector.ts +8 -3
- package/src/core/helpers/size/index.ts +1 -0
- package/src/core/helpers/size/object-size.ts +22 -0
- package/src/core/selection/select.ts +1 -0
- package/src/core/selection/style/api/{get-closest-wrapper.ts → extract.ts} +26 -43
- package/src/core/selection/style/api/finite-state-machine.ts +66 -0
- package/src/core/selection/style/api/index.ts +12 -5
- package/src/core/selection/style/api/{check-special-elements.ts → is-inside-invisible-element.ts} +1 -1
- package/src/core/selection/style/api/is-suit-element.ts +12 -1
- package/src/core/selection/style/api/toggle/toggle-css.ts +134 -0
- package/src/core/selection/style/api/toggle/toggle-ordered-list.ts +49 -0
- package/src/core/selection/style/api/toggle-commit-styles.ts +27 -0
- package/src/core/selection/style/api/wrap-and-commit-style.ts +68 -0
- package/src/core/selection/style/api/wrap-ordered-list.ts +37 -0
- package/src/core/selection/style/api/wrap-unwrapped-text.ts +1 -4
- package/src/core/selection/style/apply-style.ts +161 -97
- package/src/core/selection/style/commit-style.ts +13 -0
- package/src/core/storage/engines/local-storage-provider.ts +9 -3
- package/src/core/storage/engines/memory-storage-provider.ts +6 -3
- package/src/core/storage/storage.ts +7 -4
- package/src/core/ui/button/button/button.less +10 -8
- package/src/core/ui/button/button/button.ts +9 -9
- package/src/core/ui/button/group/group.ts +2 -2
- package/src/core/ui/element.ts +4 -3
- package/src/core/ui/form/block/block.ts +1 -1
- package/src/core/ui/form/form.ts +8 -0
- package/src/core/ui/form/inputs/area/area.less +5 -0
- package/src/core/ui/form/inputs/area/area.ts +22 -1
- package/src/core/ui/form/inputs/checkbox/checkbox.less +50 -0
- package/src/core/ui/form/inputs/checkbox/checkbox.ts +48 -4
- package/src/core/ui/form/inputs/input/input.less +1 -1
- package/src/core/ui/form/inputs/input/input.ts +14 -4
- package/src/core/ui/helpers/buttons.ts +14 -6
- package/src/core/ui/icon.ts +3 -1
- package/src/core/ui/index.ts +1 -3
- package/src/core/ui/list/group.less +8 -2
- package/src/core/ui/list/group.ts +2 -2
- package/src/{modules/file-browser/consts.ts → core/ui/list/index.ts} +4 -4
- package/src/core/ui/list/list.less +10 -1
- package/src/core/ui/list/list.ts +20 -3
- package/src/core/ui/{separator.ts → list/separator.ts} +2 -2
- package/src/core/ui/list/spacer.ts +15 -0
- package/src/core/ui/popup/popup.less +5 -3
- package/src/core/ui/popup/popup.ts +53 -1
- package/src/core/view/view-with-toolbar.ts +6 -1
- package/src/jodit.ts +17 -14
- package/src/modules/dialog/dialog.less +1 -16
- package/src/modules/dialog/dialog.ts +10 -3
- package/src/modules/file-browser/builders/context-menu.ts +29 -22
- package/src/modules/file-browser/config.ts +10 -2
- package/src/modules/file-browser/file-browser.ts +50 -29
- package/src/modules/file-browser/listeners/native-listeners.ts +37 -19
- package/src/modules/file-browser/listeners/state-listeners.ts +48 -22
- package/src/modules/file-browser/styles/file-browser.less +4 -291
- package/src/modules/file-browser/styles/preview.less +11 -8
- package/src/modules/file-browser/ui/files/files.less +174 -0
- package/src/modules/file-browser/ui/files/files.ts +14 -0
- package/src/modules/file-browser/ui/index.ts +8 -0
- package/src/modules/file-browser/ui/tree/tree.less +118 -0
- package/src/modules/file-browser/ui/tree/tree.ts +14 -0
- package/src/modules/status-bar/status-bar.less +27 -1
- package/src/modules/status-bar/status-bar.ts +15 -1
- package/src/modules/toolbar/collection/collection.ts +17 -8
- package/src/modules/toolbar/collection/editor-collection.ts +27 -2
- package/src/modules/widget/file-selector/file-selector.ts +1 -1
- package/src/modules/widget/tabs/tabs.less +2 -1
- package/src/modules/widget/tabs/tabs.ts +5 -3
- package/src/plugins/add-new-line/add-new-line.ts +1 -0
- package/src/plugins/bold.ts +2 -2
- package/src/plugins/clipboard/drag-and-drop.ts +4 -1
- package/src/plugins/clipboard/paste/paste.ts +1 -1
- package/src/plugins/font.ts +11 -1
- package/src/plugins/image/image-properties/image-properties.ts +7 -0
- package/src/plugins/index.ts +1 -0
- package/src/plugins/inline-popup/config/config.ts +1 -0
- package/src/plugins/inline-popup/config/items/toolbar.ts +33 -0
- package/src/plugins/inline-popup/inline-popup.ts +17 -0
- package/src/plugins/keyboard/delete.ts +30 -8
- package/src/plugins/link/template.ts +2 -2
- package/src/plugins/mobile.ts +10 -14
- package/src/plugins/ordered-list.ts +40 -1
- package/src/plugins/powered-by-jodit.ts +39 -0
- package/src/plugins/print/preview.ts +103 -48
- package/src/plugins/resizer/resizer.less +10 -7
- package/src/plugins/resizer/resizer.ts +12 -14
- package/src/plugins/size/resize-handler.ts +4 -1
- package/src/plugins/size/size.less +2 -19
- package/src/plugins/size/size.ts +6 -1
- package/src/plugins/source/const.ts +7 -0
- package/src/plugins/source/editor/engines/ace.ts +5 -0
- package/src/plugins/source/source.ts +33 -7
- package/src/plugins/sticky/sticky.ts +2 -0
- package/src/styles/icons/index.ts +2 -0
- package/src/styles/icons/resize-handler.svg +4 -0
- package/src/styles/jodit.less +6 -0
- package/src/styles/mixins.less +20 -0
- package/src/styles/themes/dark.less +11 -1
- package/src/types/ajax.d.ts +0 -1
- package/src/types/file-browser.d.ts +13 -1
- package/src/types/jodit.d.ts +4 -1
- package/src/types/popup.d.ts +1 -0
- package/src/types/select.d.ts +2 -0
- package/src/types/storage.ts +3 -3
- package/src/types/style.d.ts +8 -0
- package/src/types/toolbar.d.ts +9 -2
- package/src/types/types.d.ts +1 -1
- package/src/types/ui.d.ts +23 -4
- package/src/types/view.d.ts +1 -0
- package/types/core/component/component.d.ts +10 -5
- package/types/core/component/statuses.d.ts +6 -6
- package/types/core/dom.d.ts +3 -2
- package/types/core/helpers/append-script.d.ts +1 -0
- package/types/core/helpers/selector.d.ts +2 -3
- package/types/core/helpers/size/index.d.ts +1 -0
- package/types/core/helpers/size/object-size.d.ts +7 -0
- package/types/core/selection/style/api/{get-closest-wrapper.d.ts → extract.d.ts} +6 -5
- package/types/core/selection/style/api/finite-state-machine.d.ts +21 -0
- package/types/core/selection/style/api/index.d.ts +12 -5
- package/types/core/selection/style/api/{check-special-elements.d.ts → is-inside-invisible-element.d.ts} +1 -1
- package/types/core/selection/style/api/is-suit-element.d.ts +9 -0
- package/types/core/selection/style/api/toggle/toggle-css.d.ts +11 -0
- package/types/core/selection/style/api/toggle/toggle-ordered-list.d.ts +11 -0
- package/types/core/selection/style/api/{toggle-styles.d.ts → toggle-commit-styles.d.ts} +1 -3
- package/types/core/selection/style/api/{post-process-list-element.d.ts → wrap-and-commit-style.d.ts} +3 -3
- package/types/core/selection/style/api/wrap-ordered-list.d.ts +12 -0
- package/types/core/selection/style/apply-style.d.ts +1 -4
- package/types/core/selection/style/commit-style.d.ts +7 -0
- package/types/core/storage/engines/local-storage-provider.d.ts +3 -3
- package/types/core/storage/engines/memory-storage-provider.d.ts +3 -3
- package/types/core/storage/storage.d.ts +3 -3
- package/types/core/ui/button/button/button.d.ts +3 -3
- package/types/core/ui/form/form.d.ts +1 -0
- package/types/core/ui/form/inputs/area/area.d.ts +7 -1
- package/types/core/ui/form/inputs/checkbox/checkbox.d.ts +10 -3
- package/types/core/ui/helpers/buttons.d.ts +2 -2
- package/types/core/ui/icon.d.ts +1 -1
- package/types/core/ui/index.d.ts +1 -3
- package/types/core/ui/list/group.d.ts +2 -1
- package/types/core/ui/list/index.d.ts +9 -0
- package/types/core/ui/{separator.d.ts → list/separator.d.ts} +1 -1
- package/types/core/ui/list/spacer.d.ts +9 -0
- package/types/core/ui/popup/popup.d.ts +2 -1
- package/types/core/view/view-with-toolbar.d.ts +4 -2
- package/types/jodit.d.ts +6 -6
- package/types/modules/file-browser/file-browser.d.ts +3 -2
- package/types/modules/file-browser/listeners/native-listeners.d.ts +5 -1
- package/types/modules/file-browser/ui/files/files.d.ts +10 -0
- package/types/modules/file-browser/ui/index.d.ts +7 -0
- package/types/modules/file-browser/ui/tree/tree.d.ts +10 -0
- package/types/modules/status-bar/status-bar.d.ts +6 -1
- package/types/modules/toolbar/button/button.d.ts +1 -1
- package/types/modules/toolbar/collection/collection.d.ts +5 -2
- package/types/modules/toolbar/collection/editor-collection.d.ts +9 -1
- package/types/modules/widget/tabs/tabs.d.ts +2 -1
- package/types/plugins/index.d.ts +1 -0
- package/types/plugins/inline-popup/inline-popup.d.ts +4 -0
- package/types/plugins/keyboard/delete.d.ts +2 -0
- package/types/plugins/ordered-list.d.ts +8 -1
- package/types/plugins/powered-by-jodit.d.ts +12 -0
- package/types/plugins/source/const.d.ts +6 -0
- package/types/plugins/source/editor/engines/ace.d.ts +1 -0
- package/types/plugins/source/source.d.ts +1 -0
- package/types/styles/icons/index.d.ts +2 -1
- package/types/types/storage.d.ts +3 -3
- package/types/types/{ajax.d.ts → types/ajax.d.ts} +0 -1
- package/types/types/{async.d.ts → types/async.d.ts} +0 -0
- package/types/types/{context.d.ts → types/context.d.ts} +0 -0
- package/types/types/{core.ts → types/core.ts} +0 -0
- package/types/types/{create.d.ts → types/create.d.ts} +0 -0
- package/types/types/{dialog.d.ts → types/dialog.d.ts} +0 -0
- package/types/types/{events.d.ts → types/events.d.ts} +0 -0
- package/types/types/{file-browser.d.ts → types/file-browser.d.ts} +13 -1
- package/types/types/{form.d.ts → types/form.d.ts} +0 -0
- package/types/types/{index.d.ts → types/index.d.ts} +0 -0
- package/types/types/{jodit.d.ts → types/jodit.d.ts} +4 -1
- package/types/types/{observe.d.ts → types/observe.d.ts} +0 -0
- package/types/types/{plugin.d.ts → types/plugin.d.ts} +0 -0
- package/types/types/{popup.d.ts → types/popup.d.ts} +1 -0
- package/types/types/{select.d.ts → types/select.d.ts} +2 -0
- package/types/types/{source.d.ts → types/source.d.ts} +0 -0
- package/types/types/{storage.ts → types/storage.ts} +3 -3
- package/types/types/{style.d.ts → types/style.d.ts} +8 -0
- package/types/types/{toolbar.d.ts → types/toolbar.d.ts} +9 -2
- package/types/types/{traits.d.ts → types/traits.d.ts} +0 -0
- package/types/types/{types.d.ts → types/types.d.ts} +1 -1
- package/types/types/{ui.d.ts → types/ui.d.ts} +23 -4
- package/types/types/{uploader.d.ts → types/uploader.d.ts} +0 -0
- package/types/types/{view.d.ts → types/view.d.ts} +1 -0
- package/src/core/selection/style/api/post-process-list-element.ts +0 -33
- package/src/core/selection/style/api/toggle-styles.ts +0 -74
- package/types/modules/file-browser/consts.d.ts +0 -8
package/build/jodit.css
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.
|
|
4
|
+
* Version: v3.10.2
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
8
8
|
/*!
|
|
9
9
|
* jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
|
|
10
10
|
* Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)
|
|
11
|
-
* Version: v3.
|
|
11
|
+
* Version: v3.10.2
|
|
12
12
|
* Url: https://xdsoft.net/jodit/
|
|
13
13
|
* License(s): MIT
|
|
14
14
|
*/
|
|
@@ -665,6 +665,9 @@ svg.jodit-icon {
|
|
|
665
665
|
width: 100%;
|
|
666
666
|
height: 100%;
|
|
667
667
|
}
|
|
668
|
+
.jodit-wysiwyg *[contentEditable='false'] {
|
|
669
|
+
cursor: default;
|
|
670
|
+
}
|
|
668
671
|
.jodit-container:not(.jodit_inline) {
|
|
669
672
|
border: 1px solid #dadada;
|
|
670
673
|
border-radius: 3px;
|
|
@@ -744,10 +747,10 @@ svg.jodit-icon {
|
|
|
744
747
|
border-color: #575757;
|
|
745
748
|
}
|
|
746
749
|
.jodit-dialog_theme_dark .jodit-popup__content {
|
|
747
|
-
background: #
|
|
750
|
+
background: #787878;
|
|
748
751
|
}
|
|
749
752
|
.jodit_theme_dark .jodit-popup__content {
|
|
750
|
-
background: #
|
|
753
|
+
background: #787878;
|
|
751
754
|
}
|
|
752
755
|
.jodit-dialog_theme_dark .jodit-ui-button__text {
|
|
753
756
|
color: #d1cccc;
|
|
@@ -797,10 +800,33 @@ svg.jodit-icon {
|
|
|
797
800
|
.jodit_theme_dark .jodit-toolbar-button__trigger:hover:not([disabled]) {
|
|
798
801
|
background-color: #787878;
|
|
799
802
|
}
|
|
800
|
-
.jodit-dialog_theme_dark .jodit-status-bar
|
|
803
|
+
.jodit-dialog_theme_dark .jodit-status-bar {
|
|
804
|
+
border-color: rgba(95, 92, 92, 0.8);
|
|
805
|
+
background-color: rgba(95, 92, 92, 0.8);
|
|
806
|
+
color: #d1cccc;
|
|
807
|
+
}
|
|
801
808
|
.jodit_theme_dark .jodit-status-bar {
|
|
802
809
|
border-color: rgba(95, 92, 92, 0.8);
|
|
803
810
|
background-color: rgba(95, 92, 92, 0.8);
|
|
811
|
+
color: #d1cccc;
|
|
812
|
+
}
|
|
813
|
+
.jodit-dialog_theme_dark .jodit-status-bar a.jodit-status-bar-link {
|
|
814
|
+
color: #d1cccc;
|
|
815
|
+
}
|
|
816
|
+
.jodit_theme_dark .jodit-status-bar a.jodit-status-bar-link {
|
|
817
|
+
color: #d1cccc;
|
|
818
|
+
}
|
|
819
|
+
.jodit-dialog_theme_dark .jodit-status-bar a.jodit-status-bar-link:hover {
|
|
820
|
+
color: #d1cccc;
|
|
821
|
+
}
|
|
822
|
+
.jodit_theme_dark .jodit-status-bar a.jodit-status-bar-link:hover {
|
|
823
|
+
color: #d1cccc;
|
|
824
|
+
}
|
|
825
|
+
.jodit-dialog_theme_dark .jodit-status-bar a.jodit-status-bar-link:visited {
|
|
826
|
+
color: #d1cccc;
|
|
827
|
+
}
|
|
828
|
+
.jodit_theme_dark .jodit-status-bar a.jodit-status-bar-link:visited {
|
|
829
|
+
color: #d1cccc;
|
|
804
830
|
}
|
|
805
831
|
.jodit-dialog_theme_dark .jodit-status-bar {
|
|
806
832
|
color: #d1cccc;
|
|
@@ -808,6 +834,12 @@ svg.jodit-icon {
|
|
|
808
834
|
.jodit_theme_dark .jodit-status-bar {
|
|
809
835
|
color: #d1cccc;
|
|
810
836
|
}
|
|
837
|
+
.jodit-dialog_theme_dark .jodit-status-bar .jodit-status-bar__item a {
|
|
838
|
+
color: #d1cccc;
|
|
839
|
+
}
|
|
840
|
+
.jodit_theme_dark .jodit-status-bar .jodit-status-bar__item a {
|
|
841
|
+
color: #d1cccc;
|
|
842
|
+
}
|
|
811
843
|
.jodit-dialog_theme_dark .jodit-status-bar .jodit-status-bar__item span {
|
|
812
844
|
color: #d1cccc;
|
|
813
845
|
}
|
|
@@ -1197,155 +1229,155 @@ svg.jodit-icon {
|
|
|
1197
1229
|
.jodit-ui-button-sizes_size_large_text-icons_true button {
|
|
1198
1230
|
padding: 0 8px;
|
|
1199
1231
|
}
|
|
1200
|
-
.jodit-ui-button-
|
|
1232
|
+
.jodit-ui-button-variants_variant_default {
|
|
1201
1233
|
background-color: #e3e3e3;
|
|
1202
1234
|
color: #212529;
|
|
1203
1235
|
}
|
|
1204
|
-
.jodit-ui-button-
|
|
1236
|
+
.jodit-ui-button-variants_variant_default svg {
|
|
1205
1237
|
fill: #212529;
|
|
1206
1238
|
stroke: #212529;
|
|
1207
1239
|
}
|
|
1208
|
-
.jodit-ui-button-
|
|
1240
|
+
.jodit-ui-button-variants_variant_default [disabled] {
|
|
1209
1241
|
opacity: 0.7;
|
|
1210
1242
|
}
|
|
1211
|
-
.jodit-ui-button-
|
|
1243
|
+
.jodit-ui-button-variants_variant_default:hover:not([disabled]) {
|
|
1212
1244
|
background-color: #c9cdd1;
|
|
1213
1245
|
color: #212529;
|
|
1214
1246
|
}
|
|
1215
|
-
.jodit-ui-button-
|
|
1247
|
+
.jodit-ui-button-variants_variant_default:hover:not([disabled]) svg {
|
|
1216
1248
|
fill: #212529;
|
|
1217
1249
|
stroke: #212529;
|
|
1218
1250
|
}
|
|
1219
|
-
.jodit-ui-button-
|
|
1251
|
+
.jodit-ui-button-variants_variant_default:active:not([disabled]) {
|
|
1220
1252
|
background-color: #dae0e5;
|
|
1221
1253
|
color: #212529;
|
|
1222
1254
|
}
|
|
1223
|
-
.jodit-ui-button-
|
|
1255
|
+
.jodit-ui-button-variants_variant_default:active:not([disabled]) svg {
|
|
1224
1256
|
fill: #212529;
|
|
1225
1257
|
stroke: #212529;
|
|
1226
1258
|
}
|
|
1227
|
-
.jodit-ui-button-
|
|
1259
|
+
.jodit-ui-button-variants_variant_default:focus:not([disabled]) {
|
|
1228
1260
|
outline: 1px dashed #dae0e5;
|
|
1229
1261
|
}
|
|
1230
|
-
.jodit-ui-button-
|
|
1262
|
+
.jodit-ui-button-variants_variant_primary {
|
|
1231
1263
|
background-color: #007bff;
|
|
1232
1264
|
color: #fff;
|
|
1233
1265
|
}
|
|
1234
|
-
.jodit-ui-button-
|
|
1266
|
+
.jodit-ui-button-variants_variant_primary svg {
|
|
1235
1267
|
fill: #fff;
|
|
1236
1268
|
stroke: #fff;
|
|
1237
1269
|
}
|
|
1238
|
-
.jodit-ui-button-
|
|
1270
|
+
.jodit-ui-button-variants_variant_primary [disabled] {
|
|
1239
1271
|
opacity: 0.7;
|
|
1240
1272
|
}
|
|
1241
|
-
.jodit-ui-button-
|
|
1273
|
+
.jodit-ui-button-variants_variant_primary:hover:not([disabled]) {
|
|
1242
1274
|
background-color: #0069d9;
|
|
1243
1275
|
color: #fff;
|
|
1244
1276
|
}
|
|
1245
|
-
.jodit-ui-button-
|
|
1277
|
+
.jodit-ui-button-variants_variant_primary:hover:not([disabled]) svg {
|
|
1246
1278
|
fill: #fff;
|
|
1247
1279
|
stroke: #fff;
|
|
1248
1280
|
}
|
|
1249
|
-
.jodit-ui-button-
|
|
1281
|
+
.jodit-ui-button-variants_variant_primary:active:not([disabled]) {
|
|
1250
1282
|
background-color: #0062cc;
|
|
1251
1283
|
color: #fff;
|
|
1252
1284
|
}
|
|
1253
|
-
.jodit-ui-button-
|
|
1285
|
+
.jodit-ui-button-variants_variant_primary:active:not([disabled]) svg {
|
|
1254
1286
|
fill: #fff;
|
|
1255
1287
|
stroke: #fff;
|
|
1256
1288
|
}
|
|
1257
|
-
.jodit-ui-button-
|
|
1289
|
+
.jodit-ui-button-variants_variant_primary:focus:not([disabled]) {
|
|
1258
1290
|
outline: 1px dashed #0062cc;
|
|
1259
1291
|
}
|
|
1260
|
-
.jodit-ui-button-
|
|
1292
|
+
.jodit-ui-button-variants_variant_secondary {
|
|
1261
1293
|
background-color: #d8d8d8;
|
|
1262
1294
|
color: #212529;
|
|
1263
1295
|
border-radius: 0;
|
|
1264
1296
|
}
|
|
1265
|
-
.jodit-ui-button-
|
|
1297
|
+
.jodit-ui-button-variants_variant_secondary svg {
|
|
1266
1298
|
fill: #212529;
|
|
1267
1299
|
stroke: #212529;
|
|
1268
1300
|
}
|
|
1269
|
-
.jodit-ui-button-
|
|
1301
|
+
.jodit-ui-button-variants_variant_secondary [disabled] {
|
|
1270
1302
|
opacity: 0.7;
|
|
1271
1303
|
}
|
|
1272
|
-
.jodit-ui-button-
|
|
1304
|
+
.jodit-ui-button-variants_variant_secondary:hover:not([disabled]) {
|
|
1273
1305
|
background-color: #c9cdd1;
|
|
1274
1306
|
color: #212529;
|
|
1275
1307
|
}
|
|
1276
|
-
.jodit-ui-button-
|
|
1308
|
+
.jodit-ui-button-variants_variant_secondary:hover:not([disabled]) svg {
|
|
1277
1309
|
fill: #212529;
|
|
1278
1310
|
stroke: #212529;
|
|
1279
1311
|
}
|
|
1280
|
-
.jodit-ui-button-
|
|
1312
|
+
.jodit-ui-button-variants_variant_secondary:active:not([disabled]) {
|
|
1281
1313
|
background-color: #dae0e5;
|
|
1282
1314
|
color: #212529;
|
|
1283
1315
|
}
|
|
1284
|
-
.jodit-ui-button-
|
|
1316
|
+
.jodit-ui-button-variants_variant_secondary:active:not([disabled]) svg {
|
|
1285
1317
|
fill: #212529;
|
|
1286
1318
|
stroke: #212529;
|
|
1287
1319
|
}
|
|
1288
|
-
.jodit-ui-button-
|
|
1320
|
+
.jodit-ui-button-variants_variant_secondary:focus:not([disabled]) {
|
|
1289
1321
|
outline: 1px dashed #dae0e5;
|
|
1290
1322
|
}
|
|
1291
|
-
.jodit-ui-button-
|
|
1323
|
+
.jodit-ui-button-variants_variant_success {
|
|
1292
1324
|
background-color: #28a745;
|
|
1293
1325
|
color: #fff;
|
|
1294
1326
|
}
|
|
1295
|
-
.jodit-ui-button-
|
|
1327
|
+
.jodit-ui-button-variants_variant_success svg {
|
|
1296
1328
|
fill: #fff;
|
|
1297
1329
|
stroke: #fff;
|
|
1298
1330
|
}
|
|
1299
|
-
.jodit-ui-button-
|
|
1331
|
+
.jodit-ui-button-variants_variant_success [disabled] {
|
|
1300
1332
|
opacity: 0.7;
|
|
1301
1333
|
}
|
|
1302
|
-
.jodit-ui-button-
|
|
1334
|
+
.jodit-ui-button-variants_variant_success:hover:not([disabled]) {
|
|
1303
1335
|
background-color: #218838;
|
|
1304
1336
|
color: #fff;
|
|
1305
1337
|
}
|
|
1306
|
-
.jodit-ui-button-
|
|
1338
|
+
.jodit-ui-button-variants_variant_success:hover:not([disabled]) svg {
|
|
1307
1339
|
fill: #fff;
|
|
1308
1340
|
stroke: #fff;
|
|
1309
1341
|
}
|
|
1310
|
-
.jodit-ui-button-
|
|
1342
|
+
.jodit-ui-button-variants_variant_success:active:not([disabled]) {
|
|
1311
1343
|
background-color: #1e7e34;
|
|
1312
1344
|
color: #fff;
|
|
1313
1345
|
}
|
|
1314
|
-
.jodit-ui-button-
|
|
1346
|
+
.jodit-ui-button-variants_variant_success:active:not([disabled]) svg {
|
|
1315
1347
|
fill: #fff;
|
|
1316
1348
|
stroke: #fff;
|
|
1317
1349
|
}
|
|
1318
|
-
.jodit-ui-button-
|
|
1350
|
+
.jodit-ui-button-variants_variant_success:focus:not([disabled]) {
|
|
1319
1351
|
outline: 1px dashed #1e7e34;
|
|
1320
1352
|
}
|
|
1321
|
-
.jodit-ui-button-
|
|
1353
|
+
.jodit-ui-button-variants_variant_danger {
|
|
1322
1354
|
background-color: #dc3545;
|
|
1323
1355
|
color: #fff;
|
|
1324
1356
|
}
|
|
1325
|
-
.jodit-ui-button-
|
|
1357
|
+
.jodit-ui-button-variants_variant_danger svg {
|
|
1326
1358
|
fill: #fff;
|
|
1327
1359
|
stroke: #fff;
|
|
1328
1360
|
}
|
|
1329
|
-
.jodit-ui-button-
|
|
1361
|
+
.jodit-ui-button-variants_variant_danger [disabled] {
|
|
1330
1362
|
opacity: 0.7;
|
|
1331
1363
|
}
|
|
1332
|
-
.jodit-ui-button-
|
|
1364
|
+
.jodit-ui-button-variants_variant_danger:hover:not([disabled]) {
|
|
1333
1365
|
background-color: #c82333;
|
|
1334
1366
|
color: #fff;
|
|
1335
1367
|
}
|
|
1336
|
-
.jodit-ui-button-
|
|
1368
|
+
.jodit-ui-button-variants_variant_danger:hover:not([disabled]) svg {
|
|
1337
1369
|
fill: #fff;
|
|
1338
1370
|
stroke: #fff;
|
|
1339
1371
|
}
|
|
1340
|
-
.jodit-ui-button-
|
|
1372
|
+
.jodit-ui-button-variants_variant_danger:active:not([disabled]) {
|
|
1341
1373
|
background-color: #bd2130;
|
|
1342
1374
|
color: #fff;
|
|
1343
1375
|
}
|
|
1344
|
-
.jodit-ui-button-
|
|
1376
|
+
.jodit-ui-button-variants_variant_danger:active:not([disabled]) svg {
|
|
1345
1377
|
fill: #fff;
|
|
1346
1378
|
stroke: #fff;
|
|
1347
1379
|
}
|
|
1348
|
-
.jodit-ui-button-
|
|
1380
|
+
.jodit-ui-button-variants_variant_danger:focus:not([disabled]) {
|
|
1349
1381
|
outline: 1px dashed #bd2130;
|
|
1350
1382
|
}
|
|
1351
1383
|
.jodit-ui-button-style {
|
|
@@ -1393,6 +1425,7 @@ svg.jodit-icon {
|
|
|
1393
1425
|
justify-content: center;
|
|
1394
1426
|
padding: 0 8px;
|
|
1395
1427
|
border-radius: 3px;
|
|
1428
|
+
cursor: pointer;
|
|
1396
1429
|
min-width: 34px;
|
|
1397
1430
|
height: 34px;
|
|
1398
1431
|
}
|
|
@@ -1556,155 +1589,155 @@ svg.jodit-icon {
|
|
|
1556
1589
|
.jodit-ui-button:focus:not([disabled]) {
|
|
1557
1590
|
outline: 1px dashed #b5d6fd;
|
|
1558
1591
|
}
|
|
1559
|
-
.jodit-ui-
|
|
1592
|
+
.jodit-ui-button_variant_default {
|
|
1560
1593
|
background-color: #e3e3e3;
|
|
1561
1594
|
color: #212529;
|
|
1562
1595
|
}
|
|
1563
|
-
.jodit-ui-
|
|
1596
|
+
.jodit-ui-button_variant_default svg {
|
|
1564
1597
|
fill: #212529;
|
|
1565
1598
|
stroke: #212529;
|
|
1566
1599
|
}
|
|
1567
|
-
.jodit-ui-
|
|
1600
|
+
.jodit-ui-button_variant_default [disabled] {
|
|
1568
1601
|
opacity: 0.7;
|
|
1569
1602
|
}
|
|
1570
|
-
.jodit-ui-
|
|
1603
|
+
.jodit-ui-button_variant_default:hover:not([disabled]) {
|
|
1571
1604
|
background-color: #c9cdd1;
|
|
1572
1605
|
color: #212529;
|
|
1573
1606
|
}
|
|
1574
|
-
.jodit-ui-
|
|
1607
|
+
.jodit-ui-button_variant_default:hover:not([disabled]) svg {
|
|
1575
1608
|
fill: #212529;
|
|
1576
1609
|
stroke: #212529;
|
|
1577
1610
|
}
|
|
1578
|
-
.jodit-ui-
|
|
1611
|
+
.jodit-ui-button_variant_default:active:not([disabled]) {
|
|
1579
1612
|
background-color: #dae0e5;
|
|
1580
1613
|
color: #212529;
|
|
1581
1614
|
}
|
|
1582
|
-
.jodit-ui-
|
|
1615
|
+
.jodit-ui-button_variant_default:active:not([disabled]) svg {
|
|
1583
1616
|
fill: #212529;
|
|
1584
1617
|
stroke: #212529;
|
|
1585
1618
|
}
|
|
1586
|
-
.jodit-ui-
|
|
1619
|
+
.jodit-ui-button_variant_default:focus:not([disabled]) {
|
|
1587
1620
|
outline: 1px dashed #dae0e5;
|
|
1588
1621
|
}
|
|
1589
|
-
.jodit-ui-
|
|
1622
|
+
.jodit-ui-button_variant_primary {
|
|
1590
1623
|
background-color: #007bff;
|
|
1591
1624
|
color: #fff;
|
|
1592
1625
|
}
|
|
1593
|
-
.jodit-ui-
|
|
1626
|
+
.jodit-ui-button_variant_primary svg {
|
|
1594
1627
|
fill: #fff;
|
|
1595
1628
|
stroke: #fff;
|
|
1596
1629
|
}
|
|
1597
|
-
.jodit-ui-
|
|
1630
|
+
.jodit-ui-button_variant_primary [disabled] {
|
|
1598
1631
|
opacity: 0.7;
|
|
1599
1632
|
}
|
|
1600
|
-
.jodit-ui-
|
|
1633
|
+
.jodit-ui-button_variant_primary:hover:not([disabled]) {
|
|
1601
1634
|
background-color: #0069d9;
|
|
1602
1635
|
color: #fff;
|
|
1603
1636
|
}
|
|
1604
|
-
.jodit-ui-
|
|
1637
|
+
.jodit-ui-button_variant_primary:hover:not([disabled]) svg {
|
|
1605
1638
|
fill: #fff;
|
|
1606
1639
|
stroke: #fff;
|
|
1607
1640
|
}
|
|
1608
|
-
.jodit-ui-
|
|
1641
|
+
.jodit-ui-button_variant_primary:active:not([disabled]) {
|
|
1609
1642
|
background-color: #0062cc;
|
|
1610
1643
|
color: #fff;
|
|
1611
1644
|
}
|
|
1612
|
-
.jodit-ui-
|
|
1645
|
+
.jodit-ui-button_variant_primary:active:not([disabled]) svg {
|
|
1613
1646
|
fill: #fff;
|
|
1614
1647
|
stroke: #fff;
|
|
1615
1648
|
}
|
|
1616
|
-
.jodit-ui-
|
|
1649
|
+
.jodit-ui-button_variant_primary:focus:not([disabled]) {
|
|
1617
1650
|
outline: 1px dashed #0062cc;
|
|
1618
1651
|
}
|
|
1619
|
-
.jodit-ui-
|
|
1652
|
+
.jodit-ui-button_variant_secondary {
|
|
1620
1653
|
background-color: #d8d8d8;
|
|
1621
1654
|
color: #212529;
|
|
1622
1655
|
border-radius: 0;
|
|
1623
1656
|
}
|
|
1624
|
-
.jodit-ui-
|
|
1657
|
+
.jodit-ui-button_variant_secondary svg {
|
|
1625
1658
|
fill: #212529;
|
|
1626
1659
|
stroke: #212529;
|
|
1627
1660
|
}
|
|
1628
|
-
.jodit-ui-
|
|
1661
|
+
.jodit-ui-button_variant_secondary [disabled] {
|
|
1629
1662
|
opacity: 0.7;
|
|
1630
1663
|
}
|
|
1631
|
-
.jodit-ui-
|
|
1664
|
+
.jodit-ui-button_variant_secondary:hover:not([disabled]) {
|
|
1632
1665
|
background-color: #c9cdd1;
|
|
1633
1666
|
color: #212529;
|
|
1634
1667
|
}
|
|
1635
|
-
.jodit-ui-
|
|
1668
|
+
.jodit-ui-button_variant_secondary:hover:not([disabled]) svg {
|
|
1636
1669
|
fill: #212529;
|
|
1637
1670
|
stroke: #212529;
|
|
1638
1671
|
}
|
|
1639
|
-
.jodit-ui-
|
|
1672
|
+
.jodit-ui-button_variant_secondary:active:not([disabled]) {
|
|
1640
1673
|
background-color: #dae0e5;
|
|
1641
1674
|
color: #212529;
|
|
1642
1675
|
}
|
|
1643
|
-
.jodit-ui-
|
|
1676
|
+
.jodit-ui-button_variant_secondary:active:not([disabled]) svg {
|
|
1644
1677
|
fill: #212529;
|
|
1645
1678
|
stroke: #212529;
|
|
1646
1679
|
}
|
|
1647
|
-
.jodit-ui-
|
|
1680
|
+
.jodit-ui-button_variant_secondary:focus:not([disabled]) {
|
|
1648
1681
|
outline: 1px dashed #dae0e5;
|
|
1649
1682
|
}
|
|
1650
|
-
.jodit-ui-
|
|
1683
|
+
.jodit-ui-button_variant_success {
|
|
1651
1684
|
background-color: #28a745;
|
|
1652
1685
|
color: #fff;
|
|
1653
1686
|
}
|
|
1654
|
-
.jodit-ui-
|
|
1687
|
+
.jodit-ui-button_variant_success svg {
|
|
1655
1688
|
fill: #fff;
|
|
1656
1689
|
stroke: #fff;
|
|
1657
1690
|
}
|
|
1658
|
-
.jodit-ui-
|
|
1691
|
+
.jodit-ui-button_variant_success [disabled] {
|
|
1659
1692
|
opacity: 0.7;
|
|
1660
1693
|
}
|
|
1661
|
-
.jodit-ui-
|
|
1694
|
+
.jodit-ui-button_variant_success:hover:not([disabled]) {
|
|
1662
1695
|
background-color: #218838;
|
|
1663
1696
|
color: #fff;
|
|
1664
1697
|
}
|
|
1665
|
-
.jodit-ui-
|
|
1698
|
+
.jodit-ui-button_variant_success:hover:not([disabled]) svg {
|
|
1666
1699
|
fill: #fff;
|
|
1667
1700
|
stroke: #fff;
|
|
1668
1701
|
}
|
|
1669
|
-
.jodit-ui-
|
|
1702
|
+
.jodit-ui-button_variant_success:active:not([disabled]) {
|
|
1670
1703
|
background-color: #1e7e34;
|
|
1671
1704
|
color: #fff;
|
|
1672
1705
|
}
|
|
1673
|
-
.jodit-ui-
|
|
1706
|
+
.jodit-ui-button_variant_success:active:not([disabled]) svg {
|
|
1674
1707
|
fill: #fff;
|
|
1675
1708
|
stroke: #fff;
|
|
1676
1709
|
}
|
|
1677
|
-
.jodit-ui-
|
|
1710
|
+
.jodit-ui-button_variant_success:focus:not([disabled]) {
|
|
1678
1711
|
outline: 1px dashed #1e7e34;
|
|
1679
1712
|
}
|
|
1680
|
-
.jodit-ui-
|
|
1713
|
+
.jodit-ui-button_variant_danger {
|
|
1681
1714
|
background-color: #dc3545;
|
|
1682
1715
|
color: #fff;
|
|
1683
1716
|
}
|
|
1684
|
-
.jodit-ui-
|
|
1717
|
+
.jodit-ui-button_variant_danger svg {
|
|
1685
1718
|
fill: #fff;
|
|
1686
1719
|
stroke: #fff;
|
|
1687
1720
|
}
|
|
1688
|
-
.jodit-ui-
|
|
1721
|
+
.jodit-ui-button_variant_danger [disabled] {
|
|
1689
1722
|
opacity: 0.7;
|
|
1690
1723
|
}
|
|
1691
|
-
.jodit-ui-
|
|
1724
|
+
.jodit-ui-button_variant_danger:hover:not([disabled]) {
|
|
1692
1725
|
background-color: #c82333;
|
|
1693
1726
|
color: #fff;
|
|
1694
1727
|
}
|
|
1695
|
-
.jodit-ui-
|
|
1728
|
+
.jodit-ui-button_variant_danger:hover:not([disabled]) svg {
|
|
1696
1729
|
fill: #fff;
|
|
1697
1730
|
stroke: #fff;
|
|
1698
1731
|
}
|
|
1699
|
-
.jodit-ui-
|
|
1732
|
+
.jodit-ui-button_variant_danger:active:not([disabled]) {
|
|
1700
1733
|
background-color: #bd2130;
|
|
1701
1734
|
color: #fff;
|
|
1702
1735
|
}
|
|
1703
|
-
.jodit-ui-
|
|
1736
|
+
.jodit-ui-button_variant_danger:active:not([disabled]) svg {
|
|
1704
1737
|
fill: #fff;
|
|
1705
1738
|
stroke: #fff;
|
|
1706
1739
|
}
|
|
1707
|
-
.jodit-ui-
|
|
1740
|
+
.jodit-ui-button_variant_danger:focus:not([disabled]) {
|
|
1708
1741
|
outline: 1px dashed #bd2130;
|
|
1709
1742
|
}
|
|
1710
1743
|
|
|
@@ -1738,6 +1771,7 @@ svg.jodit-icon {
|
|
|
1738
1771
|
width: 100%;
|
|
1739
1772
|
height: auto;
|
|
1740
1773
|
min-height: calc(14px + calc((14px - 4px) * 2) + 2px * 2);
|
|
1774
|
+
cursor: pointer;
|
|
1741
1775
|
}
|
|
1742
1776
|
.jodit-ui-list_mode_vertical .jodit-toolbar-button__text:not(:empty) {
|
|
1743
1777
|
-webkit-box-pack: left;
|
|
@@ -1758,6 +1792,11 @@ svg.jodit-icon {
|
|
|
1758
1792
|
flex-basis: 100%;
|
|
1759
1793
|
border-top: 1px solid #dadada;
|
|
1760
1794
|
}
|
|
1795
|
+
.jodit-ui-spacer {
|
|
1796
|
+
-webkit-box-flex: 1;
|
|
1797
|
+
-ms-flex: 1;
|
|
1798
|
+
flex: 1;
|
|
1799
|
+
}
|
|
1761
1800
|
|
|
1762
1801
|
/*!
|
|
1763
1802
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
@@ -1777,7 +1816,15 @@ svg.jodit-icon {
|
|
|
1777
1816
|
-ms-flex-wrap: wrap;
|
|
1778
1817
|
flex-wrap: wrap;
|
|
1779
1818
|
}
|
|
1780
|
-
.jodit-ui-
|
|
1819
|
+
.jodit-ui-group_line_true {
|
|
1820
|
+
display: -webkit-box;
|
|
1821
|
+
display: -ms-flexbox;
|
|
1822
|
+
display: flex;
|
|
1823
|
+
-webkit-box-pack: stretch;
|
|
1824
|
+
-ms-flex-pack: stretch;
|
|
1825
|
+
justify-content: stretch;
|
|
1826
|
+
}
|
|
1827
|
+
.jodit-ui-group_separated_true:not(:last-child):not(.jodit-ui-group_before-spacer_true):after {
|
|
1781
1828
|
content: '';
|
|
1782
1829
|
padding: 0;
|
|
1783
1830
|
border-right: 1px solid #dadada;
|
|
@@ -1965,8 +2012,7 @@ svg.jodit-icon {
|
|
|
1965
2012
|
background-color: #dadada;
|
|
1966
2013
|
}
|
|
1967
2014
|
.jodit-ui-input_focused_true .jodit-ui-input__wrapper {
|
|
1968
|
-
-
|
|
1969
|
-
box-shadow: 0 0 0 0.05rem rgba(0, 123, 255, 0.25);
|
|
2015
|
+
border-color: #1e88e5;
|
|
1970
2016
|
}
|
|
1971
2017
|
.jodit-ui-input__icon:not(:empty) {
|
|
1972
2018
|
display: -webkit-box;
|
|
@@ -2104,8 +2150,7 @@ svg.jodit-icon {
|
|
|
2104
2150
|
background-color: #dadada;
|
|
2105
2151
|
}
|
|
2106
2152
|
.jodit-ui-text-area_focused_true .jodit-ui-text-area__wrapper {
|
|
2107
|
-
-
|
|
2108
|
-
box-shadow: 0 0 0 0.05rem rgba(0, 123, 255, 0.25);
|
|
2153
|
+
border-color: #1e88e5;
|
|
2109
2154
|
}
|
|
2110
2155
|
.jodit-ui-text-area__icon:not(:empty) {
|
|
2111
2156
|
display: -webkit-box;
|
|
@@ -2151,7 +2196,13 @@ svg.jodit-icon {
|
|
|
2151
2196
|
.jodit-ui-text-area_theme_dark .jodit-ui-text-area__clear svg {
|
|
2152
2197
|
fill: #4c4c4c;
|
|
2153
2198
|
}
|
|
2199
|
+
.jodit-ui-text-area__wrapper {
|
|
2200
|
+
-webkit-box-flex: 1;
|
|
2201
|
+
-ms-flex: 1;
|
|
2202
|
+
flex: 1;
|
|
2203
|
+
}
|
|
2154
2204
|
.jodit-ui-text-area__input {
|
|
2205
|
+
height: 100%;
|
|
2155
2206
|
min-height: 60px;
|
|
2156
2207
|
}
|
|
2157
2208
|
|
|
@@ -2174,6 +2225,56 @@ svg.jodit-icon {
|
|
|
2174
2225
|
.jodit-ui-checkbox__input {
|
|
2175
2226
|
margin-right: 8px;
|
|
2176
2227
|
}
|
|
2228
|
+
.jodit-ui-checkbox_switch_true .jodit-ui-checkbox__wrapper {
|
|
2229
|
+
position: relative;
|
|
2230
|
+
display: inline-block;
|
|
2231
|
+
width: 60px;
|
|
2232
|
+
height: 34px;
|
|
2233
|
+
margin-right: 8px;
|
|
2234
|
+
}
|
|
2235
|
+
.jodit-ui-checkbox_switch_true .jodit-ui-checkbox__wrapper input {
|
|
2236
|
+
width: 0;
|
|
2237
|
+
height: 0;
|
|
2238
|
+
opacity: 0;
|
|
2239
|
+
}
|
|
2240
|
+
.jodit-ui-checkbox_switch_true .jodit-ui-checkbox__switch-slider {
|
|
2241
|
+
position: absolute;
|
|
2242
|
+
top: 0;
|
|
2243
|
+
right: 0;
|
|
2244
|
+
bottom: 0;
|
|
2245
|
+
left: 0;
|
|
2246
|
+
background-color: #ccc;
|
|
2247
|
+
border-radius: 34px;
|
|
2248
|
+
cursor: pointer;
|
|
2249
|
+
-webkit-transition: 0.4s;
|
|
2250
|
+
-o-transition: 0.4s;
|
|
2251
|
+
transition: 0.4s;
|
|
2252
|
+
}
|
|
2253
|
+
.jodit-ui-checkbox_switch_true .jodit-ui-checkbox__switch-slider:before {
|
|
2254
|
+
position: absolute;
|
|
2255
|
+
bottom: 4px;
|
|
2256
|
+
left: 4px;
|
|
2257
|
+
width: 26px;
|
|
2258
|
+
height: 26px;
|
|
2259
|
+
background-color: white;
|
|
2260
|
+
border-radius: 50%;
|
|
2261
|
+
content: '';
|
|
2262
|
+
-webkit-transition: 0.4s;
|
|
2263
|
+
-o-transition: 0.4s;
|
|
2264
|
+
transition: 0.4s;
|
|
2265
|
+
}
|
|
2266
|
+
.jodit-ui-checkbox_switch_true.jodit-ui-checkbox_checked_true .jodit-ui-checkbox__switch-slider {
|
|
2267
|
+
background-color: #2196f3;
|
|
2268
|
+
}
|
|
2269
|
+
.jodit-ui-checkbox_switch_true.jodit-ui-checkbox_checked_true .jodit-ui-checkbox__switch-slider:before {
|
|
2270
|
+
-webkit-transform: translateX(26px);
|
|
2271
|
+
-ms-transform: translateX(26px);
|
|
2272
|
+
transform: translateX(26px);
|
|
2273
|
+
}
|
|
2274
|
+
.jodit-ui-checkbox_switch_true.jodit-ui-checkbox_focused_true .jodit-ui-checkbox__switch-slider {
|
|
2275
|
+
-webkit-box-shadow: 0 0 1px #2196f3;
|
|
2276
|
+
box-shadow: 0 0 1px #2196f3;
|
|
2277
|
+
}
|
|
2177
2278
|
.jodit-ui-block .jodit-ui-checkbox {
|
|
2178
2279
|
margin-bottom: 0;
|
|
2179
2280
|
}
|
|
@@ -2265,8 +2366,7 @@ svg.jodit-icon {
|
|
|
2265
2366
|
background-color: #dadada;
|
|
2266
2367
|
}
|
|
2267
2368
|
.jodit-ui-select_focused_true .jodit-ui-select__wrapper {
|
|
2268
|
-
-
|
|
2269
|
-
box-shadow: 0 0 0 0.05rem rgba(0, 123, 255, 0.25);
|
|
2369
|
+
border-color: #1e88e5;
|
|
2270
2370
|
}
|
|
2271
2371
|
.jodit-ui-select__icon:not(:empty) {
|
|
2272
2372
|
display: -webkit-box;
|
|
@@ -2639,7 +2739,6 @@ svg.jodit-icon {
|
|
|
2639
2739
|
display: -webkit-box;
|
|
2640
2740
|
display: -ms-flexbox;
|
|
2641
2741
|
display: flex;
|
|
2642
|
-
overflow: hidden;
|
|
2643
2742
|
min-height: 50px;
|
|
2644
2743
|
-webkit-box-pack: justify;
|
|
2645
2744
|
-ms-flex-pack: justify;
|
|
@@ -2810,20 +2909,21 @@ svg.jodit-icon {
|
|
|
2810
2909
|
display: flex;
|
|
2811
2910
|
}
|
|
2812
2911
|
.jodit-dialog__resizer {
|
|
2912
|
+
position: relative;
|
|
2913
|
+
}
|
|
2914
|
+
.jodit-dialog__resizer svg {
|
|
2813
2915
|
position: absolute;
|
|
2814
2916
|
right: 0;
|
|
2815
2917
|
bottom: 0;
|
|
2816
|
-
|
|
2817
|
-
width:
|
|
2818
|
-
height:
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
.jodit-dialog__resizer:hover {
|
|
2826
|
-
border-bottom-color: rgba(0, 0, 0, 0.6);
|
|
2918
|
+
overflow: hidden;
|
|
2919
|
+
width: 12px;
|
|
2920
|
+
height: 12px;
|
|
2921
|
+
cursor: nwse-resize;
|
|
2922
|
+
fill: #a5a5a5;
|
|
2923
|
+
-webkit-user-select: none;
|
|
2924
|
+
-moz-user-select: none;
|
|
2925
|
+
-ms-user-select: none;
|
|
2926
|
+
user-select: none;
|
|
2827
2927
|
}
|
|
2828
2928
|
@media (max-width: 480px) {
|
|
2829
2929
|
.jodit-dialog__resizer {
|
|
@@ -3021,11 +3121,13 @@ svg.jodit-icon {
|
|
|
3021
3121
|
width: 100%;
|
|
3022
3122
|
height: auto;
|
|
3023
3123
|
min-height: calc(14px + calc((14px - 4px) * 2) + 2px * 2);
|
|
3124
|
+
cursor: pointer;
|
|
3024
3125
|
}
|
|
3025
3126
|
.jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button__button {
|
|
3026
3127
|
width: 100%;
|
|
3027
3128
|
height: auto;
|
|
3028
3129
|
min-height: calc(14px + calc((14px - 4px) * 2) + 2px * 2);
|
|
3130
|
+
cursor: pointer;
|
|
3029
3131
|
}
|
|
3030
3132
|
.jodit-toolbar-collection_mode_vertical .jodit-toolbar-button__text:not(:empty),
|
|
3031
3133
|
.jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button__text:not(:empty) {
|
|
@@ -3216,6 +3318,7 @@ svg.jodit-icon {
|
|
|
3216
3318
|
padding: 0 8px;
|
|
3217
3319
|
}
|
|
3218
3320
|
.jodit-toolbar-button__button {
|
|
3321
|
+
cursor: pointer;
|
|
3219
3322
|
position: relative;
|
|
3220
3323
|
-webkit-box-sizing: border-box;
|
|
3221
3324
|
box-sizing: border-box;
|
|
@@ -3281,6 +3384,7 @@ svg.jodit-icon {
|
|
|
3281
3384
|
justify-content: center;
|
|
3282
3385
|
border-radius: 0 3px 3px 0;
|
|
3283
3386
|
opacity: 0.4;
|
|
3387
|
+
cursor: pointer;
|
|
3284
3388
|
width: 14px;
|
|
3285
3389
|
}
|
|
3286
3390
|
.jodit-toolbar-button__trigger:hover:not([disabled]) {
|
|
@@ -3373,6 +3477,7 @@ svg.jodit-icon {
|
|
|
3373
3477
|
justify-content: center;
|
|
3374
3478
|
padding: 0 8px;
|
|
3375
3479
|
border-radius: 3px;
|
|
3480
|
+
cursor: pointer;
|
|
3376
3481
|
min-width: 34px;
|
|
3377
3482
|
height: 34px;
|
|
3378
3483
|
padding: 0;
|
|
@@ -3538,155 +3643,155 @@ svg.jodit-icon {
|
|
|
3538
3643
|
.jodit-toolbar-content:focus:not([disabled]) {
|
|
3539
3644
|
outline: 1px dashed #b5d6fd;
|
|
3540
3645
|
}
|
|
3541
|
-
.jodit-toolbar-
|
|
3646
|
+
.jodit-toolbar-content_variant_default {
|
|
3542
3647
|
background-color: #e3e3e3;
|
|
3543
3648
|
color: #212529;
|
|
3544
3649
|
}
|
|
3545
|
-
.jodit-toolbar-
|
|
3650
|
+
.jodit-toolbar-content_variant_default svg {
|
|
3546
3651
|
fill: #212529;
|
|
3547
3652
|
stroke: #212529;
|
|
3548
3653
|
}
|
|
3549
|
-
.jodit-toolbar-
|
|
3654
|
+
.jodit-toolbar-content_variant_default [disabled] {
|
|
3550
3655
|
opacity: 0.7;
|
|
3551
3656
|
}
|
|
3552
|
-
.jodit-toolbar-
|
|
3657
|
+
.jodit-toolbar-content_variant_default:hover:not([disabled]) {
|
|
3553
3658
|
background-color: #c9cdd1;
|
|
3554
3659
|
color: #212529;
|
|
3555
3660
|
}
|
|
3556
|
-
.jodit-toolbar-
|
|
3661
|
+
.jodit-toolbar-content_variant_default:hover:not([disabled]) svg {
|
|
3557
3662
|
fill: #212529;
|
|
3558
3663
|
stroke: #212529;
|
|
3559
3664
|
}
|
|
3560
|
-
.jodit-toolbar-
|
|
3665
|
+
.jodit-toolbar-content_variant_default:active:not([disabled]) {
|
|
3561
3666
|
background-color: #dae0e5;
|
|
3562
3667
|
color: #212529;
|
|
3563
3668
|
}
|
|
3564
|
-
.jodit-toolbar-
|
|
3669
|
+
.jodit-toolbar-content_variant_default:active:not([disabled]) svg {
|
|
3565
3670
|
fill: #212529;
|
|
3566
3671
|
stroke: #212529;
|
|
3567
3672
|
}
|
|
3568
|
-
.jodit-toolbar-
|
|
3673
|
+
.jodit-toolbar-content_variant_default:focus:not([disabled]) {
|
|
3569
3674
|
outline: 1px dashed #dae0e5;
|
|
3570
3675
|
}
|
|
3571
|
-
.jodit-toolbar-
|
|
3676
|
+
.jodit-toolbar-content_variant_primary {
|
|
3572
3677
|
background-color: #007bff;
|
|
3573
3678
|
color: #fff;
|
|
3574
3679
|
}
|
|
3575
|
-
.jodit-toolbar-
|
|
3680
|
+
.jodit-toolbar-content_variant_primary svg {
|
|
3576
3681
|
fill: #fff;
|
|
3577
3682
|
stroke: #fff;
|
|
3578
3683
|
}
|
|
3579
|
-
.jodit-toolbar-
|
|
3684
|
+
.jodit-toolbar-content_variant_primary [disabled] {
|
|
3580
3685
|
opacity: 0.7;
|
|
3581
3686
|
}
|
|
3582
|
-
.jodit-toolbar-
|
|
3687
|
+
.jodit-toolbar-content_variant_primary:hover:not([disabled]) {
|
|
3583
3688
|
background-color: #0069d9;
|
|
3584
3689
|
color: #fff;
|
|
3585
3690
|
}
|
|
3586
|
-
.jodit-toolbar-
|
|
3691
|
+
.jodit-toolbar-content_variant_primary:hover:not([disabled]) svg {
|
|
3587
3692
|
fill: #fff;
|
|
3588
3693
|
stroke: #fff;
|
|
3589
3694
|
}
|
|
3590
|
-
.jodit-toolbar-
|
|
3695
|
+
.jodit-toolbar-content_variant_primary:active:not([disabled]) {
|
|
3591
3696
|
background-color: #0062cc;
|
|
3592
3697
|
color: #fff;
|
|
3593
3698
|
}
|
|
3594
|
-
.jodit-toolbar-
|
|
3699
|
+
.jodit-toolbar-content_variant_primary:active:not([disabled]) svg {
|
|
3595
3700
|
fill: #fff;
|
|
3596
3701
|
stroke: #fff;
|
|
3597
3702
|
}
|
|
3598
|
-
.jodit-toolbar-
|
|
3703
|
+
.jodit-toolbar-content_variant_primary:focus:not([disabled]) {
|
|
3599
3704
|
outline: 1px dashed #0062cc;
|
|
3600
3705
|
}
|
|
3601
|
-
.jodit-toolbar-
|
|
3706
|
+
.jodit-toolbar-content_variant_secondary {
|
|
3602
3707
|
background-color: #d8d8d8;
|
|
3603
3708
|
color: #212529;
|
|
3604
3709
|
border-radius: 0;
|
|
3605
3710
|
}
|
|
3606
|
-
.jodit-toolbar-
|
|
3711
|
+
.jodit-toolbar-content_variant_secondary svg {
|
|
3607
3712
|
fill: #212529;
|
|
3608
3713
|
stroke: #212529;
|
|
3609
3714
|
}
|
|
3610
|
-
.jodit-toolbar-
|
|
3715
|
+
.jodit-toolbar-content_variant_secondary [disabled] {
|
|
3611
3716
|
opacity: 0.7;
|
|
3612
3717
|
}
|
|
3613
|
-
.jodit-toolbar-
|
|
3718
|
+
.jodit-toolbar-content_variant_secondary:hover:not([disabled]) {
|
|
3614
3719
|
background-color: #c9cdd1;
|
|
3615
3720
|
color: #212529;
|
|
3616
3721
|
}
|
|
3617
|
-
.jodit-toolbar-
|
|
3722
|
+
.jodit-toolbar-content_variant_secondary:hover:not([disabled]) svg {
|
|
3618
3723
|
fill: #212529;
|
|
3619
3724
|
stroke: #212529;
|
|
3620
3725
|
}
|
|
3621
|
-
.jodit-toolbar-
|
|
3726
|
+
.jodit-toolbar-content_variant_secondary:active:not([disabled]) {
|
|
3622
3727
|
background-color: #dae0e5;
|
|
3623
3728
|
color: #212529;
|
|
3624
3729
|
}
|
|
3625
|
-
.jodit-toolbar-
|
|
3730
|
+
.jodit-toolbar-content_variant_secondary:active:not([disabled]) svg {
|
|
3626
3731
|
fill: #212529;
|
|
3627
3732
|
stroke: #212529;
|
|
3628
3733
|
}
|
|
3629
|
-
.jodit-toolbar-
|
|
3734
|
+
.jodit-toolbar-content_variant_secondary:focus:not([disabled]) {
|
|
3630
3735
|
outline: 1px dashed #dae0e5;
|
|
3631
3736
|
}
|
|
3632
|
-
.jodit-toolbar-
|
|
3737
|
+
.jodit-toolbar-content_variant_success {
|
|
3633
3738
|
background-color: #28a745;
|
|
3634
3739
|
color: #fff;
|
|
3635
3740
|
}
|
|
3636
|
-
.jodit-toolbar-
|
|
3741
|
+
.jodit-toolbar-content_variant_success svg {
|
|
3637
3742
|
fill: #fff;
|
|
3638
3743
|
stroke: #fff;
|
|
3639
3744
|
}
|
|
3640
|
-
.jodit-toolbar-
|
|
3745
|
+
.jodit-toolbar-content_variant_success [disabled] {
|
|
3641
3746
|
opacity: 0.7;
|
|
3642
3747
|
}
|
|
3643
|
-
.jodit-toolbar-
|
|
3748
|
+
.jodit-toolbar-content_variant_success:hover:not([disabled]) {
|
|
3644
3749
|
background-color: #218838;
|
|
3645
3750
|
color: #fff;
|
|
3646
3751
|
}
|
|
3647
|
-
.jodit-toolbar-
|
|
3752
|
+
.jodit-toolbar-content_variant_success:hover:not([disabled]) svg {
|
|
3648
3753
|
fill: #fff;
|
|
3649
3754
|
stroke: #fff;
|
|
3650
3755
|
}
|
|
3651
|
-
.jodit-toolbar-
|
|
3756
|
+
.jodit-toolbar-content_variant_success:active:not([disabled]) {
|
|
3652
3757
|
background-color: #1e7e34;
|
|
3653
3758
|
color: #fff;
|
|
3654
3759
|
}
|
|
3655
|
-
.jodit-toolbar-
|
|
3760
|
+
.jodit-toolbar-content_variant_success:active:not([disabled]) svg {
|
|
3656
3761
|
fill: #fff;
|
|
3657
3762
|
stroke: #fff;
|
|
3658
3763
|
}
|
|
3659
|
-
.jodit-toolbar-
|
|
3764
|
+
.jodit-toolbar-content_variant_success:focus:not([disabled]) {
|
|
3660
3765
|
outline: 1px dashed #1e7e34;
|
|
3661
3766
|
}
|
|
3662
|
-
.jodit-toolbar-
|
|
3767
|
+
.jodit-toolbar-content_variant_danger {
|
|
3663
3768
|
background-color: #dc3545;
|
|
3664
3769
|
color: #fff;
|
|
3665
3770
|
}
|
|
3666
|
-
.jodit-toolbar-
|
|
3771
|
+
.jodit-toolbar-content_variant_danger svg {
|
|
3667
3772
|
fill: #fff;
|
|
3668
3773
|
stroke: #fff;
|
|
3669
3774
|
}
|
|
3670
|
-
.jodit-toolbar-
|
|
3775
|
+
.jodit-toolbar-content_variant_danger [disabled] {
|
|
3671
3776
|
opacity: 0.7;
|
|
3672
3777
|
}
|
|
3673
|
-
.jodit-toolbar-
|
|
3778
|
+
.jodit-toolbar-content_variant_danger:hover:not([disabled]) {
|
|
3674
3779
|
background-color: #c82333;
|
|
3675
3780
|
color: #fff;
|
|
3676
3781
|
}
|
|
3677
|
-
.jodit-toolbar-
|
|
3782
|
+
.jodit-toolbar-content_variant_danger:hover:not([disabled]) svg {
|
|
3678
3783
|
fill: #fff;
|
|
3679
3784
|
stroke: #fff;
|
|
3680
3785
|
}
|
|
3681
|
-
.jodit-toolbar-
|
|
3786
|
+
.jodit-toolbar-content_variant_danger:active:not([disabled]) {
|
|
3682
3787
|
background-color: #bd2130;
|
|
3683
3788
|
color: #fff;
|
|
3684
3789
|
}
|
|
3685
|
-
.jodit-toolbar-
|
|
3790
|
+
.jodit-toolbar-content_variant_danger:active:not([disabled]) svg {
|
|
3686
3791
|
fill: #fff;
|
|
3687
3792
|
stroke: #fff;
|
|
3688
3793
|
}
|
|
3689
|
-
.jodit-toolbar-
|
|
3794
|
+
.jodit-toolbar-content_variant_danger:focus:not([disabled]) {
|
|
3690
3795
|
outline: 1px dashed #bd2130;
|
|
3691
3796
|
}
|
|
3692
3797
|
.jodit-toolbar-content:hover:not([disabled]) {
|
|
@@ -3713,7 +3818,7 @@ svg.jodit-icon {
|
|
|
3713
3818
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
|
3714
3819
|
Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
|
|
3715
3820
|
}
|
|
3716
|
-
.jodit-
|
|
3821
|
+
.jodit-filebrowser_no-files_true {
|
|
3717
3822
|
padding: 8px;
|
|
3718
3823
|
}
|
|
3719
3824
|
@media (max-width: 480px) {
|
|
@@ -3731,7 +3836,7 @@ svg.jodit-icon {
|
|
|
3731
3836
|
width: 100%;
|
|
3732
3837
|
height: 100%;
|
|
3733
3838
|
}
|
|
3734
|
-
.jodit-filebrowser__loader
|
|
3839
|
+
.jodit-filebrowser__loader div {
|
|
3735
3840
|
position: absolute;
|
|
3736
3841
|
top: 50%;
|
|
3737
3842
|
left: 50%;
|
|
@@ -3758,403 +3863,113 @@ svg.jodit-icon {
|
|
|
3758
3863
|
visibility: hidden;
|
|
3759
3864
|
word-break: break-all;
|
|
3760
3865
|
}
|
|
3761
|
-
.jodit-
|
|
3866
|
+
.jodit-filebrowser__status_success_true {
|
|
3762
3867
|
color: #c5c5c5;
|
|
3763
3868
|
}
|
|
3764
|
-
.jodit-
|
|
3869
|
+
.jodit-filebrowser__status_active_true {
|
|
3765
3870
|
opacity: 1;
|
|
3766
3871
|
visibility: visible;
|
|
3767
3872
|
}
|
|
3768
|
-
.
|
|
3769
|
-
|
|
3770
|
-
position: relative;
|
|
3771
|
-
display: none;
|
|
3772
|
-
height: 100%;
|
|
3773
|
-
vertical-align: top;
|
|
3774
|
-
overflow-anchor: auto;
|
|
3775
|
-
}
|
|
3776
|
-
.jodit-filebrowser__tree .jodit-button,
|
|
3777
|
-
.jodit-filebrowser__files .jodit-button {
|
|
3778
|
-
border-radius: 0;
|
|
3873
|
+
.jodit_draghover {
|
|
3874
|
+
background-color: #ecebe9;
|
|
3779
3875
|
}
|
|
3780
|
-
.jodit-
|
|
3781
|
-
.jodit-filebrowser__files.jodit-filebrowser_active {
|
|
3876
|
+
.jodit-dialog .jodit-dialog__header-title.jodit-filebrowser__title-box {
|
|
3782
3877
|
display: -webkit-box;
|
|
3783
3878
|
display: -ms-flexbox;
|
|
3784
3879
|
display: flex;
|
|
3880
|
+
-webkit-box-align: center;
|
|
3881
|
+
-ms-flex-align: center;
|
|
3882
|
+
align-items: center;
|
|
3883
|
+
padding-left: 8px;
|
|
3785
3884
|
}
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
.jodit-filebrowser__tree::-webkit-scrollbar-track,
|
|
3793
|
-
.jodit-filebrowser__files::-webkit-scrollbar-track {
|
|
3794
|
-
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
|
3795
|
-
}
|
|
3796
|
-
.jodit-filebrowser__tree::-webkit-scrollbar-thumb,
|
|
3797
|
-
.jodit-filebrowser__files::-webkit-scrollbar-thumb {
|
|
3798
|
-
background-color: darkgrey;
|
|
3799
|
-
outline: 1px solid slategrey;
|
|
3800
|
-
}
|
|
3801
|
-
.jodit-filebrowser__tree.jodit-filebrowser_active {
|
|
3802
|
-
z-index: 2;
|
|
3803
|
-
width: 31%;
|
|
3804
|
-
min-width: 200px;
|
|
3805
|
-
max-width: 290px;
|
|
3806
|
-
-webkit-box-orient: vertical;
|
|
3807
|
-
-webkit-box-direction: normal;
|
|
3808
|
-
-ms-flex-direction: column;
|
|
3809
|
-
flex-direction: column;
|
|
3810
|
-
background-color: #3f3f3f;
|
|
3811
|
-
overflow-y: auto;
|
|
3812
|
-
}
|
|
3813
|
-
@media (max-width: 480px) {
|
|
3814
|
-
.jodit-filebrowser__tree.jodit-filebrowser_active {
|
|
3815
|
-
width: auto;
|
|
3816
|
-
max-width: 100%;
|
|
3817
|
-
height: 100px;
|
|
3818
|
-
}
|
|
3819
|
-
}
|
|
3820
|
-
.jodit-filebrowser__tree.jodit-filebrowser_active::-webkit-scrollbar {
|
|
3821
|
-
width: calc(8px / 2);
|
|
3822
|
-
}
|
|
3823
|
-
.jodit-filebrowser__tree.jodit-filebrowser_active::-webkit-scrollbar-track {
|
|
3824
|
-
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
|
3825
|
-
}
|
|
3826
|
-
.jodit-filebrowser__tree.jodit-filebrowser_active::-webkit-scrollbar-thumb {
|
|
3827
|
-
background-color: rgba(127, 127, 127, 0.5);
|
|
3828
|
-
outline: 1px solid slategrey;
|
|
3829
|
-
}
|
|
3830
|
-
.jodit-filebrowser__tree.jodit-filebrowser_active .jodit-filebrowser__source-title {
|
|
3831
|
-
position: relative;
|
|
3832
|
-
display: block;
|
|
3833
|
-
padding: 2px 4px;
|
|
3834
|
-
border-bottom: 1px solid #484848;
|
|
3835
|
-
background: #5a5a5a;
|
|
3836
|
-
color: #969696;
|
|
3837
|
-
font-size: 12px;
|
|
3838
|
-
-webkit-user-select: none;
|
|
3839
|
-
-moz-user-select: none;
|
|
3840
|
-
-ms-user-select: none;
|
|
3841
|
-
user-select: none;
|
|
3842
|
-
word-break: break-all;
|
|
3843
|
-
}
|
|
3844
|
-
.jodit-filebrowser__tree.jodit-filebrowser_active .jodit-filebrowser__tree-item {
|
|
3885
|
+
/*!
|
|
3886
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3887
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3888
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3889
|
+
*/
|
|
3890
|
+
.jodit-filebrowser-preview {
|
|
3845
3891
|
position: relative;
|
|
3846
3892
|
display: -webkit-box;
|
|
3847
3893
|
display: -ms-flexbox;
|
|
3848
3894
|
display: flex;
|
|
3849
|
-
min-
|
|
3895
|
+
min-width: 400px;
|
|
3896
|
+
max-width: min(100%, 1000px);
|
|
3897
|
+
height: 100%;
|
|
3898
|
+
min-height: min(100%, 500px);
|
|
3899
|
+
max-height: 100%;
|
|
3850
3900
|
-webkit-box-align: center;
|
|
3851
3901
|
-ms-flex-align: center;
|
|
3852
3902
|
align-items: center;
|
|
3853
|
-
-webkit-box-pack:
|
|
3854
|
-
-ms-flex-pack:
|
|
3855
|
-
justify-content:
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
color: #b1b1b1;
|
|
3859
|
-
text-decoration: none;
|
|
3860
|
-
-webkit-transition: background-color 0.2s ease 0s;
|
|
3861
|
-
-o-transition: background-color 0.2s ease 0s;
|
|
3862
|
-
transition: background-color 0.2s ease 0s;
|
|
3863
|
-
word-break: break-all;
|
|
3903
|
+
-webkit-box-pack: center;
|
|
3904
|
+
-ms-flex-pack: center;
|
|
3905
|
+
justify-content: center;
|
|
3906
|
+
margin: auto;
|
|
3907
|
+
text-align: center;
|
|
3864
3908
|
}
|
|
3865
|
-
|
|
3866
|
-
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3909
|
+
@media (max-width: 768px) {
|
|
3910
|
+
.jodit-filebrowser-preview {
|
|
3911
|
+
min-width: auto;
|
|
3912
|
+
max-width: 100%;
|
|
3913
|
+
height: 100%;
|
|
3914
|
+
min-height: auto;
|
|
3915
|
+
max-height: 100%;
|
|
3916
|
+
}
|
|
3869
3917
|
}
|
|
3870
|
-
.jodit-
|
|
3918
|
+
.jodit-filebrowser-preview__box {
|
|
3871
3919
|
display: -webkit-box;
|
|
3872
3920
|
display: -ms-flexbox;
|
|
3873
3921
|
display: flex;
|
|
3874
|
-
|
|
3875
|
-
|
|
3922
|
+
-webkit-box-flex: 1;
|
|
3923
|
+
-ms-flex-positive: 1;
|
|
3924
|
+
flex-grow: 1;
|
|
3876
3925
|
-webkit-box-align: center;
|
|
3877
3926
|
-ms-flex-align: center;
|
|
3878
3927
|
align-items: center;
|
|
3879
3928
|
-webkit-box-pack: center;
|
|
3880
3929
|
-ms-flex-pack: center;
|
|
3881
3930
|
justify-content: center;
|
|
3882
|
-
margin-left: calc(8px / 2);
|
|
3883
|
-
opacity: 0.3;
|
|
3884
3931
|
}
|
|
3885
|
-
.jodit-
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
3932
|
+
.jodit-filebrowser-preview__navigation {
|
|
3933
|
+
position: absolute;
|
|
3934
|
+
top: 0;
|
|
3935
|
+
left: 0;
|
|
3936
|
+
height: 100%;
|
|
3937
|
+
cursor: pointer;
|
|
3890
3938
|
}
|
|
3891
|
-
.jodit-
|
|
3892
|
-
|
|
3939
|
+
.jodit-filebrowser-preview__navigation_arrow_next {
|
|
3940
|
+
right: 0;
|
|
3941
|
+
left: auto;
|
|
3893
3942
|
}
|
|
3894
|
-
.jodit-
|
|
3895
|
-
|
|
3896
|
-
|
|
3943
|
+
.jodit-filebrowser-preview__navigation svg {
|
|
3944
|
+
position: relative;
|
|
3945
|
+
top: 50%;
|
|
3946
|
+
width: 45px;
|
|
3947
|
+
height: 45px;
|
|
3948
|
+
fill: #9e9ba7;
|
|
3949
|
+
-webkit-transform: translateY(-50%);
|
|
3950
|
+
-ms-transform: translateY(-50%);
|
|
3951
|
+
transform: translateY(-50%);
|
|
3952
|
+
-webkit-transition: fill 0.3s linear;
|
|
3953
|
+
-o-transition: fill 0.3s linear;
|
|
3954
|
+
transition: fill 0.3s linear;
|
|
3897
3955
|
}
|
|
3898
|
-
.jodit-
|
|
3899
|
-
|
|
3956
|
+
.jodit-filebrowser-preview__navigation:hover svg {
|
|
3957
|
+
fill: #000;
|
|
3900
3958
|
}
|
|
3901
|
-
.jodit-
|
|
3902
|
-
width: 100%;
|
|
3903
|
-
-
|
|
3904
|
-
flex-wrap: wrap;
|
|
3905
|
-
-ms-flex-line-pack: start;
|
|
3906
|
-
align-content: flex-start;
|
|
3907
|
-
padding: calc(8px / 2);
|
|
3908
|
-
overflow-y: auto;
|
|
3959
|
+
.jodit-filebrowser-preview img {
|
|
3960
|
+
max-width: 100%;
|
|
3961
|
+
max-height: 100%;
|
|
3909
3962
|
}
|
|
3910
|
-
|
|
3911
|
-
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
-moz-user-select: none;
|
|
3921
|
-
-ms-user-select: none;
|
|
3922
|
-
user-select: none;
|
|
3923
|
-
word-break: break-all;
|
|
3924
|
-
}
|
|
3925
|
-
.jodit-filebrowser__files.jodit-filebrowser_active a + .jodit-filebrowser__source-title {
|
|
3926
|
-
margin-top: 8px;
|
|
3927
|
-
}
|
|
3928
|
-
.jodit-filebrowser__files.jodit-filebrowser_active .jodit-filebrowser__files-item {
|
|
3929
|
-
position: relative;
|
|
3930
|
-
display: -webkit-box;
|
|
3931
|
-
display: -ms-flexbox;
|
|
3932
|
-
display: flex;
|
|
3933
|
-
overflow: hidden;
|
|
3934
|
-
width: 150px;
|
|
3935
|
-
height: 150px;
|
|
3936
|
-
-webkit-box-align: center;
|
|
3937
|
-
-ms-flex-align: center;
|
|
3938
|
-
align-items: center;
|
|
3939
|
-
-webkit-box-pack: center;
|
|
3940
|
-
-ms-flex-pack: center;
|
|
3941
|
-
justify-content: center;
|
|
3942
|
-
border: 1px solid #dadada;
|
|
3943
|
-
margin: calc(8px / 2);
|
|
3944
|
-
font-size: 0;
|
|
3945
|
-
text-align: center;
|
|
3946
|
-
-webkit-transition: border 0.1s linear, bottom 0.1s linear;
|
|
3947
|
-
-o-transition: border 0.1s linear, bottom 0.1s linear;
|
|
3948
|
-
transition: border 0.1s linear, bottom 0.1s linear;
|
|
3949
|
-
}
|
|
3950
|
-
@media (max-width: 480px) {
|
|
3951
|
-
.jodit-filebrowser__files.jodit-filebrowser_active .jodit-filebrowser__files-item {
|
|
3952
|
-
width: calc(50% - 8px);
|
|
3953
|
-
}
|
|
3954
|
-
}
|
|
3955
|
-
.jodit-filebrowser__files.jodit-filebrowser_active .jodit-filebrowser__files-item img {
|
|
3956
|
-
max-width: 100%;
|
|
3957
|
-
}
|
|
3958
|
-
.jodit-filebrowser__files.jodit-filebrowser_active .jodit-filebrowser__files-item:hover {
|
|
3959
|
-
border-color: #433b5c;
|
|
3960
|
-
}
|
|
3961
|
-
.jodit-filebrowser__files.jodit-filebrowser_active .jodit-filebrowser__files-item_active_true {
|
|
3962
|
-
border-color: #1e88e5;
|
|
3963
|
-
background-color: #b5b5b5;
|
|
3964
|
-
}
|
|
3965
|
-
.jodit-filebrowser__files.jodit-filebrowser_active .jodit-filebrowser__files-item_active_true .jodit-filebrowser__files-item-info {
|
|
3966
|
-
background-color: #b5b5b5;
|
|
3967
|
-
color: white;
|
|
3968
|
-
text-shadow: none;
|
|
3969
|
-
}
|
|
3970
|
-
.jodit-filebrowser__files.jodit-filebrowser_active .jodit-filebrowser__files-item-info {
|
|
3971
|
-
position: absolute;
|
|
3972
|
-
right: 0;
|
|
3973
|
-
bottom: 0;
|
|
3974
|
-
left: 0;
|
|
3975
|
-
overflow: visible;
|
|
3976
|
-
padding: 0.3em 0.6em;
|
|
3977
|
-
background-color: #e9e9e9;
|
|
3978
|
-
color: #333333;
|
|
3979
|
-
font-size: 14px;
|
|
3980
|
-
line-height: 16px;
|
|
3981
|
-
opacity: 0.85;
|
|
3982
|
-
text-align: left;
|
|
3983
|
-
text-shadow: #eeeeee 0 1px 0;
|
|
3984
|
-
-webkit-transition: opacity 400ms ease;
|
|
3985
|
-
-o-transition: opacity 400ms ease;
|
|
3986
|
-
transition: opacity 400ms ease;
|
|
3987
|
-
white-space: normal;
|
|
3988
|
-
}
|
|
3989
|
-
.jodit-filebrowser__files.jodit-filebrowser_active .jodit-filebrowser__files-item-info > span {
|
|
3990
|
-
display: block;
|
|
3991
|
-
overflow: hidden;
|
|
3992
|
-
font-size: 0.75em;
|
|
3993
|
-
-o-text-overflow: ellipsis;
|
|
3994
|
-
text-overflow: ellipsis;
|
|
3995
|
-
white-space: nowrap;
|
|
3996
|
-
}
|
|
3997
|
-
.jodit-filebrowser__files.jodit-filebrowser_active .jodit-filebrowser__files-item-info > span.jodit-filebrowser__files-item-info-filename {
|
|
3998
|
-
font-size: 0.9em;
|
|
3999
|
-
font-weight: bold;
|
|
4000
|
-
}
|
|
4001
|
-
.jodit-filebrowser__files.jodit-filebrowser_active .jodit-filebrowser__files-item:hover:not(.jodit-filebrowser__files-item_active_true) .jodit-filebrowser__files-item-info {
|
|
4002
|
-
bottom: -100px;
|
|
4003
|
-
}
|
|
4004
|
-
.jodit-filebrowser__files.jodit-filebrowser_active.jodit-filebrowser__files_view_list {
|
|
4005
|
-
scroll-behavior: smooth;
|
|
4006
|
-
}
|
|
4007
|
-
.jodit-filebrowser__files.jodit-filebrowser_active.jodit-filebrowser__files_view_list a {
|
|
4008
|
-
display: block;
|
|
4009
|
-
width: 100%;
|
|
4010
|
-
height: 26px;
|
|
4011
|
-
border-width: 0 0 1px 0;
|
|
4012
|
-
margin: 0;
|
|
4013
|
-
line-height: 26px;
|
|
4014
|
-
text-align: left;
|
|
4015
|
-
white-space: nowrap;
|
|
4016
|
-
}
|
|
4017
|
-
.jodit-filebrowser__files.jodit-filebrowser_active.jodit-filebrowser__files_view_list a img {
|
|
4018
|
-
display: inline-block;
|
|
4019
|
-
min-width: 16px;
|
|
4020
|
-
max-width: 16px;
|
|
4021
|
-
margin-left: 4px;
|
|
4022
|
-
vertical-align: middle;
|
|
4023
|
-
}
|
|
4024
|
-
.jodit-filebrowser__files.jodit-filebrowser_active.jodit-filebrowser__files_view_list a .jodit-filebrowser__files-item-info {
|
|
4025
|
-
position: static;
|
|
4026
|
-
display: inline-block;
|
|
4027
|
-
width: calc(100% - 20px);
|
|
4028
|
-
height: 100%;
|
|
4029
|
-
padding: 0;
|
|
4030
|
-
margin-left: 4px;
|
|
4031
|
-
background-color: transparent;
|
|
4032
|
-
font-size: 0;
|
|
4033
|
-
line-height: inherit;
|
|
4034
|
-
vertical-align: middle;
|
|
4035
|
-
}
|
|
4036
|
-
.jodit-filebrowser__files.jodit-filebrowser_active.jodit-filebrowser__files_view_list a .jodit-filebrowser__files-item-info > span {
|
|
4037
|
-
display: inline-block;
|
|
4038
|
-
height: 100%;
|
|
4039
|
-
font-size: 12px;
|
|
4040
|
-
}
|
|
4041
|
-
.jodit-filebrowser__files.jodit-filebrowser_active.jodit-filebrowser__files_view_list a .jodit-filebrowser__files-item-info > span.jodit-filebrowser__files-item-info-filename {
|
|
4042
|
-
width: 50%;
|
|
4043
|
-
}
|
|
4044
|
-
.jodit-filebrowser__files.jodit-filebrowser_active.jodit-filebrowser__files_view_list a .jodit-filebrowser__files-item-info > span.jodit-filebrowser__files-item-info-filesize {
|
|
4045
|
-
width: 25%;
|
|
4046
|
-
}
|
|
4047
|
-
.jodit-filebrowser__files.jodit-filebrowser_active.jodit-filebrowser__files_view_list a .jodit-filebrowser__files-item-info > span.jodit-filebrowser__files-item-info-filechanged {
|
|
4048
|
-
width: 25%;
|
|
4049
|
-
}
|
|
4050
|
-
.jodit-filebrowser__files.jodit-filebrowser_active.jodit-filebrowser__files_view_list a:hover {
|
|
4051
|
-
background-color: #433b5c;
|
|
4052
|
-
}
|
|
4053
|
-
.jodit-filebrowser__files.jodit-filebrowser_active.jodit-filebrowser__files_view_list a:hover .jodit-filebrowser__files-item-info {
|
|
4054
|
-
color: #fff;
|
|
4055
|
-
text-shadow: none;
|
|
4056
|
-
}
|
|
4057
|
-
.jodit-filebrowser__files.jodit-filebrowser_active.jodit-filebrowser__files_view_list a::before {
|
|
4058
|
-
display: inline-block;
|
|
4059
|
-
height: 100%;
|
|
4060
|
-
content: '';
|
|
4061
|
-
vertical-align: middle;
|
|
4062
|
-
}
|
|
4063
|
-
.jodit_draghover {
|
|
4064
|
-
background-color: #ecebe9;
|
|
4065
|
-
}
|
|
4066
|
-
.jodit-dialog .jodit-dialog__header-title.jodit-filebrowser__title-box {
|
|
4067
|
-
display: -webkit-box;
|
|
4068
|
-
display: -ms-flexbox;
|
|
4069
|
-
display: flex;
|
|
4070
|
-
-webkit-box-align: center;
|
|
4071
|
-
-ms-flex-align: center;
|
|
4072
|
-
align-items: center;
|
|
4073
|
-
padding-left: 8px;
|
|
4074
|
-
}
|
|
4075
|
-
/*!
|
|
4076
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4077
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4078
|
-
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4079
|
-
*/
|
|
4080
|
-
.jodit-filebrowser_preview {
|
|
4081
|
-
position: relative;
|
|
4082
|
-
display: -webkit-box;
|
|
4083
|
-
display: -ms-flexbox;
|
|
4084
|
-
display: flex;
|
|
4085
|
-
min-width: 600px;
|
|
4086
|
-
max-width: 1000px;
|
|
4087
|
-
min-height: 700px;
|
|
4088
|
-
max-height: 100%;
|
|
4089
|
-
-webkit-box-align: center;
|
|
4090
|
-
-ms-flex-align: center;
|
|
4091
|
-
align-items: center;
|
|
4092
|
-
-webkit-box-pack: center;
|
|
4093
|
-
-ms-flex-pack: center;
|
|
4094
|
-
justify-content: center;
|
|
4095
|
-
text-align: center;
|
|
4096
|
-
}
|
|
4097
|
-
@media (max-width: 768px) {
|
|
4098
|
-
.jodit-filebrowser_preview {
|
|
4099
|
-
min-width: auto;
|
|
4100
|
-
max-width: 100%;
|
|
4101
|
-
height: 100%;
|
|
4102
|
-
min-height: auto;
|
|
4103
|
-
max-height: 100%;
|
|
4104
|
-
}
|
|
4105
|
-
}
|
|
4106
|
-
.jodit-filebrowser_preview_box {
|
|
4107
|
-
display: -webkit-box;
|
|
4108
|
-
display: -ms-flexbox;
|
|
4109
|
-
display: flex;
|
|
4110
|
-
-webkit-box-flex: 1;
|
|
4111
|
-
-ms-flex-positive: 1;
|
|
4112
|
-
flex-grow: 1;
|
|
4113
|
-
-webkit-box-align: center;
|
|
4114
|
-
-ms-flex-align: center;
|
|
4115
|
-
align-items: center;
|
|
4116
|
-
-webkit-box-pack: center;
|
|
4117
|
-
-ms-flex-pack: center;
|
|
4118
|
-
justify-content: center;
|
|
4119
|
-
}
|
|
4120
|
-
.jodit-filebrowser_preview_navigation {
|
|
4121
|
-
position: absolute;
|
|
4122
|
-
top: 0;
|
|
4123
|
-
left: 0;
|
|
4124
|
-
height: 100%;
|
|
4125
|
-
}
|
|
4126
|
-
.jodit-filebrowser_preview_navigation-next {
|
|
4127
|
-
right: 0;
|
|
4128
|
-
left: auto;
|
|
4129
|
-
}
|
|
4130
|
-
.jodit-filebrowser_preview_navigation svg {
|
|
4131
|
-
position: relative;
|
|
4132
|
-
top: 50%;
|
|
4133
|
-
width: 45px;
|
|
4134
|
-
height: 45px;
|
|
4135
|
-
margin-top: -22px;
|
|
4136
|
-
fill: #9e9ba7;
|
|
4137
|
-
-webkit-transition: fill 0.3s linear;
|
|
4138
|
-
-o-transition: fill 0.3s linear;
|
|
4139
|
-
transition: fill 0.3s linear;
|
|
4140
|
-
}
|
|
4141
|
-
.jodit-filebrowser_preview_navigation:hover svg {
|
|
4142
|
-
fill: #000;
|
|
4143
|
-
}
|
|
4144
|
-
.jodit-filebrowser_preview img {
|
|
4145
|
-
max-width: 100%;
|
|
4146
|
-
max-height: 100%;
|
|
4147
|
-
}
|
|
4148
|
-
|
|
4149
|
-
/*!
|
|
4150
|
-
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4151
|
-
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4152
|
-
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
4153
|
-
*/
|
|
4154
|
-
.jodit-image-editor {
|
|
4155
|
-
overflow: hidden;
|
|
4156
|
-
width: 100%;
|
|
4157
|
-
height: 100%;
|
|
3963
|
+
|
|
3964
|
+
/*!
|
|
3965
|
+
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
3966
|
+
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
3967
|
+
* Copyright (c) 2013-2021 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
3968
|
+
*/
|
|
3969
|
+
.jodit-image-editor {
|
|
3970
|
+
overflow: hidden;
|
|
3971
|
+
width: 100%;
|
|
3972
|
+
height: 100%;
|
|
4158
3973
|
padding: 8px;
|
|
4159
3974
|
}
|
|
4160
3975
|
@media (max-width: 768px) {
|
|
@@ -4371,6 +4186,305 @@ svg.jodit-icon {
|
|
|
4371
4186
|
justify-content: center;
|
|
4372
4187
|
}
|
|
4373
4188
|
|
|
4189
|
+
.jodit-filebrowser-files {
|
|
4190
|
+
position: relative;
|
|
4191
|
+
display: none;
|
|
4192
|
+
height: 100%;
|
|
4193
|
+
vertical-align: top;
|
|
4194
|
+
overflow-anchor: auto;
|
|
4195
|
+
}
|
|
4196
|
+
.jodit-filebrowser-files .jodit-button {
|
|
4197
|
+
border-radius: 0;
|
|
4198
|
+
}
|
|
4199
|
+
.jodit-filebrowser-files_active_true {
|
|
4200
|
+
display: -webkit-box;
|
|
4201
|
+
display: -ms-flexbox;
|
|
4202
|
+
display: flex;
|
|
4203
|
+
}
|
|
4204
|
+
.jodit-filebrowser-files::-webkit-scrollbar {
|
|
4205
|
+
width: calc(8px / 2);
|
|
4206
|
+
}
|
|
4207
|
+
.jodit-filebrowser-files::-webkit-scrollbar-track {
|
|
4208
|
+
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
|
4209
|
+
}
|
|
4210
|
+
.jodit-filebrowser-files::-webkit-scrollbar-thumb {
|
|
4211
|
+
background-color: darkgrey;
|
|
4212
|
+
outline: 1px solid slategrey;
|
|
4213
|
+
}
|
|
4214
|
+
.jodit-filebrowser-files_active_true {
|
|
4215
|
+
width: 100%;
|
|
4216
|
+
-ms-flex-wrap: wrap;
|
|
4217
|
+
flex-wrap: wrap;
|
|
4218
|
+
-ms-flex-line-pack: start;
|
|
4219
|
+
align-content: flex-start;
|
|
4220
|
+
padding: calc(8px / 2);
|
|
4221
|
+
overflow-y: auto;
|
|
4222
|
+
}
|
|
4223
|
+
.jodit-filebrowser-files__item {
|
|
4224
|
+
position: relative;
|
|
4225
|
+
display: -webkit-box;
|
|
4226
|
+
display: -ms-flexbox;
|
|
4227
|
+
display: flex;
|
|
4228
|
+
overflow: hidden;
|
|
4229
|
+
width: 150px;
|
|
4230
|
+
height: 150px;
|
|
4231
|
+
-webkit-box-align: center;
|
|
4232
|
+
-ms-flex-align: center;
|
|
4233
|
+
align-items: center;
|
|
4234
|
+
-webkit-box-pack: center;
|
|
4235
|
+
-ms-flex-pack: center;
|
|
4236
|
+
justify-content: center;
|
|
4237
|
+
border: 1px solid #dadada;
|
|
4238
|
+
margin: calc(8px / 2);
|
|
4239
|
+
font-size: 0;
|
|
4240
|
+
text-align: center;
|
|
4241
|
+
-webkit-transition: border 0.1s linear, bottom 0.1s linear;
|
|
4242
|
+
-o-transition: border 0.1s linear, bottom 0.1s linear;
|
|
4243
|
+
transition: border 0.1s linear, bottom 0.1s linear;
|
|
4244
|
+
}
|
|
4245
|
+
@media (max-width: 480px) {
|
|
4246
|
+
.jodit-filebrowser-files__item {
|
|
4247
|
+
width: calc(50% - 8px);
|
|
4248
|
+
}
|
|
4249
|
+
}
|
|
4250
|
+
.jodit-filebrowser-files__item img {
|
|
4251
|
+
max-width: 100%;
|
|
4252
|
+
}
|
|
4253
|
+
.jodit-filebrowser-files__item:hover {
|
|
4254
|
+
border-color: #433b5c;
|
|
4255
|
+
}
|
|
4256
|
+
.jodit-filebrowser-files__item_active_true {
|
|
4257
|
+
border-color: #1e88e5;
|
|
4258
|
+
background-color: #b5b5b5;
|
|
4259
|
+
}
|
|
4260
|
+
.jodit-filebrowser-files__item_active_true .jodit-filebrowser-files__item-info {
|
|
4261
|
+
background-color: #b5b5b5;
|
|
4262
|
+
color: white;
|
|
4263
|
+
text-shadow: none;
|
|
4264
|
+
}
|
|
4265
|
+
.jodit-filebrowser-files__item-info {
|
|
4266
|
+
position: absolute;
|
|
4267
|
+
right: 0;
|
|
4268
|
+
bottom: 0;
|
|
4269
|
+
left: 0;
|
|
4270
|
+
overflow: visible;
|
|
4271
|
+
padding: 0.3em 0.6em;
|
|
4272
|
+
background-color: #e9e9e9;
|
|
4273
|
+
color: #333333;
|
|
4274
|
+
font-size: 14px;
|
|
4275
|
+
line-height: 16px;
|
|
4276
|
+
opacity: 0.85;
|
|
4277
|
+
text-align: left;
|
|
4278
|
+
text-shadow: #eeeeee 0 1px 0;
|
|
4279
|
+
-webkit-transition: opacity 400ms ease;
|
|
4280
|
+
-o-transition: opacity 400ms ease;
|
|
4281
|
+
transition: opacity 400ms ease;
|
|
4282
|
+
white-space: normal;
|
|
4283
|
+
}
|
|
4284
|
+
.jodit-filebrowser-files__item-info > span {
|
|
4285
|
+
display: block;
|
|
4286
|
+
overflow: hidden;
|
|
4287
|
+
font-size: 0.75em;
|
|
4288
|
+
-o-text-overflow: ellipsis;
|
|
4289
|
+
text-overflow: ellipsis;
|
|
4290
|
+
white-space: nowrap;
|
|
4291
|
+
}
|
|
4292
|
+
.jodit-filebrowser-files__item-info > span.jodit-filebrowser-files__item-info-filename {
|
|
4293
|
+
font-size: 0.9em;
|
|
4294
|
+
font-weight: bold;
|
|
4295
|
+
}
|
|
4296
|
+
.jodit-filebrowser-files__item:hover:not(.jodit-filebrowser-files__item_active_true) .jodit-filebrowser-files__item-info {
|
|
4297
|
+
bottom: -100px;
|
|
4298
|
+
}
|
|
4299
|
+
.jodit-filebrowser-files_view_list {
|
|
4300
|
+
scroll-behavior: smooth;
|
|
4301
|
+
}
|
|
4302
|
+
.jodit-filebrowser-files_view_list a {
|
|
4303
|
+
display: block;
|
|
4304
|
+
width: 100%;
|
|
4305
|
+
height: 26px;
|
|
4306
|
+
border-width: 0 0 1px 0;
|
|
4307
|
+
margin: 0;
|
|
4308
|
+
line-height: 26px;
|
|
4309
|
+
text-align: left;
|
|
4310
|
+
white-space: nowrap;
|
|
4311
|
+
}
|
|
4312
|
+
.jodit-filebrowser-files_view_list a img {
|
|
4313
|
+
display: inline-block;
|
|
4314
|
+
min-width: 16px;
|
|
4315
|
+
max-width: 16px;
|
|
4316
|
+
margin-left: 4px;
|
|
4317
|
+
vertical-align: middle;
|
|
4318
|
+
}
|
|
4319
|
+
.jodit-filebrowser-files_view_list a .jodit-filebrowser-files__item-info {
|
|
4320
|
+
position: static;
|
|
4321
|
+
display: inline-block;
|
|
4322
|
+
width: calc(100% - 20px);
|
|
4323
|
+
height: 100%;
|
|
4324
|
+
padding: 0;
|
|
4325
|
+
margin-left: 4px;
|
|
4326
|
+
background-color: transparent;
|
|
4327
|
+
font-size: 0;
|
|
4328
|
+
line-height: inherit;
|
|
4329
|
+
vertical-align: middle;
|
|
4330
|
+
}
|
|
4331
|
+
.jodit-filebrowser-files_view_list a .jodit-filebrowser-files__item-info > span {
|
|
4332
|
+
display: inline-block;
|
|
4333
|
+
height: 100%;
|
|
4334
|
+
font-size: 12px;
|
|
4335
|
+
}
|
|
4336
|
+
.jodit-filebrowser-files_view_list a .jodit-filebrowser-files__item-info-filename {
|
|
4337
|
+
width: 50%;
|
|
4338
|
+
}
|
|
4339
|
+
.jodit-filebrowser-files_view_list a .jodit-filebrowser-files__item-info-filesize {
|
|
4340
|
+
width: 25%;
|
|
4341
|
+
}
|
|
4342
|
+
.jodit-filebrowser-files_view_list a .jodit-filebrowser-files__item-info-filechanged {
|
|
4343
|
+
width: 25%;
|
|
4344
|
+
}
|
|
4345
|
+
.jodit-filebrowser-files_view_list a:hover {
|
|
4346
|
+
background-color: #433b5c;
|
|
4347
|
+
}
|
|
4348
|
+
.jodit-filebrowser-files_view_list a:hover .jodit-filebrowser-files__item-info {
|
|
4349
|
+
color: #fff;
|
|
4350
|
+
text-shadow: none;
|
|
4351
|
+
}
|
|
4352
|
+
.jodit-filebrowser-files_view_list a::before {
|
|
4353
|
+
display: inline-block;
|
|
4354
|
+
height: 100%;
|
|
4355
|
+
content: '';
|
|
4356
|
+
vertical-align: middle;
|
|
4357
|
+
}
|
|
4358
|
+
|
|
4359
|
+
.jodit-filebrowser-tree {
|
|
4360
|
+
position: relative;
|
|
4361
|
+
display: none;
|
|
4362
|
+
height: 100%;
|
|
4363
|
+
vertical-align: top;
|
|
4364
|
+
overflow-anchor: auto;
|
|
4365
|
+
}
|
|
4366
|
+
.jodit-filebrowser-tree .jodit-button {
|
|
4367
|
+
border-radius: 0;
|
|
4368
|
+
}
|
|
4369
|
+
.jodit-filebrowser-tree_active_true {
|
|
4370
|
+
display: -webkit-box;
|
|
4371
|
+
display: -ms-flexbox;
|
|
4372
|
+
display: flex;
|
|
4373
|
+
}
|
|
4374
|
+
.jodit-filebrowser-tree::-webkit-scrollbar {
|
|
4375
|
+
width: calc(8px / 2);
|
|
4376
|
+
}
|
|
4377
|
+
.jodit-filebrowser-tree::-webkit-scrollbar-track {
|
|
4378
|
+
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
|
4379
|
+
}
|
|
4380
|
+
.jodit-filebrowser-tree::-webkit-scrollbar-thumb {
|
|
4381
|
+
background-color: darkgrey;
|
|
4382
|
+
outline: 1px solid slategrey;
|
|
4383
|
+
}
|
|
4384
|
+
.jodit-filebrowser-tree_active_true {
|
|
4385
|
+
z-index: 2;
|
|
4386
|
+
width: 31%;
|
|
4387
|
+
min-width: 200px;
|
|
4388
|
+
max-width: 290px;
|
|
4389
|
+
-webkit-box-orient: vertical;
|
|
4390
|
+
-webkit-box-direction: normal;
|
|
4391
|
+
-ms-flex-direction: column;
|
|
4392
|
+
flex-direction: column;
|
|
4393
|
+
background-color: #3f3f3f;
|
|
4394
|
+
overflow-y: auto;
|
|
4395
|
+
}
|
|
4396
|
+
@media (max-width: 480px) {
|
|
4397
|
+
.jodit-filebrowser-tree_active_true {
|
|
4398
|
+
width: auto;
|
|
4399
|
+
max-width: 100%;
|
|
4400
|
+
height: 100px;
|
|
4401
|
+
}
|
|
4402
|
+
}
|
|
4403
|
+
.jodit-filebrowser-tree_active_true::-webkit-scrollbar {
|
|
4404
|
+
width: calc(8px / 2);
|
|
4405
|
+
}
|
|
4406
|
+
.jodit-filebrowser-tree_active_true::-webkit-scrollbar-track {
|
|
4407
|
+
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
|
4408
|
+
}
|
|
4409
|
+
.jodit-filebrowser-tree_active_true::-webkit-scrollbar-thumb {
|
|
4410
|
+
background-color: rgba(127, 127, 127, 0.5);
|
|
4411
|
+
outline: 1px solid slategrey;
|
|
4412
|
+
}
|
|
4413
|
+
.jodit-filebrowser-tree__item {
|
|
4414
|
+
position: relative;
|
|
4415
|
+
display: -webkit-box;
|
|
4416
|
+
display: -ms-flexbox;
|
|
4417
|
+
display: flex;
|
|
4418
|
+
min-height: 38px;
|
|
4419
|
+
-webkit-box-align: center;
|
|
4420
|
+
-ms-flex-align: center;
|
|
4421
|
+
align-items: center;
|
|
4422
|
+
-webkit-box-pack: justify;
|
|
4423
|
+
-ms-flex-pack: justify;
|
|
4424
|
+
justify-content: space-between;
|
|
4425
|
+
padding: calc(8px / 2) 8px;
|
|
4426
|
+
border-bottom: 1px solid #474747;
|
|
4427
|
+
color: undefined;
|
|
4428
|
+
text-decoration: none;
|
|
4429
|
+
-webkit-transition: background-color 0.2s ease 0s;
|
|
4430
|
+
-o-transition: background-color 0.2s ease 0s;
|
|
4431
|
+
transition: background-color 0.2s ease 0s;
|
|
4432
|
+
word-break: break-all;
|
|
4433
|
+
}
|
|
4434
|
+
.jodit-filebrowser-tree__item-title {
|
|
4435
|
+
-webkit-box-flex: 1;
|
|
4436
|
+
-ms-flex: 1;
|
|
4437
|
+
flex: 1;
|
|
4438
|
+
}
|
|
4439
|
+
.jodit-filebrowser-tree__item .jodit-icon_folder {
|
|
4440
|
+
display: -webkit-box;
|
|
4441
|
+
display: -ms-flexbox;
|
|
4442
|
+
display: flex;
|
|
4443
|
+
width: calc(12px + 4px);
|
|
4444
|
+
height: calc(12px + 4px);
|
|
4445
|
+
-webkit-box-align: center;
|
|
4446
|
+
-ms-flex-align: center;
|
|
4447
|
+
align-items: center;
|
|
4448
|
+
-webkit-box-pack: center;
|
|
4449
|
+
-ms-flex-pack: center;
|
|
4450
|
+
justify-content: center;
|
|
4451
|
+
margin-left: calc(8px / 2);
|
|
4452
|
+
opacity: 0.3;
|
|
4453
|
+
}
|
|
4454
|
+
.jodit-filebrowser-tree__item .jodit-icon_folder svg {
|
|
4455
|
+
width: 12px;
|
|
4456
|
+
height: 12px;
|
|
4457
|
+
fill: undefined !important;
|
|
4458
|
+
stroke: undefined !important;
|
|
4459
|
+
}
|
|
4460
|
+
.jodit-filebrowser-tree__item .jodit-icon_folder:hover {
|
|
4461
|
+
background: #696969;
|
|
4462
|
+
}
|
|
4463
|
+
.jodit-filebrowser-tree__item:hover {
|
|
4464
|
+
background-color: #ecebe9;
|
|
4465
|
+
color: #222;
|
|
4466
|
+
}
|
|
4467
|
+
.jodit-filebrowser-tree__item:hover i.jodit-icon_folder {
|
|
4468
|
+
opacity: 0.6;
|
|
4469
|
+
}
|
|
4470
|
+
.jodit-filebrowser-tree__source-title {
|
|
4471
|
+
position: relative;
|
|
4472
|
+
display: block;
|
|
4473
|
+
padding: 2px 4px;
|
|
4474
|
+
border-bottom: 1px solid #484848;
|
|
4475
|
+
background: #5a5a5a;
|
|
4476
|
+
color: #969696;
|
|
4477
|
+
font-size: 12px;
|
|
4478
|
+
-webkit-user-select: none;
|
|
4479
|
+
-moz-user-select: none;
|
|
4480
|
+
-ms-user-select: none;
|
|
4481
|
+
user-select: none;
|
|
4482
|
+
word-break: break-all;
|
|
4483
|
+
}
|
|
4484
|
+
a + .jodit-filebrowser-tree__source-title {
|
|
4485
|
+
margin-top: 8px;
|
|
4486
|
+
}
|
|
4487
|
+
|
|
4374
4488
|
/*!
|
|
4375
4489
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
4376
4490
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -4381,6 +4495,7 @@ svg.jodit-icon {
|
|
|
4381
4495
|
display: -ms-flexbox;
|
|
4382
4496
|
display: flex;
|
|
4383
4497
|
overflow: hidden;
|
|
4498
|
+
height: 20px;
|
|
4384
4499
|
-webkit-box-align: center;
|
|
4385
4500
|
-ms-flex-align: center;
|
|
4386
4501
|
align-items: center;
|
|
@@ -4390,7 +4505,12 @@ svg.jodit-icon {
|
|
|
4390
4505
|
padding: 0 calc(8px / 2);
|
|
4391
4506
|
background-color: #f9f9f9;
|
|
4392
4507
|
border-radius: 0 0 3px 3px;
|
|
4508
|
+
color: rgba(0, 0, 0, 0.75);
|
|
4393
4509
|
font-size: 11px;
|
|
4510
|
+
text-transform: uppercase;
|
|
4511
|
+
}
|
|
4512
|
+
.jodit-status-bar_resize-handle_true {
|
|
4513
|
+
padding-right: 14px;
|
|
4394
4514
|
}
|
|
4395
4515
|
.jodit-status-bar::before {
|
|
4396
4516
|
-webkit-box-flex: 1;
|
|
@@ -4434,9 +4554,26 @@ svg.jodit-icon {
|
|
|
4434
4554
|
}
|
|
4435
4555
|
.jodit-status-bar .jodit-status-bar__item a:hover {
|
|
4436
4556
|
background-color: #dadada;
|
|
4437
|
-
color: #222222;
|
|
4438
4557
|
text-decoration: none;
|
|
4439
4558
|
}
|
|
4559
|
+
.jodit-status-bar a.jodit-status-bar-link {
|
|
4560
|
+
cursor: pointer;
|
|
4561
|
+
}
|
|
4562
|
+
.jodit-status-bar a.jodit-status-bar-link {
|
|
4563
|
+
background-color: transparent;
|
|
4564
|
+
color: rgba(0, 0, 0, 0.75);
|
|
4565
|
+
}
|
|
4566
|
+
.jodit-status-bar a.jodit-status-bar-link:hover {
|
|
4567
|
+
background-color: transparent;
|
|
4568
|
+
color: rgba(0, 0, 0, 0.75);
|
|
4569
|
+
}
|
|
4570
|
+
.jodit-status-bar a.jodit-status-bar-link:visited {
|
|
4571
|
+
background-color: transparent;
|
|
4572
|
+
color: rgba(0, 0, 0, 0.75);
|
|
4573
|
+
}
|
|
4574
|
+
.jodit-status-bar a.jodit-status-bar-link:hover {
|
|
4575
|
+
text-decoration: underline;
|
|
4576
|
+
}
|
|
4440
4577
|
.jodit-workplace + .jodit-status-bar:not(:empty) {
|
|
4441
4578
|
border-top: 1px solid #dadada;
|
|
4442
4579
|
}
|
|
@@ -4714,6 +4851,7 @@ svg.jodit-icon {
|
|
|
4714
4851
|
}
|
|
4715
4852
|
.jodit-tabs .jodit-tabs__buttons > * {
|
|
4716
4853
|
margin-left: calc(8px / 2);
|
|
4854
|
+
cursor: pointer;
|
|
4717
4855
|
}
|
|
4718
4856
|
.jodit-tabs .jodit-tabs__buttons > *:only-of-type {
|
|
4719
4857
|
width: 100%;
|
|
@@ -4734,7 +4872,7 @@ svg.jodit-icon {
|
|
|
4734
4872
|
min-width: 80px;
|
|
4735
4873
|
}
|
|
4736
4874
|
.jodit-tabs__button_columns_3 {
|
|
4737
|
-
width: 100% / 3;
|
|
4875
|
+
width: calc(100% / 3);
|
|
4738
4876
|
}
|
|
4739
4877
|
.jodit-tabs__button_columns_2 {
|
|
4740
4878
|
width: 50%;
|
|
@@ -4954,8 +5092,10 @@ html.jodit_fullsize-box_true {
|
|
|
4954
5092
|
left: 0;
|
|
4955
5093
|
width: 100px;
|
|
4956
5094
|
height: 100px;
|
|
4957
|
-
|
|
5095
|
+
-webkit-box-sizing: border-box;
|
|
5096
|
+
box-sizing: border-box;
|
|
4958
5097
|
font-size: 0;
|
|
5098
|
+
outline: 3px solid #98c1f1;
|
|
4959
5099
|
pointer-events: none;
|
|
4960
5100
|
}
|
|
4961
5101
|
.jodit-resizer * {
|
|
@@ -4982,37 +5122,36 @@ html.jodit_fullsize-box_true {
|
|
|
4982
5122
|
-o-transition: opacity 0.2s linear;
|
|
4983
5123
|
transition: opacity 0.2s linear;
|
|
4984
5124
|
}
|
|
4985
|
-
.jodit-resizer >
|
|
5125
|
+
.jodit-resizer > div {
|
|
4986
5126
|
position: absolute;
|
|
4987
5127
|
z-index: 4;
|
|
4988
5128
|
display: inline-block;
|
|
4989
|
-
width:
|
|
4990
|
-
height:
|
|
4991
|
-
|
|
4992
|
-
background-color: #dadada;
|
|
5129
|
+
width: 10px;
|
|
5130
|
+
height: 10px;
|
|
5131
|
+
background-color: #5ba4f3;
|
|
4993
5132
|
pointer-events: all;
|
|
4994
5133
|
}
|
|
4995
|
-
.jodit-resizer >
|
|
4996
|
-
background-color: #
|
|
5134
|
+
.jodit-resizer > div:hover {
|
|
5135
|
+
background-color: #537ebb;
|
|
4997
5136
|
}
|
|
4998
|
-
.jodit-resizer >
|
|
4999
|
-
top: calc(
|
|
5000
|
-
left: calc(
|
|
5137
|
+
.jodit-resizer > div:nth-child(1) {
|
|
5138
|
+
top: calc(10px / -2);
|
|
5139
|
+
left: calc(10px / -2);
|
|
5001
5140
|
cursor: nw-resize;
|
|
5002
5141
|
}
|
|
5003
|
-
.jodit-resizer >
|
|
5004
|
-
top: calc(
|
|
5005
|
-
right: calc(
|
|
5142
|
+
.jodit-resizer > div:nth-child(2) {
|
|
5143
|
+
top: calc(10px / -2);
|
|
5144
|
+
right: calc(10px / -2);
|
|
5006
5145
|
cursor: ne-resize;
|
|
5007
5146
|
}
|
|
5008
|
-
.jodit-resizer >
|
|
5009
|
-
right: calc(
|
|
5010
|
-
bottom: calc(
|
|
5147
|
+
.jodit-resizer > div:nth-child(3) {
|
|
5148
|
+
right: calc(10px / -2);
|
|
5149
|
+
bottom: calc(10px / -2);
|
|
5011
5150
|
cursor: se-resize;
|
|
5012
5151
|
}
|
|
5013
|
-
.jodit-resizer >
|
|
5014
|
-
bottom: calc(
|
|
5015
|
-
left: calc(
|
|
5152
|
+
.jodit-resizer > div:nth-child(4) {
|
|
5153
|
+
bottom: calc(10px / -2);
|
|
5154
|
+
left: calc(10px / -2);
|
|
5016
5155
|
cursor: sw-resize;
|
|
5017
5156
|
}
|
|
5018
5157
|
|
|
@@ -5188,17 +5327,15 @@ html.jodit_fullsize-box_true {
|
|
|
5188
5327
|
.jodit-container:not(.jodit_inline) .jodit-editor__resize {
|
|
5189
5328
|
position: relative;
|
|
5190
5329
|
}
|
|
5191
|
-
.jodit-container:not(.jodit_inline) .jodit-editor__resize
|
|
5330
|
+
.jodit-container:not(.jodit_inline) .jodit-editor__resize svg {
|
|
5192
5331
|
position: absolute;
|
|
5193
5332
|
right: 0;
|
|
5194
5333
|
bottom: 0;
|
|
5195
5334
|
overflow: hidden;
|
|
5196
|
-
width:
|
|
5197
|
-
height:
|
|
5198
|
-
|
|
5199
|
-
|
|
5200
|
-
border-color: rgba(0, 0, 0, 0) #dadada rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
|
|
5201
|
-
cursor: se-resize;
|
|
5335
|
+
width: 12px;
|
|
5336
|
+
height: 12px;
|
|
5337
|
+
cursor: nwse-resize;
|
|
5338
|
+
fill: #a5a5a5;
|
|
5202
5339
|
-webkit-user-select: none;
|
|
5203
5340
|
-moz-user-select: none;
|
|
5204
5341
|
-ms-user-select: none;
|