sh-view 1.7.5 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +20 -21
- package/package.json +10 -10
- package/packages/assets/css/animated.scss +167 -2
- package/packages/assets/css/loader.scss +42 -42
- package/packages/assets/css/main.scss +41 -21
- package/packages/assets/css/theme.scss +83 -44
- package/packages/components/global-components/sh-alert/index.vue +173 -0
- package/packages/components/global-components/sh-badge/index.vue +227 -0
- package/packages/components/global-components/sh-card/index.vue +140 -122
- package/packages/components/global-components/sh-code-editor/index.vue +260 -260
- package/packages/components/global-components/sh-col/css/index.scss +76 -0
- package/packages/components/global-components/sh-col/index.vue +83 -0
- package/packages/components/global-components/sh-corner/index.vue +1 -9
- package/packages/components/global-components/sh-count-to/index.vue +102 -46
- package/packages/components/global-components/sh-date/index.vue +40 -0
- package/packages/components/global-components/sh-drawer/index.vue +518 -0
- package/packages/components/global-components/sh-drawer/scrollbar.js +76 -0
- package/packages/components/global-components/sh-empty/index.vue +43 -43
- package/packages/components/global-components/{sh-vxe-form → sh-form}/css/index.scss +6 -6
- package/packages/components/global-components/{sh-vxe-form → sh-form}/index.vue +114 -115
- package/packages/components/global-components/sh-form/js/methods.js +146 -0
- package/packages/components/global-components/{sh-vxe-form → sh-form}/mixin/defaultData.js +32 -33
- package/packages/components/global-components/sh-header/index.vue +293 -269
- package/packages/components/global-components/sh-icon/css/default/fonts/ionicons.svg +870 -0
- package/packages/components/global-components/sh-icon/css/default/fonts/ionicons.ttf +0 -0
- package/packages/components/global-components/sh-icon/css/default/fonts/ionicons.woff +0 -0
- package/packages/components/global-components/sh-icon/css/default/fonts/ionicons.woff2 +0 -0
- package/packages/components/global-components/sh-icon/css/default/icons.scss +2583 -0
- package/packages/components/global-components/sh-icon/css/default/index.scss +27 -0
- package/packages/components/global-components/sh-icon/css/font/fonts/iconfont.js +1 -0
- package/packages/components/global-components/sh-icon/css/font/fonts/iconfont.json +247 -0
- package/packages/components/global-components/sh-icon/css/font/fonts/iconfont.ttf +0 -0
- package/packages/components/global-components/sh-icon/css/font/fonts/iconfont.woff +0 -0
- package/packages/components/global-components/sh-icon/css/font/fonts/iconfont.woff2 +0 -0
- package/packages/components/global-components/sh-icon/css/font/icons.scss +135 -0
- package/packages/components/global-components/sh-icon/css/font/index.scss +16 -0
- package/packages/components/global-components/sh-icon/icon-default.vue +32 -0
- package/packages/components/global-components/sh-icon/{icons.vue → icon-font.vue} +32 -32
- package/packages/components/global-components/sh-icon/index.vue +28 -27
- package/packages/components/global-components/sh-image/index.vue +123 -0
- package/packages/components/global-components/sh-list/index.vue +141 -0
- package/packages/components/global-components/sh-loading/index.vue +49 -42
- package/packages/components/global-components/{sh-vxe-modal → sh-modal}/index.vue +209 -209
- package/packages/components/global-components/sh-noticebar/index.vue +201 -201
- package/packages/components/global-components/sh-poptip/index.vue +479 -0
- package/packages/components/global-components/sh-poptip/popper.js +115 -0
- package/packages/components/global-components/sh-progress/index.vue +290 -0
- package/packages/components/global-components/sh-pull-refresh/index.vue +290 -290
- package/packages/components/global-components/{sh-vxe-query → sh-query}/index.vue +317 -286
- package/packages/components/global-components/sh-result/index.vue +110 -88
- package/packages/components/global-components/sh-row/css/index.scss +21 -0
- package/packages/components/global-components/sh-row/index.vue +63 -0
- package/packages/components/global-components/sh-split/components/trigger.vue +33 -0
- package/packages/components/global-components/sh-split/index.vue +334 -0
- package/packages/components/global-components/sh-table/components/importModal.vue +351 -0
- package/packages/components/global-components/{sh-vxe-table → sh-table}/css/index.scss +4 -22
- package/packages/components/global-components/{sh-vxe-table → sh-table}/index.vue +329 -351
- package/packages/components/global-components/{sh-vxe-table → sh-table}/js/methods.js +91 -153
- package/packages/components/global-components/{sh-vxe-table → sh-table}/js/props.js +304 -313
- package/packages/components/global-components/{sh-vxe-table → sh-table}/mixin/defaultData.js +94 -116
- package/packages/components/global-components/sh-tabs/index.vue +315 -0
- package/packages/components/global-components/sh-tag/index.vue +163 -0
- package/packages/components/global-components/{sh-vxe-toolbar → sh-toolbar}/index.vue +177 -172
- package/packages/components/global-components/sh-tree/components/table-tree.vue +280 -0
- package/packages/components/global-components/sh-tree/css/index.scss +54 -0
- package/packages/components/global-components/sh-tree/index.vue +195 -0
- package/packages/components/global-components/sh-tree/mixin/treeProps.js +124 -0
- package/packages/components/global-components/sh-upload/index.vue +278 -418
- package/packages/components/global-components/sh-upload/js/ajax.js +80 -0
- package/packages/components/global-components/sh-upload/js/mixin.js +257 -0
- package/packages/components/global-components/sh-water-fall/index.vue +87 -87
- package/packages/components/index.js +85 -59
- package/packages/components/other-components/sh-cron-modal/css/index.scss +2 -2
- package/packages/components/other-components/sh-menu-card/index.vue +224 -224
- package/packages/css/index.js +4 -6
- package/packages/directive/index.js +19 -19
- package/packages/directive/module/click-out.js +14 -0
- package/packages/directive/module/draggable.js +42 -42
- package/packages/directive/module/line-clamp.js +22 -0
- package/packages/directive/module/prevent-click.js +18 -0
- package/packages/directive/module/resize.js +19 -0
- package/packages/directive/module/ripple.js +166 -0
- package/packages/index.js +39 -40
- package/packages/utils/transfer-queue.js +12 -0
- package/packages/vxeTable/css/index.scss +12 -98
- package/packages/vxeTable/css/variable.scss +7 -265
- package/packages/vxeTable/index.js +184 -184
- package/packages/vxeTable/plugins/export.js +450 -0
- package/packages/vxeTable/render/cell/vxe-render-checkgroup.vue +36 -36
- package/packages/vxeTable/render/cell/vxe-render-goption.vue +94 -93
- package/packages/vxeTable/render/cell/vxe-render-img.vue +21 -28
- package/packages/vxeTable/render/cell/vxe-render-input.vue +51 -51
- package/packages/vxeTable/render/cell/vxe-render-progress.vue +19 -19
- package/packages/vxeTable/render/cell/vxe-render-radiogroup.vue +36 -36
- package/packages/vxeTable/render/cell/vxe-render-select.vue +36 -36
- package/packages/vxeTable/render/cell/vxe-render-tree.vue +59 -59
- package/packages/vxeTable/render/globalRenders.jsx +498 -491
- package/packages/assets/icons/demo.css +0 -539
- package/packages/assets/icons/iconfont.css +0 -415
- package/packages/assets/icons/iconfont.js +0 -1
- package/packages/assets/icons/iconfont.json +0 -709
- package/packages/assets/icons/iconfont.ttf +0 -0
- package/packages/assets/icons/iconfont.woff +0 -0
- package/packages/assets/icons/iconfont.woff2 +0 -0
- package/packages/assets/img/image-error.png +0 -0
- package/packages/assets/img/square-image.png +0 -0
- package/packages/components/global-components/sh-iv-form/components/iv-group-item.vue +0 -57
- package/packages/components/global-components/sh-iv-form/components/iv-single-item.vue +0 -76
- package/packages/components/global-components/sh-iv-form/index.vue +0 -255
- package/packages/components/global-components/sh-layout/index.vue +0 -142
- package/packages/components/global-components/sh-upload/components/u-img.vue +0 -63
- package/packages/components/global-components/sh-upload/components/u-list.vue +0 -100
- package/packages/components/global-components/sh-vxe-form/js/methods.js +0 -170
- package/packages/components/global-components/sh-vxe-list/index.vue +0 -129
- package/packages/components/global-components/sh-vxe-table/components/importModal.vue +0 -377
- package/packages/components/global-components/sh-vxe-tree/components/table-tree.vue +0 -233
- package/packages/components/global-components/sh-vxe-tree/css/index.scss +0 -20
- package/packages/components/global-components/sh-vxe-tree/index.vue +0 -85
- package/packages/components/global-components/sh-vxe-tree/js/props.js +0 -120
- package/packages/components/global-components/sh-vxe-tree/js/treeMethods.js +0 -169
- package/packages/components/global-components/sh-vxe-tree/mixin/defaultData.js +0 -54
- package/packages/components/global-components/sh-vxe-tree/vxe-direct-tree.vue +0 -203
- package/packages/components/global-components/sh-vxe-tree/vxe-select-tree.vue +0 -291
- package/packages/components/other-components/sh-markdown/tinymce/langs/ar.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/az.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/bg_BG.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/bn_BD.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ca.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/cs.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/cy.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/da.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/de.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/dv.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/el.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/eo.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/es.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/es_MX.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/et.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/eu.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/fa.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/fi.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/fr_FR.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ga.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/gl.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/he_IL.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/hi.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/hr.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/hu_HU.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/hy.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/id.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/is_IS.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/it.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ja.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/kab.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/kk.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ko_KR.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ku.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/lt.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/lv.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/nb_NO.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ne.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/nl.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/nl_BE.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/oc.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/pl.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/pt_BR.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ro.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ru.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/sk.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/sl_SI.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/sq.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/sr.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/sv_SE.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ta.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/tg.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/th_TH.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/tr.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ug.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/uk.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/vi.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/content/dark/content.css +0 -72
- package/packages/components/other-components/sh-markdown/tinymce/skins/content/dark/content.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/content/default/content.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/content/document/content.css +0 -72
- package/packages/components/other-components/sh-markdown/tinymce/skins/content/document/content.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/content/writer/content.css +0 -68
- package/packages/components/other-components/sh-markdown/tinymce/skins/content/writer/content.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/content.css +0 -714
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/content.inline.css +0 -726
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/content.inline.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/content.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/content.mobile.css +0 -29
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/content.mobile.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff +0 -0
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/skin.css +0 -3047
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/skin.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/skin.mobile.css +0 -673
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/skin.mobile.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/skin.shadowdom.css +0 -37
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +0 -7
- package/packages/directive/directives.js +0 -27
- package/packages/iview/css/index.scss +0 -32
- package/packages/iview/index.js +0 -25
- /package/packages/components/global-components/{sh-vxe-form → sh-form}/components/form-item.vue +0 -0
- /package/packages/components/global-components/{sh-vxe-form → sh-form}/js/props.js +0 -0
- /package/packages/components/global-components/{sh-vxe-table → sh-table}/js/excel_to_json.js +0 -0
package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/content.css
DELETED
|
@@ -1,714 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
|
3
|
-
* Licensed under the LGPL or a commercial license.
|
|
4
|
-
* For LGPL see License.txt in the project root for license information.
|
|
5
|
-
* For commercial licenses see https://www.tiny.cloud/
|
|
6
|
-
*/
|
|
7
|
-
.mce-content-body .mce-item-anchor {
|
|
8
|
-
background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%20fill%3D%22%23cccccc%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
|
|
9
|
-
cursor: default;
|
|
10
|
-
display: inline-block;
|
|
11
|
-
height: 12px !important;
|
|
12
|
-
padding: 0 2px;
|
|
13
|
-
-webkit-user-modify: read-only;
|
|
14
|
-
-moz-user-modify: read-only;
|
|
15
|
-
-webkit-user-select: all;
|
|
16
|
-
-moz-user-select: all;
|
|
17
|
-
-ms-user-select: all;
|
|
18
|
-
user-select: all;
|
|
19
|
-
width: 8px !important;
|
|
20
|
-
}
|
|
21
|
-
.mce-content-body .mce-item-anchor[data-mce-selected] {
|
|
22
|
-
outline-offset: 1px;
|
|
23
|
-
}
|
|
24
|
-
.tox-comments-visible .tox-comment {
|
|
25
|
-
background-color: #fff0b7;
|
|
26
|
-
}
|
|
27
|
-
.tox-comments-visible .tox-comment--active {
|
|
28
|
-
background-color: #ffe168;
|
|
29
|
-
}
|
|
30
|
-
.tox-checklist > li:not(.tox-checklist--hidden) {
|
|
31
|
-
list-style: none;
|
|
32
|
-
margin: 0.25em 0;
|
|
33
|
-
}
|
|
34
|
-
.tox-checklist > li:not(.tox-checklist--hidden)::before {
|
|
35
|
-
content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%236d737b%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
|
|
36
|
-
cursor: pointer;
|
|
37
|
-
height: 1em;
|
|
38
|
-
margin-left: -1.5em;
|
|
39
|
-
margin-top: 0.125em;
|
|
40
|
-
position: absolute;
|
|
41
|
-
width: 1em;
|
|
42
|
-
}
|
|
43
|
-
.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before {
|
|
44
|
-
content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
|
|
45
|
-
}
|
|
46
|
-
[dir=rtl] .tox-checklist > li:not(.tox-checklist--hidden)::before {
|
|
47
|
-
margin-left: 0;
|
|
48
|
-
margin-right: -1.5em;
|
|
49
|
-
}
|
|
50
|
-
/* stylelint-disable */
|
|
51
|
-
/* http://prismjs.com/ */
|
|
52
|
-
/**
|
|
53
|
-
* Dracula Theme originally by Zeno Rocha [@zenorocha]
|
|
54
|
-
* https://draculatheme.com/
|
|
55
|
-
*
|
|
56
|
-
* Ported for PrismJS by Albert Vallverdu [@byverdu]
|
|
57
|
-
*/
|
|
58
|
-
code[class*="language-"],
|
|
59
|
-
pre[class*="language-"] {
|
|
60
|
-
color: #f8f8f2;
|
|
61
|
-
background: none;
|
|
62
|
-
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
|
|
63
|
-
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
|
64
|
-
text-align: left;
|
|
65
|
-
white-space: pre;
|
|
66
|
-
word-spacing: normal;
|
|
67
|
-
word-break: normal;
|
|
68
|
-
word-wrap: normal;
|
|
69
|
-
line-height: 1.5;
|
|
70
|
-
-moz-tab-size: 4;
|
|
71
|
-
tab-size: 4;
|
|
72
|
-
-webkit-hyphens: none;
|
|
73
|
-
-ms-hyphens: none;
|
|
74
|
-
hyphens: none;
|
|
75
|
-
}
|
|
76
|
-
/* Code blocks */
|
|
77
|
-
pre[class*="language-"] {
|
|
78
|
-
padding: 1em;
|
|
79
|
-
margin: 0.5em 0;
|
|
80
|
-
overflow: auto;
|
|
81
|
-
border-radius: 0.3em;
|
|
82
|
-
}
|
|
83
|
-
:not(pre) > code[class*="language-"],
|
|
84
|
-
pre[class*="language-"] {
|
|
85
|
-
background: #282a36;
|
|
86
|
-
}
|
|
87
|
-
/* Inline code */
|
|
88
|
-
:not(pre) > code[class*="language-"] {
|
|
89
|
-
padding: 0.1em;
|
|
90
|
-
border-radius: 0.3em;
|
|
91
|
-
white-space: normal;
|
|
92
|
-
}
|
|
93
|
-
.token.comment,
|
|
94
|
-
.token.prolog,
|
|
95
|
-
.token.doctype,
|
|
96
|
-
.token.cdata {
|
|
97
|
-
color: #6272a4;
|
|
98
|
-
}
|
|
99
|
-
.token.punctuation {
|
|
100
|
-
color: #f8f8f2;
|
|
101
|
-
}
|
|
102
|
-
.namespace {
|
|
103
|
-
opacity: 0.7;
|
|
104
|
-
}
|
|
105
|
-
.token.property,
|
|
106
|
-
.token.tag,
|
|
107
|
-
.token.constant,
|
|
108
|
-
.token.symbol,
|
|
109
|
-
.token.deleted {
|
|
110
|
-
color: #ff79c6;
|
|
111
|
-
}
|
|
112
|
-
.token.boolean,
|
|
113
|
-
.token.number {
|
|
114
|
-
color: #bd93f9;
|
|
115
|
-
}
|
|
116
|
-
.token.selector,
|
|
117
|
-
.token.attr-name,
|
|
118
|
-
.token.string,
|
|
119
|
-
.token.char,
|
|
120
|
-
.token.builtin,
|
|
121
|
-
.token.inserted {
|
|
122
|
-
color: #50fa7b;
|
|
123
|
-
}
|
|
124
|
-
.token.operator,
|
|
125
|
-
.token.entity,
|
|
126
|
-
.token.url,
|
|
127
|
-
.language-css .token.string,
|
|
128
|
-
.style .token.string,
|
|
129
|
-
.token.variable {
|
|
130
|
-
color: #f8f8f2;
|
|
131
|
-
}
|
|
132
|
-
.token.atrule,
|
|
133
|
-
.token.attr-value,
|
|
134
|
-
.token.function,
|
|
135
|
-
.token.class-name {
|
|
136
|
-
color: #f1fa8c;
|
|
137
|
-
}
|
|
138
|
-
.token.keyword {
|
|
139
|
-
color: #8be9fd;
|
|
140
|
-
}
|
|
141
|
-
.token.regex,
|
|
142
|
-
.token.important {
|
|
143
|
-
color: #ffb86c;
|
|
144
|
-
}
|
|
145
|
-
.token.important,
|
|
146
|
-
.token.bold {
|
|
147
|
-
font-weight: bold;
|
|
148
|
-
}
|
|
149
|
-
.token.italic {
|
|
150
|
-
font-style: italic;
|
|
151
|
-
}
|
|
152
|
-
.token.entity {
|
|
153
|
-
cursor: help;
|
|
154
|
-
}
|
|
155
|
-
/* stylelint-enable */
|
|
156
|
-
.mce-content-body {
|
|
157
|
-
overflow-wrap: break-word;
|
|
158
|
-
word-wrap: break-word;
|
|
159
|
-
}
|
|
160
|
-
.mce-content-body .mce-visual-caret {
|
|
161
|
-
background-color: black;
|
|
162
|
-
background-color: currentColor;
|
|
163
|
-
position: absolute;
|
|
164
|
-
}
|
|
165
|
-
.mce-content-body .mce-visual-caret-hidden {
|
|
166
|
-
display: none;
|
|
167
|
-
}
|
|
168
|
-
.mce-content-body *[data-mce-caret] {
|
|
169
|
-
left: -1000px;
|
|
170
|
-
margin: 0;
|
|
171
|
-
padding: 0;
|
|
172
|
-
position: absolute;
|
|
173
|
-
right: auto;
|
|
174
|
-
top: 0;
|
|
175
|
-
}
|
|
176
|
-
.mce-content-body .mce-offscreen-selection {
|
|
177
|
-
left: -2000000px;
|
|
178
|
-
max-width: 1000000px;
|
|
179
|
-
position: absolute;
|
|
180
|
-
}
|
|
181
|
-
.mce-content-body *[contentEditable=false] {
|
|
182
|
-
cursor: default;
|
|
183
|
-
}
|
|
184
|
-
.mce-content-body *[contentEditable=true] {
|
|
185
|
-
cursor: text;
|
|
186
|
-
}
|
|
187
|
-
.tox-cursor-format-painter {
|
|
188
|
-
cursor: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"), default;
|
|
189
|
-
}
|
|
190
|
-
.mce-content-body figure.align-left {
|
|
191
|
-
float: left;
|
|
192
|
-
}
|
|
193
|
-
.mce-content-body figure.align-right {
|
|
194
|
-
float: right;
|
|
195
|
-
}
|
|
196
|
-
.mce-content-body figure.image.align-center {
|
|
197
|
-
display: table;
|
|
198
|
-
margin-left: auto;
|
|
199
|
-
margin-right: auto;
|
|
200
|
-
}
|
|
201
|
-
.mce-preview-object {
|
|
202
|
-
border: 1px solid gray;
|
|
203
|
-
display: inline-block;
|
|
204
|
-
line-height: 0;
|
|
205
|
-
margin: 0 2px 0 2px;
|
|
206
|
-
position: relative;
|
|
207
|
-
}
|
|
208
|
-
.mce-preview-object .mce-shim {
|
|
209
|
-
background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
|
|
210
|
-
height: 100%;
|
|
211
|
-
left: 0;
|
|
212
|
-
position: absolute;
|
|
213
|
-
top: 0;
|
|
214
|
-
width: 100%;
|
|
215
|
-
}
|
|
216
|
-
.mce-preview-object[data-mce-selected="2"] .mce-shim {
|
|
217
|
-
display: none;
|
|
218
|
-
}
|
|
219
|
-
.mce-object {
|
|
220
|
-
background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%20fill%3D%22%23cccccc%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
|
|
221
|
-
border: 1px dashed #aaa;
|
|
222
|
-
}
|
|
223
|
-
.mce-pagebreak {
|
|
224
|
-
border: 1px dashed #aaa;
|
|
225
|
-
cursor: default;
|
|
226
|
-
display: block;
|
|
227
|
-
height: 5px;
|
|
228
|
-
margin-top: 15px;
|
|
229
|
-
page-break-before: always;
|
|
230
|
-
width: 100%;
|
|
231
|
-
}
|
|
232
|
-
@media print {
|
|
233
|
-
.mce-pagebreak {
|
|
234
|
-
border: 0;
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
.tiny-pageembed .mce-shim {
|
|
238
|
-
background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
|
|
239
|
-
height: 100%;
|
|
240
|
-
left: 0;
|
|
241
|
-
position: absolute;
|
|
242
|
-
top: 0;
|
|
243
|
-
width: 100%;
|
|
244
|
-
}
|
|
245
|
-
.tiny-pageembed[data-mce-selected="2"] .mce-shim {
|
|
246
|
-
display: none;
|
|
247
|
-
}
|
|
248
|
-
.tiny-pageembed {
|
|
249
|
-
display: inline-block;
|
|
250
|
-
position: relative;
|
|
251
|
-
}
|
|
252
|
-
.tiny-pageembed--21by9,
|
|
253
|
-
.tiny-pageembed--16by9,
|
|
254
|
-
.tiny-pageembed--4by3,
|
|
255
|
-
.tiny-pageembed--1by1 {
|
|
256
|
-
display: block;
|
|
257
|
-
overflow: hidden;
|
|
258
|
-
padding: 0;
|
|
259
|
-
position: relative;
|
|
260
|
-
width: 100%;
|
|
261
|
-
}
|
|
262
|
-
.tiny-pageembed--21by9 {
|
|
263
|
-
padding-top: 42.857143%;
|
|
264
|
-
}
|
|
265
|
-
.tiny-pageembed--16by9 {
|
|
266
|
-
padding-top: 56.25%;
|
|
267
|
-
}
|
|
268
|
-
.tiny-pageembed--4by3 {
|
|
269
|
-
padding-top: 75%;
|
|
270
|
-
}
|
|
271
|
-
.tiny-pageembed--1by1 {
|
|
272
|
-
padding-top: 100%;
|
|
273
|
-
}
|
|
274
|
-
.tiny-pageembed--21by9 iframe,
|
|
275
|
-
.tiny-pageembed--16by9 iframe,
|
|
276
|
-
.tiny-pageembed--4by3 iframe,
|
|
277
|
-
.tiny-pageembed--1by1 iframe {
|
|
278
|
-
border: 0;
|
|
279
|
-
height: 100%;
|
|
280
|
-
left: 0;
|
|
281
|
-
position: absolute;
|
|
282
|
-
top: 0;
|
|
283
|
-
width: 100%;
|
|
284
|
-
}
|
|
285
|
-
.mce-content-body[data-mce-placeholder] {
|
|
286
|
-
position: relative;
|
|
287
|
-
}
|
|
288
|
-
.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before {
|
|
289
|
-
color: rgba(34, 47, 62, 0.7);
|
|
290
|
-
content: attr(data-mce-placeholder);
|
|
291
|
-
position: absolute;
|
|
292
|
-
}
|
|
293
|
-
.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before {
|
|
294
|
-
left: 1px;
|
|
295
|
-
}
|
|
296
|
-
.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before {
|
|
297
|
-
right: 1px;
|
|
298
|
-
}
|
|
299
|
-
.mce-content-body div.mce-resizehandle {
|
|
300
|
-
background-color: #4099ff;
|
|
301
|
-
border-color: #4099ff;
|
|
302
|
-
border-style: solid;
|
|
303
|
-
border-width: 1px;
|
|
304
|
-
box-sizing: border-box;
|
|
305
|
-
height: 10px;
|
|
306
|
-
position: absolute;
|
|
307
|
-
width: 10px;
|
|
308
|
-
z-index: 1298;
|
|
309
|
-
}
|
|
310
|
-
.mce-content-body div.mce-resizehandle:hover {
|
|
311
|
-
background-color: #4099ff;
|
|
312
|
-
}
|
|
313
|
-
.mce-content-body div.mce-resizehandle:nth-of-type(1) {
|
|
314
|
-
cursor: nwse-resize;
|
|
315
|
-
}
|
|
316
|
-
.mce-content-body div.mce-resizehandle:nth-of-type(2) {
|
|
317
|
-
cursor: nesw-resize;
|
|
318
|
-
}
|
|
319
|
-
.mce-content-body div.mce-resizehandle:nth-of-type(3) {
|
|
320
|
-
cursor: nwse-resize;
|
|
321
|
-
}
|
|
322
|
-
.mce-content-body div.mce-resizehandle:nth-of-type(4) {
|
|
323
|
-
cursor: nesw-resize;
|
|
324
|
-
}
|
|
325
|
-
.mce-content-body .mce-resize-backdrop {
|
|
326
|
-
z-index: 10000;
|
|
327
|
-
}
|
|
328
|
-
.mce-content-body .mce-clonedresizable {
|
|
329
|
-
cursor: default;
|
|
330
|
-
opacity: 0.5;
|
|
331
|
-
outline: 1px dashed black;
|
|
332
|
-
position: absolute;
|
|
333
|
-
z-index: 10001;
|
|
334
|
-
}
|
|
335
|
-
.mce-content-body .mce-clonedresizable.mce-resizetable-columns th,
|
|
336
|
-
.mce-content-body .mce-clonedresizable.mce-resizetable-columns td {
|
|
337
|
-
border: 0;
|
|
338
|
-
}
|
|
339
|
-
.mce-content-body .mce-resize-helper {
|
|
340
|
-
background: #555;
|
|
341
|
-
background: rgba(0, 0, 0, 0.75);
|
|
342
|
-
border: 1px;
|
|
343
|
-
border-radius: 3px;
|
|
344
|
-
color: white;
|
|
345
|
-
display: none;
|
|
346
|
-
font-family: sans-serif;
|
|
347
|
-
font-size: 12px;
|
|
348
|
-
line-height: 14px;
|
|
349
|
-
margin: 5px 10px;
|
|
350
|
-
padding: 5px;
|
|
351
|
-
position: absolute;
|
|
352
|
-
white-space: nowrap;
|
|
353
|
-
z-index: 10002;
|
|
354
|
-
}
|
|
355
|
-
.tox-rtc-user-selection {
|
|
356
|
-
position: relative;
|
|
357
|
-
}
|
|
358
|
-
.tox-rtc-user-cursor {
|
|
359
|
-
bottom: 0;
|
|
360
|
-
cursor: default;
|
|
361
|
-
position: absolute;
|
|
362
|
-
top: 0;
|
|
363
|
-
width: 2px;
|
|
364
|
-
}
|
|
365
|
-
.tox-rtc-user-cursor::before {
|
|
366
|
-
background-color: inherit;
|
|
367
|
-
border-radius: 50%;
|
|
368
|
-
content: '';
|
|
369
|
-
display: block;
|
|
370
|
-
height: 8px;
|
|
371
|
-
position: absolute;
|
|
372
|
-
right: -3px;
|
|
373
|
-
top: -3px;
|
|
374
|
-
width: 8px;
|
|
375
|
-
}
|
|
376
|
-
.tox-rtc-user-cursor:hover::after {
|
|
377
|
-
background-color: inherit;
|
|
378
|
-
border-radius: 100px;
|
|
379
|
-
box-sizing: border-box;
|
|
380
|
-
color: #fff;
|
|
381
|
-
content: attr(data-user);
|
|
382
|
-
display: block;
|
|
383
|
-
font-size: 12px;
|
|
384
|
-
font-weight: bold;
|
|
385
|
-
left: -5px;
|
|
386
|
-
min-height: 8px;
|
|
387
|
-
min-width: 8px;
|
|
388
|
-
padding: 0 12px;
|
|
389
|
-
position: absolute;
|
|
390
|
-
top: -11px;
|
|
391
|
-
white-space: nowrap;
|
|
392
|
-
z-index: 1000;
|
|
393
|
-
}
|
|
394
|
-
.tox-rtc-user-selection--1 .tox-rtc-user-cursor {
|
|
395
|
-
background-color: #2dc26b;
|
|
396
|
-
}
|
|
397
|
-
.tox-rtc-user-selection--2 .tox-rtc-user-cursor {
|
|
398
|
-
background-color: #e03e2d;
|
|
399
|
-
}
|
|
400
|
-
.tox-rtc-user-selection--3 .tox-rtc-user-cursor {
|
|
401
|
-
background-color: #f1c40f;
|
|
402
|
-
}
|
|
403
|
-
.tox-rtc-user-selection--4 .tox-rtc-user-cursor {
|
|
404
|
-
background-color: #3598db;
|
|
405
|
-
}
|
|
406
|
-
.tox-rtc-user-selection--5 .tox-rtc-user-cursor {
|
|
407
|
-
background-color: #b96ad9;
|
|
408
|
-
}
|
|
409
|
-
.tox-rtc-user-selection--6 .tox-rtc-user-cursor {
|
|
410
|
-
background-color: #e67e23;
|
|
411
|
-
}
|
|
412
|
-
.tox-rtc-user-selection--7 .tox-rtc-user-cursor {
|
|
413
|
-
background-color: #aaa69d;
|
|
414
|
-
}
|
|
415
|
-
.tox-rtc-user-selection--8 .tox-rtc-user-cursor {
|
|
416
|
-
background-color: #f368e0;
|
|
417
|
-
}
|
|
418
|
-
.tox-rtc-remote-image {
|
|
419
|
-
background: #eaeaea url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat center center;
|
|
420
|
-
border: 1px solid #ccc;
|
|
421
|
-
min-height: 240px;
|
|
422
|
-
min-width: 320px;
|
|
423
|
-
}
|
|
424
|
-
.mce-match-marker {
|
|
425
|
-
background: #aaa;
|
|
426
|
-
color: #fff;
|
|
427
|
-
}
|
|
428
|
-
.mce-match-marker-selected {
|
|
429
|
-
background: #39f;
|
|
430
|
-
color: #fff;
|
|
431
|
-
}
|
|
432
|
-
.mce-match-marker-selected::-moz-selection {
|
|
433
|
-
background: #39f;
|
|
434
|
-
color: #fff;
|
|
435
|
-
}
|
|
436
|
-
.mce-match-marker-selected::selection {
|
|
437
|
-
background: #39f;
|
|
438
|
-
color: #fff;
|
|
439
|
-
}
|
|
440
|
-
.mce-content-body img[data-mce-selected],
|
|
441
|
-
.mce-content-body video[data-mce-selected],
|
|
442
|
-
.mce-content-body audio[data-mce-selected],
|
|
443
|
-
.mce-content-body object[data-mce-selected],
|
|
444
|
-
.mce-content-body embed[data-mce-selected],
|
|
445
|
-
.mce-content-body table[data-mce-selected] {
|
|
446
|
-
outline: 3px solid #4099ff;
|
|
447
|
-
}
|
|
448
|
-
.mce-content-body hr[data-mce-selected] {
|
|
449
|
-
outline: 3px solid #4099ff;
|
|
450
|
-
outline-offset: 1px;
|
|
451
|
-
}
|
|
452
|
-
.mce-content-body *[contentEditable=false] *[contentEditable=true]:focus {
|
|
453
|
-
outline: 3px solid #4099ff;
|
|
454
|
-
}
|
|
455
|
-
.mce-content-body *[contentEditable=false] *[contentEditable=true]:hover {
|
|
456
|
-
outline: 3px solid #4099ff;
|
|
457
|
-
}
|
|
458
|
-
.mce-content-body *[contentEditable=false][data-mce-selected] {
|
|
459
|
-
cursor: not-allowed;
|
|
460
|
-
outline: 3px solid #4099ff;
|
|
461
|
-
}
|
|
462
|
-
.mce-content-body.mce-content-readonly *[contentEditable=true]:focus,
|
|
463
|
-
.mce-content-body.mce-content-readonly *[contentEditable=true]:hover {
|
|
464
|
-
outline: none;
|
|
465
|
-
}
|
|
466
|
-
.mce-content-body *[data-mce-selected="inline-boundary"] {
|
|
467
|
-
background-color: #4099ff;
|
|
468
|
-
}
|
|
469
|
-
.mce-content-body .mce-edit-focus {
|
|
470
|
-
outline: 3px solid #4099ff;
|
|
471
|
-
}
|
|
472
|
-
.mce-content-body td[data-mce-selected],
|
|
473
|
-
.mce-content-body th[data-mce-selected] {
|
|
474
|
-
position: relative;
|
|
475
|
-
}
|
|
476
|
-
.mce-content-body td[data-mce-selected]::-moz-selection,
|
|
477
|
-
.mce-content-body th[data-mce-selected]::-moz-selection {
|
|
478
|
-
background: none;
|
|
479
|
-
}
|
|
480
|
-
.mce-content-body td[data-mce-selected]::selection,
|
|
481
|
-
.mce-content-body th[data-mce-selected]::selection {
|
|
482
|
-
background: none;
|
|
483
|
-
}
|
|
484
|
-
.mce-content-body td[data-mce-selected] *,
|
|
485
|
-
.mce-content-body th[data-mce-selected] * {
|
|
486
|
-
outline: none;
|
|
487
|
-
-webkit-touch-callout: none;
|
|
488
|
-
-webkit-user-select: none;
|
|
489
|
-
-moz-user-select: none;
|
|
490
|
-
-ms-user-select: none;
|
|
491
|
-
user-select: none;
|
|
492
|
-
}
|
|
493
|
-
.mce-content-body td[data-mce-selected]::after,
|
|
494
|
-
.mce-content-body th[data-mce-selected]::after {
|
|
495
|
-
background-color: rgba(180, 215, 255, 0.7);
|
|
496
|
-
border: 1px solid transparent;
|
|
497
|
-
bottom: -1px;
|
|
498
|
-
content: '';
|
|
499
|
-
left: -1px;
|
|
500
|
-
mix-blend-mode: lighten;
|
|
501
|
-
position: absolute;
|
|
502
|
-
right: -1px;
|
|
503
|
-
top: -1px;
|
|
504
|
-
}
|
|
505
|
-
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
506
|
-
.mce-content-body td[data-mce-selected]::after,
|
|
507
|
-
.mce-content-body th[data-mce-selected]::after {
|
|
508
|
-
border-color: rgba(0, 84, 180, 0.7);
|
|
509
|
-
}
|
|
510
|
-
}
|
|
511
|
-
.mce-content-body img::-moz-selection {
|
|
512
|
-
background: none;
|
|
513
|
-
}
|
|
514
|
-
.mce-content-body img::selection {
|
|
515
|
-
background: none;
|
|
516
|
-
}
|
|
517
|
-
.ephox-snooker-resizer-bar {
|
|
518
|
-
background-color: #4099ff;
|
|
519
|
-
opacity: 0;
|
|
520
|
-
-webkit-user-select: none;
|
|
521
|
-
-moz-user-select: none;
|
|
522
|
-
-ms-user-select: none;
|
|
523
|
-
user-select: none;
|
|
524
|
-
}
|
|
525
|
-
.ephox-snooker-resizer-cols {
|
|
526
|
-
cursor: col-resize;
|
|
527
|
-
}
|
|
528
|
-
.ephox-snooker-resizer-rows {
|
|
529
|
-
cursor: row-resize;
|
|
530
|
-
}
|
|
531
|
-
.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging {
|
|
532
|
-
opacity: 1;
|
|
533
|
-
}
|
|
534
|
-
.mce-spellchecker-word {
|
|
535
|
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");
|
|
536
|
-
background-position: 0 calc(100% + 1px);
|
|
537
|
-
background-repeat: repeat-x;
|
|
538
|
-
background-size: auto 6px;
|
|
539
|
-
cursor: default;
|
|
540
|
-
height: 2rem;
|
|
541
|
-
}
|
|
542
|
-
.mce-spellchecker-grammar {
|
|
543
|
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");
|
|
544
|
-
background-position: 0 calc(100% + 1px);
|
|
545
|
-
background-repeat: repeat-x;
|
|
546
|
-
background-size: auto 6px;
|
|
547
|
-
cursor: default;
|
|
548
|
-
}
|
|
549
|
-
.mce-toc {
|
|
550
|
-
border: 1px solid gray;
|
|
551
|
-
}
|
|
552
|
-
.mce-toc h2 {
|
|
553
|
-
margin: 4px;
|
|
554
|
-
}
|
|
555
|
-
.mce-toc li {
|
|
556
|
-
list-style-type: none;
|
|
557
|
-
}
|
|
558
|
-
table[style*="border-width: 0px"],
|
|
559
|
-
.mce-item-table:not([border]),
|
|
560
|
-
.mce-item-table[border="0"],
|
|
561
|
-
table[style*="border-width: 0px"] td,
|
|
562
|
-
.mce-item-table:not([border]) td,
|
|
563
|
-
.mce-item-table[border="0"] td,
|
|
564
|
-
table[style*="border-width: 0px"] th,
|
|
565
|
-
.mce-item-table:not([border]) th,
|
|
566
|
-
.mce-item-table[border="0"] th,
|
|
567
|
-
table[style*="border-width: 0px"] caption,
|
|
568
|
-
.mce-item-table:not([border]) caption,
|
|
569
|
-
.mce-item-table[border="0"] caption {
|
|
570
|
-
border: 1px dashed #bbb;
|
|
571
|
-
}
|
|
572
|
-
.mce-visualblocks p,
|
|
573
|
-
.mce-visualblocks h1,
|
|
574
|
-
.mce-visualblocks h2,
|
|
575
|
-
.mce-visualblocks h3,
|
|
576
|
-
.mce-visualblocks h4,
|
|
577
|
-
.mce-visualblocks h5,
|
|
578
|
-
.mce-visualblocks h6,
|
|
579
|
-
.mce-visualblocks div:not([data-mce-bogus]),
|
|
580
|
-
.mce-visualblocks section,
|
|
581
|
-
.mce-visualblocks article,
|
|
582
|
-
.mce-visualblocks blockquote,
|
|
583
|
-
.mce-visualblocks address,
|
|
584
|
-
.mce-visualblocks pre,
|
|
585
|
-
.mce-visualblocks figure,
|
|
586
|
-
.mce-visualblocks figcaption,
|
|
587
|
-
.mce-visualblocks hgroup,
|
|
588
|
-
.mce-visualblocks aside,
|
|
589
|
-
.mce-visualblocks ul,
|
|
590
|
-
.mce-visualblocks ol,
|
|
591
|
-
.mce-visualblocks dl {
|
|
592
|
-
background-repeat: no-repeat;
|
|
593
|
-
border: 1px dashed #bbb;
|
|
594
|
-
margin-left: 3px;
|
|
595
|
-
padding-top: 10px;
|
|
596
|
-
}
|
|
597
|
-
.mce-visualblocks p {
|
|
598
|
-
background-image: url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7);
|
|
599
|
-
}
|
|
600
|
-
.mce-visualblocks h1 {
|
|
601
|
-
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==);
|
|
602
|
-
}
|
|
603
|
-
.mce-visualblocks h2 {
|
|
604
|
-
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==);
|
|
605
|
-
}
|
|
606
|
-
.mce-visualblocks h3 {
|
|
607
|
-
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7);
|
|
608
|
-
}
|
|
609
|
-
.mce-visualblocks h4 {
|
|
610
|
-
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==);
|
|
611
|
-
}
|
|
612
|
-
.mce-visualblocks h5 {
|
|
613
|
-
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==);
|
|
614
|
-
}
|
|
615
|
-
.mce-visualblocks h6 {
|
|
616
|
-
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==);
|
|
617
|
-
}
|
|
618
|
-
.mce-visualblocks div:not([data-mce-bogus]) {
|
|
619
|
-
background-image: url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7);
|
|
620
|
-
}
|
|
621
|
-
.mce-visualblocks section {
|
|
622
|
-
background-image: url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=);
|
|
623
|
-
}
|
|
624
|
-
.mce-visualblocks article {
|
|
625
|
-
background-image: url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7);
|
|
626
|
-
}
|
|
627
|
-
.mce-visualblocks blockquote {
|
|
628
|
-
background-image: url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7);
|
|
629
|
-
}
|
|
630
|
-
.mce-visualblocks address {
|
|
631
|
-
background-image: url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=);
|
|
632
|
-
}
|
|
633
|
-
.mce-visualblocks pre {
|
|
634
|
-
background-image: url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==);
|
|
635
|
-
}
|
|
636
|
-
.mce-visualblocks figure {
|
|
637
|
-
background-image: url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7);
|
|
638
|
-
}
|
|
639
|
-
.mce-visualblocks figcaption {
|
|
640
|
-
border: 1px dashed #bbb;
|
|
641
|
-
}
|
|
642
|
-
.mce-visualblocks hgroup {
|
|
643
|
-
background-image: url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7);
|
|
644
|
-
}
|
|
645
|
-
.mce-visualblocks aside {
|
|
646
|
-
background-image: url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=);
|
|
647
|
-
}
|
|
648
|
-
.mce-visualblocks ul {
|
|
649
|
-
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==);
|
|
650
|
-
}
|
|
651
|
-
.mce-visualblocks ol {
|
|
652
|
-
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==);
|
|
653
|
-
}
|
|
654
|
-
.mce-visualblocks dl {
|
|
655
|
-
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==);
|
|
656
|
-
}
|
|
657
|
-
.mce-visualblocks:not([dir=rtl]) p,
|
|
658
|
-
.mce-visualblocks:not([dir=rtl]) h1,
|
|
659
|
-
.mce-visualblocks:not([dir=rtl]) h2,
|
|
660
|
-
.mce-visualblocks:not([dir=rtl]) h3,
|
|
661
|
-
.mce-visualblocks:not([dir=rtl]) h4,
|
|
662
|
-
.mce-visualblocks:not([dir=rtl]) h5,
|
|
663
|
-
.mce-visualblocks:not([dir=rtl]) h6,
|
|
664
|
-
.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),
|
|
665
|
-
.mce-visualblocks:not([dir=rtl]) section,
|
|
666
|
-
.mce-visualblocks:not([dir=rtl]) article,
|
|
667
|
-
.mce-visualblocks:not([dir=rtl]) blockquote,
|
|
668
|
-
.mce-visualblocks:not([dir=rtl]) address,
|
|
669
|
-
.mce-visualblocks:not([dir=rtl]) pre,
|
|
670
|
-
.mce-visualblocks:not([dir=rtl]) figure,
|
|
671
|
-
.mce-visualblocks:not([dir=rtl]) figcaption,
|
|
672
|
-
.mce-visualblocks:not([dir=rtl]) hgroup,
|
|
673
|
-
.mce-visualblocks:not([dir=rtl]) aside,
|
|
674
|
-
.mce-visualblocks:not([dir=rtl]) ul,
|
|
675
|
-
.mce-visualblocks:not([dir=rtl]) ol,
|
|
676
|
-
.mce-visualblocks:not([dir=rtl]) dl {
|
|
677
|
-
margin-left: 3px;
|
|
678
|
-
}
|
|
679
|
-
.mce-visualblocks[dir=rtl] p,
|
|
680
|
-
.mce-visualblocks[dir=rtl] h1,
|
|
681
|
-
.mce-visualblocks[dir=rtl] h2,
|
|
682
|
-
.mce-visualblocks[dir=rtl] h3,
|
|
683
|
-
.mce-visualblocks[dir=rtl] h4,
|
|
684
|
-
.mce-visualblocks[dir=rtl] h5,
|
|
685
|
-
.mce-visualblocks[dir=rtl] h6,
|
|
686
|
-
.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),
|
|
687
|
-
.mce-visualblocks[dir=rtl] section,
|
|
688
|
-
.mce-visualblocks[dir=rtl] article,
|
|
689
|
-
.mce-visualblocks[dir=rtl] blockquote,
|
|
690
|
-
.mce-visualblocks[dir=rtl] address,
|
|
691
|
-
.mce-visualblocks[dir=rtl] pre,
|
|
692
|
-
.mce-visualblocks[dir=rtl] figure,
|
|
693
|
-
.mce-visualblocks[dir=rtl] figcaption,
|
|
694
|
-
.mce-visualblocks[dir=rtl] hgroup,
|
|
695
|
-
.mce-visualblocks[dir=rtl] aside,
|
|
696
|
-
.mce-visualblocks[dir=rtl] ul,
|
|
697
|
-
.mce-visualblocks[dir=rtl] ol,
|
|
698
|
-
.mce-visualblocks[dir=rtl] dl {
|
|
699
|
-
background-position-x: right;
|
|
700
|
-
margin-right: 3px;
|
|
701
|
-
}
|
|
702
|
-
.mce-nbsp,
|
|
703
|
-
.mce-shy {
|
|
704
|
-
background: #aaa;
|
|
705
|
-
}
|
|
706
|
-
.mce-shy::after {
|
|
707
|
-
content: '-';
|
|
708
|
-
}
|
|
709
|
-
body {
|
|
710
|
-
font-family: sans-serif;
|
|
711
|
-
}
|
|
712
|
-
table {
|
|
713
|
-
border-collapse: collapse;
|
|
714
|
-
}
|