@zscreate/form-component 1.1.595 → 1.1.596-test.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/form-component.css +180 -180
- package/dist/form-component.umd.js +78157 -78093
- package/package.json +1 -1
package/dist/form-component.css
CHANGED
|
@@ -1,3 +1,181 @@
|
|
|
1
|
+
.rich-preview {
|
|
2
|
+
border: none;
|
|
3
|
+
height: 100%;
|
|
4
|
+
overflow-y: auto;
|
|
5
|
+
}
|
|
6
|
+
.rich-preview .w-e-scroll {
|
|
7
|
+
overflow-y: initial !important;
|
|
8
|
+
}
|
|
9
|
+
.rich-preview b,
|
|
10
|
+
.rich-preview strong {
|
|
11
|
+
font-weight: bolder !important;
|
|
12
|
+
}
|
|
13
|
+
.rich-preview em {
|
|
14
|
+
font-style: italic;
|
|
15
|
+
}
|
|
16
|
+
.rich-preview ul li {
|
|
17
|
+
list-style-type: initial;
|
|
18
|
+
}
|
|
19
|
+
.rich-preview ol li {
|
|
20
|
+
list-style-type: decimal;
|
|
21
|
+
}
|
|
22
|
+
.w-e-text-container {
|
|
23
|
+
position: relative;
|
|
24
|
+
height: 100%;
|
|
25
|
+
}
|
|
26
|
+
.w-e-text-container i {
|
|
27
|
+
font-style: italic;
|
|
28
|
+
}
|
|
29
|
+
.w-e-text-container b {
|
|
30
|
+
font-weight: bold;
|
|
31
|
+
}
|
|
32
|
+
.w-e-text-container .w-e-progress {
|
|
33
|
+
position: absolute;
|
|
34
|
+
background-color: #1e88e5;
|
|
35
|
+
top: 0;
|
|
36
|
+
left: 0;
|
|
37
|
+
height: 1px;
|
|
38
|
+
}
|
|
39
|
+
.w-e-text-container .placeholder {
|
|
40
|
+
color: #D4D4D4;
|
|
41
|
+
position: absolute;
|
|
42
|
+
font-size: 11pt;
|
|
43
|
+
line-height: 22px;
|
|
44
|
+
left: 10px;
|
|
45
|
+
top: 10px;
|
|
46
|
+
-webkit-user-select: none;
|
|
47
|
+
-moz-user-select: none;
|
|
48
|
+
user-select: none;
|
|
49
|
+
z-index: -1;
|
|
50
|
+
}
|
|
51
|
+
.w-e-text {
|
|
52
|
+
padding: 0 10px;
|
|
53
|
+
overflow-y: auto;
|
|
54
|
+
}
|
|
55
|
+
.w-e-text p,
|
|
56
|
+
.w-e-text h1,
|
|
57
|
+
.w-e-text h2,
|
|
58
|
+
.w-e-text h3,
|
|
59
|
+
.w-e-text h4,
|
|
60
|
+
.w-e-text h5,
|
|
61
|
+
.w-e-text table,
|
|
62
|
+
.w-e-text pre {
|
|
63
|
+
margin: 10px 0;
|
|
64
|
+
line-height: 1.5;
|
|
65
|
+
}
|
|
66
|
+
.w-e-text ul,
|
|
67
|
+
.w-e-text ol {
|
|
68
|
+
margin: 10px 0 10px 20px;
|
|
69
|
+
}
|
|
70
|
+
.w-e-text blockquote {
|
|
71
|
+
display: block;
|
|
72
|
+
border-left: 8px solid #d0e5f2;
|
|
73
|
+
padding: 5px 10px;
|
|
74
|
+
margin: 10px 0;
|
|
75
|
+
line-height: 1.4;
|
|
76
|
+
font-size: 100%;
|
|
77
|
+
background-color: #f1f1f1;
|
|
78
|
+
}
|
|
79
|
+
.w-e-text code {
|
|
80
|
+
display: inline-block;
|
|
81
|
+
background-color: #f1f1f1;
|
|
82
|
+
border-radius: 3px;
|
|
83
|
+
padding: 3px 5px;
|
|
84
|
+
margin: 0 3px;
|
|
85
|
+
}
|
|
86
|
+
.w-e-text pre code {
|
|
87
|
+
display: block;
|
|
88
|
+
}
|
|
89
|
+
.w-e-text table {
|
|
90
|
+
border-top: 1px solid #ccc;
|
|
91
|
+
border-left: 1px solid #ccc;
|
|
92
|
+
}
|
|
93
|
+
.w-e-text table td,
|
|
94
|
+
.w-e-text table th {
|
|
95
|
+
border-bottom: 1px solid #ccc;
|
|
96
|
+
border-right: 1px solid #ccc;
|
|
97
|
+
padding: 3px 5px;
|
|
98
|
+
min-height: 30px;
|
|
99
|
+
height: 30px;
|
|
100
|
+
}
|
|
101
|
+
.w-e-text table th {
|
|
102
|
+
border-bottom: 2px solid #ccc;
|
|
103
|
+
text-align: center;
|
|
104
|
+
background-color: #f1f1f1;
|
|
105
|
+
}
|
|
106
|
+
.w-e-text:focus {
|
|
107
|
+
outline: none;
|
|
108
|
+
}
|
|
109
|
+
.w-e-text img {
|
|
110
|
+
cursor: pointer;
|
|
111
|
+
}
|
|
112
|
+
.w-e-text img:hover {
|
|
113
|
+
box-shadow: 0 0 5px #333;
|
|
114
|
+
}
|
|
115
|
+
.w-e-text .w-e-todo {
|
|
116
|
+
margin: 0 0 0 20px;
|
|
117
|
+
}
|
|
118
|
+
.w-e-text ul li {
|
|
119
|
+
list-style-type: initial;
|
|
120
|
+
}
|
|
121
|
+
.w-e-text ol li {
|
|
122
|
+
list-style-type: decimal;
|
|
123
|
+
}
|
|
124
|
+
.w-e-text .w-e-todo li {
|
|
125
|
+
list-style: none;
|
|
126
|
+
font-size: 1em;
|
|
127
|
+
}
|
|
128
|
+
.w-e-text .w-e-todo li span:nth-child(1) {
|
|
129
|
+
position: relative;
|
|
130
|
+
left: -18px;
|
|
131
|
+
}
|
|
132
|
+
.w-e-text .w-e-todo li span:nth-child(1) input {
|
|
133
|
+
position: absolute;
|
|
134
|
+
margin-right: 3px;
|
|
135
|
+
}
|
|
136
|
+
.w-e-text .w-e-todo li span:nth-child(1) input[type=checkbox] {
|
|
137
|
+
top: 50%;
|
|
138
|
+
margin-top: -6px;
|
|
139
|
+
}
|
|
140
|
+
.w-e-tooltip {
|
|
141
|
+
position: absolute;
|
|
142
|
+
display: flex;
|
|
143
|
+
color: #f1f1f1;
|
|
144
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
145
|
+
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
|
|
146
|
+
border-radius: 4px;
|
|
147
|
+
padding: 4px 5px 6px;
|
|
148
|
+
justify-content: center;
|
|
149
|
+
align-items: center;
|
|
150
|
+
}
|
|
151
|
+
.w-e-tooltip-up::after {
|
|
152
|
+
content: "";
|
|
153
|
+
position: absolute;
|
|
154
|
+
top: 100%;
|
|
155
|
+
left: 50%;
|
|
156
|
+
margin-left: -5px;
|
|
157
|
+
border: 5px solid rgba(0, 0, 0, 0);
|
|
158
|
+
border-top-color: rgba(0, 0, 0, 0.73);
|
|
159
|
+
}
|
|
160
|
+
.w-e-tooltip-down::after {
|
|
161
|
+
content: "";
|
|
162
|
+
position: absolute;
|
|
163
|
+
bottom: 100%;
|
|
164
|
+
left: 50%;
|
|
165
|
+
margin-left: -5px;
|
|
166
|
+
border: 5px solid rgba(0, 0, 0, 0);
|
|
167
|
+
border-bottom-color: rgba(0, 0, 0, 0.73);
|
|
168
|
+
}
|
|
169
|
+
.w-e-tooltip-item-wrapper {
|
|
170
|
+
cursor: pointer;
|
|
171
|
+
font-size: 14px;
|
|
172
|
+
margin: 0 5px;
|
|
173
|
+
}
|
|
174
|
+
.w-e-tooltip-item-wrapper:hover {
|
|
175
|
+
color: #ccc;
|
|
176
|
+
text-decoration: underline;
|
|
177
|
+
}
|
|
178
|
+
|
|
1
179
|
.h-model-item[data-v-791fbca8]{height:30px;line-height:30px;padding-left:10px;font-size:16px}.h-model-item[data-v-791fbca8]:hover{background-color:#f5f9fd;color:#1890FF !important}.dropMenu[data-v-791fbca8]{width:100px;padding:0;margin:auto;position:absolute;right:-100px;top:-7px;bottom:0;z-index:100}.dropMenu li[data-v-791fbca8]{width:20px;height:20px;line-height:20px;display:inline-block;text-align:center;cursor:pointer;font-size:16px;color:#999}.dropMenu li[data-v-791fbca8]:hover{color:#66a6e0}.dropMenu li.icon-set[data-v-791fbca8]{font-size:23px}.dropMenuItem[data-v-791fbca8]{width:30px;height:30px;padding:0;color:#ffa500;margin:auto;position:absolute;cursor:pointer;bottom:0;z-index:100;font-size:20px}.gate .flow-node-drag[data-v-791fbca8]:nth-child(1){left:0;right:0;top:-19px}.gate .flow-node-drag[data-v-791fbca8]:nth-child(2){top:0;bottom:0;right:-19px}.gate .flow-node-drag[data-v-791fbca8]:nth-child(3){left:0;right:0;bottom:-19px}.gate .flow-node-drag[data-v-791fbca8]:nth-child(4){top:0;bottom:0;left:-19px}.flow-node-header[data-v-791fbca8]{background-color:#66a6e0;height:25px;cursor:pointer;border-top-left-radius:6px;border-top-right-radius:6px}.flow-node-header a[data-v-791fbca8]{text-decoration:none;line-height:25px;vertical-align:middle}.flow-node-header a img[data-v-791fbca8]{line-height:25px;vertical-align:middle;margin-bottom:5px}.flow-node-body[data-v-791fbca8]{background-color:white;text-align:center;cursor:pointer;height:25px;line-height:25px;border-bottom-left-radius:6px;border-bottom-right-radius:6px}.vdr-no-border[data-v-791fbca8]{border:none}.tool .text[data-v-791fbca8]{font-size:14px;padding:4px 6px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;/*! autoprefixer: off */-webkit-box-orient:vertical;/*! autoprefixer: on */-webkit-line-clamp:2;height:46px;word-break:break-all}.tool .inner[data-v-791fbca8]{background:orange;display:flex;justify-content:start;align-items:center;color:#fff}.tool .inner .icon-user[data-v-791fbca8]{color:#fff;display:flex;align-items:center;justify-content:center}.tool .inner-blue[data-v-791fbca8]{background:blue;display:flex;justify-content:start;align-items:center;color:#fff}.tool .inner-blue .icon-user[data-v-791fbca8]{color:#fff;display:flex;align-items:center}.flow-view .start[data-v-791fbca8]{border:2px solid #e0c645}.flow-view .end[data-v-791fbca8]{background-size:cover;border:2px solid #e0c645;position:relative}.flow-view .end[data-v-791fbca8]:before{content:'';width:12px;height:12px;background:#e0c645;display:block;position:absolute;top:calc(50% - 6px);left:calc(50% - 6px)}
|
|
2
180
|
|
|
3
181
|
.flow-tool-menu{background-color:#eeeeee;cursor:pointer;padding-left:5px;height:50px;line-height:50px;border-bottom:1px solid #979797}.flow-tool-submenu{background-color:white;padding-left:20px;cursor:pointer;height:50px;line-height:50px;vertical-align:middle;border-bottom:1px solid #d3d3d3}.g1-tools_1 li.start{width:50px;height:50px;border:1px solid #d8d8d8;border-radius:100%}.draggable-item .inner{display:flex;flex-direction:column;align-items:center;margin-bottom:10px}.draggable-item .inner svg{font-size:30px;color:#858587}.draggable-item .inner svg use{fill:#858587}.draggable-item .inner span{color:#333;margin:5px}
|
|
@@ -3545,184 +3723,6 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3545
3723
|
min-width: 0 !important;
|
|
3546
3724
|
}
|
|
3547
3725
|
|
|
3548
|
-
.rich-preview {
|
|
3549
|
-
border: none;
|
|
3550
|
-
height: 100%;
|
|
3551
|
-
overflow-y: auto;
|
|
3552
|
-
}
|
|
3553
|
-
.rich-preview .w-e-scroll {
|
|
3554
|
-
overflow-y: initial !important;
|
|
3555
|
-
}
|
|
3556
|
-
.rich-preview b,
|
|
3557
|
-
.rich-preview strong {
|
|
3558
|
-
font-weight: bolder !important;
|
|
3559
|
-
}
|
|
3560
|
-
.rich-preview em {
|
|
3561
|
-
font-style: italic;
|
|
3562
|
-
}
|
|
3563
|
-
.rich-preview ul li {
|
|
3564
|
-
list-style-type: initial;
|
|
3565
|
-
}
|
|
3566
|
-
.rich-preview ol li {
|
|
3567
|
-
list-style-type: decimal;
|
|
3568
|
-
}
|
|
3569
|
-
.w-e-text-container {
|
|
3570
|
-
position: relative;
|
|
3571
|
-
height: 100%;
|
|
3572
|
-
}
|
|
3573
|
-
.w-e-text-container i {
|
|
3574
|
-
font-style: italic;
|
|
3575
|
-
}
|
|
3576
|
-
.w-e-text-container b {
|
|
3577
|
-
font-weight: bold;
|
|
3578
|
-
}
|
|
3579
|
-
.w-e-text-container .w-e-progress {
|
|
3580
|
-
position: absolute;
|
|
3581
|
-
background-color: #1e88e5;
|
|
3582
|
-
top: 0;
|
|
3583
|
-
left: 0;
|
|
3584
|
-
height: 1px;
|
|
3585
|
-
}
|
|
3586
|
-
.w-e-text-container .placeholder {
|
|
3587
|
-
color: #D4D4D4;
|
|
3588
|
-
position: absolute;
|
|
3589
|
-
font-size: 11pt;
|
|
3590
|
-
line-height: 22px;
|
|
3591
|
-
left: 10px;
|
|
3592
|
-
top: 10px;
|
|
3593
|
-
-webkit-user-select: none;
|
|
3594
|
-
-moz-user-select: none;
|
|
3595
|
-
user-select: none;
|
|
3596
|
-
z-index: -1;
|
|
3597
|
-
}
|
|
3598
|
-
.w-e-text {
|
|
3599
|
-
padding: 0 10px;
|
|
3600
|
-
overflow-y: auto;
|
|
3601
|
-
}
|
|
3602
|
-
.w-e-text p,
|
|
3603
|
-
.w-e-text h1,
|
|
3604
|
-
.w-e-text h2,
|
|
3605
|
-
.w-e-text h3,
|
|
3606
|
-
.w-e-text h4,
|
|
3607
|
-
.w-e-text h5,
|
|
3608
|
-
.w-e-text table,
|
|
3609
|
-
.w-e-text pre {
|
|
3610
|
-
margin: 10px 0;
|
|
3611
|
-
line-height: 1.5;
|
|
3612
|
-
}
|
|
3613
|
-
.w-e-text ul,
|
|
3614
|
-
.w-e-text ol {
|
|
3615
|
-
margin: 10px 0 10px 20px;
|
|
3616
|
-
}
|
|
3617
|
-
.w-e-text blockquote {
|
|
3618
|
-
display: block;
|
|
3619
|
-
border-left: 8px solid #d0e5f2;
|
|
3620
|
-
padding: 5px 10px;
|
|
3621
|
-
margin: 10px 0;
|
|
3622
|
-
line-height: 1.4;
|
|
3623
|
-
font-size: 100%;
|
|
3624
|
-
background-color: #f1f1f1;
|
|
3625
|
-
}
|
|
3626
|
-
.w-e-text code {
|
|
3627
|
-
display: inline-block;
|
|
3628
|
-
background-color: #f1f1f1;
|
|
3629
|
-
border-radius: 3px;
|
|
3630
|
-
padding: 3px 5px;
|
|
3631
|
-
margin: 0 3px;
|
|
3632
|
-
}
|
|
3633
|
-
.w-e-text pre code {
|
|
3634
|
-
display: block;
|
|
3635
|
-
}
|
|
3636
|
-
.w-e-text table {
|
|
3637
|
-
border-top: 1px solid #ccc;
|
|
3638
|
-
border-left: 1px solid #ccc;
|
|
3639
|
-
}
|
|
3640
|
-
.w-e-text table td,
|
|
3641
|
-
.w-e-text table th {
|
|
3642
|
-
border-bottom: 1px solid #ccc;
|
|
3643
|
-
border-right: 1px solid #ccc;
|
|
3644
|
-
padding: 3px 5px;
|
|
3645
|
-
min-height: 30px;
|
|
3646
|
-
height: 30px;
|
|
3647
|
-
}
|
|
3648
|
-
.w-e-text table th {
|
|
3649
|
-
border-bottom: 2px solid #ccc;
|
|
3650
|
-
text-align: center;
|
|
3651
|
-
background-color: #f1f1f1;
|
|
3652
|
-
}
|
|
3653
|
-
.w-e-text:focus {
|
|
3654
|
-
outline: none;
|
|
3655
|
-
}
|
|
3656
|
-
.w-e-text img {
|
|
3657
|
-
cursor: pointer;
|
|
3658
|
-
}
|
|
3659
|
-
.w-e-text img:hover {
|
|
3660
|
-
box-shadow: 0 0 5px #333;
|
|
3661
|
-
}
|
|
3662
|
-
.w-e-text .w-e-todo {
|
|
3663
|
-
margin: 0 0 0 20px;
|
|
3664
|
-
}
|
|
3665
|
-
.w-e-text ul li {
|
|
3666
|
-
list-style-type: initial;
|
|
3667
|
-
}
|
|
3668
|
-
.w-e-text ol li {
|
|
3669
|
-
list-style-type: decimal;
|
|
3670
|
-
}
|
|
3671
|
-
.w-e-text .w-e-todo li {
|
|
3672
|
-
list-style: none;
|
|
3673
|
-
font-size: 1em;
|
|
3674
|
-
}
|
|
3675
|
-
.w-e-text .w-e-todo li span:nth-child(1) {
|
|
3676
|
-
position: relative;
|
|
3677
|
-
left: -18px;
|
|
3678
|
-
}
|
|
3679
|
-
.w-e-text .w-e-todo li span:nth-child(1) input {
|
|
3680
|
-
position: absolute;
|
|
3681
|
-
margin-right: 3px;
|
|
3682
|
-
}
|
|
3683
|
-
.w-e-text .w-e-todo li span:nth-child(1) input[type=checkbox] {
|
|
3684
|
-
top: 50%;
|
|
3685
|
-
margin-top: -6px;
|
|
3686
|
-
}
|
|
3687
|
-
.w-e-tooltip {
|
|
3688
|
-
position: absolute;
|
|
3689
|
-
display: flex;
|
|
3690
|
-
color: #f1f1f1;
|
|
3691
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
3692
|
-
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
|
|
3693
|
-
border-radius: 4px;
|
|
3694
|
-
padding: 4px 5px 6px;
|
|
3695
|
-
justify-content: center;
|
|
3696
|
-
align-items: center;
|
|
3697
|
-
}
|
|
3698
|
-
.w-e-tooltip-up::after {
|
|
3699
|
-
content: "";
|
|
3700
|
-
position: absolute;
|
|
3701
|
-
top: 100%;
|
|
3702
|
-
left: 50%;
|
|
3703
|
-
margin-left: -5px;
|
|
3704
|
-
border: 5px solid rgba(0, 0, 0, 0);
|
|
3705
|
-
border-top-color: rgba(0, 0, 0, 0.73);
|
|
3706
|
-
}
|
|
3707
|
-
.w-e-tooltip-down::after {
|
|
3708
|
-
content: "";
|
|
3709
|
-
position: absolute;
|
|
3710
|
-
bottom: 100%;
|
|
3711
|
-
left: 50%;
|
|
3712
|
-
margin-left: -5px;
|
|
3713
|
-
border: 5px solid rgba(0, 0, 0, 0);
|
|
3714
|
-
border-bottom-color: rgba(0, 0, 0, 0.73);
|
|
3715
|
-
}
|
|
3716
|
-
.w-e-tooltip-item-wrapper {
|
|
3717
|
-
cursor: pointer;
|
|
3718
|
-
font-size: 14px;
|
|
3719
|
-
margin: 0 5px;
|
|
3720
|
-
}
|
|
3721
|
-
.w-e-tooltip-item-wrapper:hover {
|
|
3722
|
-
color: #ccc;
|
|
3723
|
-
text-decoration: underline;
|
|
3724
|
-
}
|
|
3725
|
-
|
|
3726
3726
|
.is_required[data-v-5d95830e]::before {
|
|
3727
3727
|
content: "*";
|
|
3728
3728
|
color: #f56c6c;
|
|
@@ -3753,7 +3753,7 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3753
3753
|
.w-e-text-container [data-slate-editor] ol,.w-e-text-container [data-slate-editor] ul{padding-left:20px}.w-e-text-container [data-slate-editor] li{line-height:inherit;margin:10px 0}
|
|
3754
3754
|
.w-e-text-container [data-slate-editor] .table-container{border:1px dashed var(--w-e-textarea-border-color);border-radius:5px;margin-top:10px;overflow-x:auto;padding:10px;width:100%}.w-e-text-container [data-slate-editor] table{border-collapse:collapse}.w-e-text-container [data-slate-editor] table td,.w-e-text-container [data-slate-editor] table th{border:1px solid var(--w-e-textarea-border-color);line-height:1.5;min-width:30px;padding:3px 5px;text-align:left}.w-e-text-container [data-slate-editor] table th{background-color:var(--w-e-textarea-slight-bg-color);font-weight:700;text-align:center}.w-e-panel-content-table{background-color:var(--w-e-toolbar-bg-color)}.w-e-panel-content-table table{border-collapse:collapse}.w-e-panel-content-table td{border:1px solid var(--w-e-toolbar-border-color);cursor:pointer;height:15px;padding:3px 5px;width:20px}.w-e-panel-content-table td.active{background-color:var(--w-e-toolbar-active-bg-color)}
|
|
3755
3755
|
.w-e-textarea-video-container{background-image:linear-gradient(45deg,#eee 25%,transparent 0,transparent 75%,#eee 0,#eee),linear-gradient(45deg,#eee 25%,#fff 0,#fff 75%,#eee 0,#eee);background-position:0 0,10px 10px;background-size:20px 20px;border:1px dashed var(--w-e-textarea-border-color);border-radius:5px;margin:10px auto 0;padding:10px 0;text-align:center}
|
|
3756
|
-
.w-e-text-container [data-slate-editor] pre>code{word-wrap:normal;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace
|
|
3756
|
+
.w-e-text-container [data-slate-editor] pre>code{word-wrap:normal;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;hyphens:none;line-height:1.5;margin:.5em 0;overflow:auto;padding:1em;-moz-tab-size:4;-o-tab-size:4;tab-size:4;text-align:left;text-shadow:0 1px #fff;white-space:pre;word-break:normal;word-spacing:normal}.w-e-text-container [data-slate-editor] pre>code .token.cdata,.w-e-text-container [data-slate-editor] pre>code .token.comment,.w-e-text-container [data-slate-editor] pre>code .token.doctype,.w-e-text-container [data-slate-editor] pre>code .token.prolog{color:#708090}.w-e-text-container [data-slate-editor] pre>code .token.punctuation{color:#999}.w-e-text-container [data-slate-editor] pre>code .token.namespace{opacity:.7}.w-e-text-container [data-slate-editor] pre>code .token.boolean,.w-e-text-container [data-slate-editor] pre>code .token.constant,.w-e-text-container [data-slate-editor] pre>code .token.deleted,.w-e-text-container [data-slate-editor] pre>code .token.number,.w-e-text-container [data-slate-editor] pre>code .token.property,.w-e-text-container [data-slate-editor] pre>code .token.symbol,.w-e-text-container [data-slate-editor] pre>code .token.tag{color:#905}.w-e-text-container [data-slate-editor] pre>code .token.attr-name,.w-e-text-container [data-slate-editor] pre>code .token.builtin,.w-e-text-container [data-slate-editor] pre>code .token.char,.w-e-text-container [data-slate-editor] pre>code .token.inserted,.w-e-text-container [data-slate-editor] pre>code .token.selector,.w-e-text-container [data-slate-editor] pre>code .token.string{color:#690}.w-e-text-container [data-slate-editor] pre>code .language-css .token.string,.w-e-text-container [data-slate-editor] pre>code .style .token.string,.w-e-text-container [data-slate-editor] pre>code .token.entity,.w-e-text-container [data-slate-editor] pre>code .token.operator,.w-e-text-container [data-slate-editor] pre>code .token.url{color:#9a6e3a}.w-e-text-container [data-slate-editor] pre>code .token.atrule,.w-e-text-container [data-slate-editor] pre>code .token.attr-value,.w-e-text-container [data-slate-editor] pre>code .token.keyword{color:#07a}.w-e-text-container [data-slate-editor] pre>code .token.class-name,.w-e-text-container [data-slate-editor] pre>code .token.function{color:#dd4a68}.w-e-text-container [data-slate-editor] pre>code .token.important,.w-e-text-container [data-slate-editor] pre>code .token.regex,.w-e-text-container [data-slate-editor] pre>code .token.variable{color:#e90}.w-e-text-container [data-slate-editor] pre>code .token.bold,.w-e-text-container [data-slate-editor] pre>code .token.important{font-weight:700}.w-e-text-container [data-slate-editor] pre>code .token.italic{font-style:italic}.w-e-text-container [data-slate-editor] pre>code .token.entity{cursor:help}
|
|
3757
3757
|
.editor ul li {
|
|
3758
3758
|
list-style-type: initial;
|
|
3759
3759
|
}
|
|
@@ -4228,7 +4228,7 @@ div {
|
|
|
4228
4228
|
.w-e-text-container [data-slate-editor] ol,.w-e-text-container [data-slate-editor] ul{padding-left:20px}.w-e-text-container [data-slate-editor] li{line-height:inherit;margin:10px 0}
|
|
4229
4229
|
.w-e-text-container [data-slate-editor] .table-container{border:1px dashed var(--w-e-textarea-border-color);border-radius:5px;margin-top:10px;overflow-x:auto;padding:10px;width:100%}.w-e-text-container [data-slate-editor] table{border-collapse:collapse}.w-e-text-container [data-slate-editor] table td,.w-e-text-container [data-slate-editor] table th{border:1px solid var(--w-e-textarea-border-color);line-height:1.5;min-width:30px;padding:3px 5px;text-align:left}.w-e-text-container [data-slate-editor] table th{background-color:var(--w-e-textarea-slight-bg-color);font-weight:700;text-align:center}.w-e-panel-content-table{background-color:var(--w-e-toolbar-bg-color)}.w-e-panel-content-table table{border-collapse:collapse}.w-e-panel-content-table td{border:1px solid var(--w-e-toolbar-border-color);cursor:pointer;height:15px;padding:3px 5px;width:20px}.w-e-panel-content-table td.active{background-color:var(--w-e-toolbar-active-bg-color)}
|
|
4230
4230
|
.w-e-textarea-video-container{background-image:linear-gradient(45deg,#eee 25%,transparent 0,transparent 75%,#eee 0,#eee),linear-gradient(45deg,#eee 25%,#fff 0,#fff 75%,#eee 0,#eee);background-position:0 0,10px 10px;background-size:20px 20px;border:1px dashed var(--w-e-textarea-border-color);border-radius:5px;margin:10px auto 0;padding:10px 0;text-align:center}
|
|
4231
|
-
.w-e-text-container [data-slate-editor] pre>code{word-wrap:normal;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace
|
|
4231
|
+
.w-e-text-container [data-slate-editor] pre>code{word-wrap:normal;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;hyphens:none;line-height:1.5;margin:.5em 0;overflow:auto;padding:1em;-moz-tab-size:4;-o-tab-size:4;tab-size:4;text-align:left;text-shadow:0 1px #fff;white-space:pre;word-break:normal;word-spacing:normal}.w-e-text-container [data-slate-editor] pre>code .token.cdata,.w-e-text-container [data-slate-editor] pre>code .token.comment,.w-e-text-container [data-slate-editor] pre>code .token.doctype,.w-e-text-container [data-slate-editor] pre>code .token.prolog{color:#708090}.w-e-text-container [data-slate-editor] pre>code .token.punctuation{color:#999}.w-e-text-container [data-slate-editor] pre>code .token.namespace{opacity:.7}.w-e-text-container [data-slate-editor] pre>code .token.boolean,.w-e-text-container [data-slate-editor] pre>code .token.constant,.w-e-text-container [data-slate-editor] pre>code .token.deleted,.w-e-text-container [data-slate-editor] pre>code .token.number,.w-e-text-container [data-slate-editor] pre>code .token.property,.w-e-text-container [data-slate-editor] pre>code .token.symbol,.w-e-text-container [data-slate-editor] pre>code .token.tag{color:#905}.w-e-text-container [data-slate-editor] pre>code .token.attr-name,.w-e-text-container [data-slate-editor] pre>code .token.builtin,.w-e-text-container [data-slate-editor] pre>code .token.char,.w-e-text-container [data-slate-editor] pre>code .token.inserted,.w-e-text-container [data-slate-editor] pre>code .token.selector,.w-e-text-container [data-slate-editor] pre>code .token.string{color:#690}.w-e-text-container [data-slate-editor] pre>code .language-css .token.string,.w-e-text-container [data-slate-editor] pre>code .style .token.string,.w-e-text-container [data-slate-editor] pre>code .token.entity,.w-e-text-container [data-slate-editor] pre>code .token.operator,.w-e-text-container [data-slate-editor] pre>code .token.url{color:#9a6e3a}.w-e-text-container [data-slate-editor] pre>code .token.atrule,.w-e-text-container [data-slate-editor] pre>code .token.attr-value,.w-e-text-container [data-slate-editor] pre>code .token.keyword{color:#07a}.w-e-text-container [data-slate-editor] pre>code .token.class-name,.w-e-text-container [data-slate-editor] pre>code .token.function{color:#dd4a68}.w-e-text-container [data-slate-editor] pre>code .token.important,.w-e-text-container [data-slate-editor] pre>code .token.regex,.w-e-text-container [data-slate-editor] pre>code .token.variable{color:#e90}.w-e-text-container [data-slate-editor] pre>code .token.bold,.w-e-text-container [data-slate-editor] pre>code .token.important{font-weight:700}.w-e-text-container [data-slate-editor] pre>code .token.italic{font-style:italic}.w-e-text-container [data-slate-editor] pre>code .token.entity{cursor:help}
|
|
4232
4232
|
@media print {
|
|
4233
4233
|
.w-e-scroll {
|
|
4234
4234
|
overflow: hidden !important;
|