aldehyde 0.0.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.
Files changed (156) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +1 -0
  3. package/dist/163.js +2 -0
  4. package/dist/163.js.LICENSE.txt +43 -0
  5. package/dist/41.js +1 -0
  6. package/dist/aldehyde.js +2 -0
  7. package/dist/aldehyde.js.LICENSE.txt +122 -0
  8. package/dist/chemstruc-graph.js +1 -0
  9. package/dist/css/163-24392163d3c7b54ea806.css +11 -0
  10. package/dist/css/290-5e8e152675ab7d201c00.css +886 -0
  11. package/dist/css/chemstruc-graph-87868f791bf92fb80db9.css +29 -0
  12. package/dist/css/main-2e6725ec1b56da516cee.css +256 -0
  13. package/dist/html-editor-draft.js +2 -0
  14. package/dist/html-editor-draft.js.LICENSE.txt +5 -0
  15. package/dist/images/logo-06f6a5d8.png +0 -0
  16. package/dist/index.html +4 -0
  17. package/dist/signature.js +2 -0
  18. package/dist/signature.js.LICENSE.txt +17 -0
  19. package/package.json +180 -0
  20. package/src/components/chart/antd/Chart.js +32 -0
  21. package/src/components/chart/antd/Chart10000.js +90 -0
  22. package/src/components/chart/antd/Max2DimLineChart.js +128 -0
  23. package/src/components/chart/antd/PieChart1.js +54 -0
  24. package/src/components/chart/antd/PieChart2.js +56 -0
  25. package/src/components/chart/antd/chart-utils.tsx +50 -0
  26. package/src/components/chart/antd/column-chart-sub.tsx +67 -0
  27. package/src/components/chart/antd/line-chart-sub.tsx +65 -0
  28. package/src/components/chart/antd/pie-chart-sub.tsx +54 -0
  29. package/src/components/chart/antd/statview-d2-chart.tsx +125 -0
  30. package/src/components/chart/statview-l2-chart.tsx +69 -0
  31. package/src/components/controls/action/index.css +9 -0
  32. package/src/components/controls/action/index.tsx +228 -0
  33. package/src/components/controls/action/utils.tsx +122 -0
  34. package/src/components/controls/auto-complete/index.tsx +80 -0
  35. package/src/components/controls/cascader/index.js +97 -0
  36. package/src/components/controls/chemstruc/graph.tsx +150 -0
  37. package/src/components/controls/chemstruc/index.css +28 -0
  38. package/src/components/controls/collapse-card/index.css +9 -0
  39. package/src/components/controls/collapse-card/index.tsx +59 -0
  40. package/src/components/controls/color-picker/index.css +27 -0
  41. package/src/components/controls/color-picker/index.tsx +88 -0
  42. package/src/components/controls/cquery/cquick-button.tsx +117 -0
  43. package/src/components/controls/date-picker/index.tsx +141 -0
  44. package/src/components/controls/entity-select/entity-select.tsx +277 -0
  45. package/src/components/controls/entity-select/index.css +6 -0
  46. package/src/components/controls/entity-select/popover-entity-select.tsx +112 -0
  47. package/src/components/controls/entry-control.tsx +240 -0
  48. package/src/components/controls/enum-badge/index.tsx +28 -0
  49. package/src/components/controls/enum-tag/index.tsx +30 -0
  50. package/src/components/controls/file-view/drawer-file-view.tsx +69 -0
  51. package/src/components/controls/file-view/index.tsx +145 -0
  52. package/src/components/controls/html-editor/draft.tsx +161 -0
  53. package/src/components/controls/html-editor/tinymce.js +55 -0
  54. package/src/components/controls/input-number/index.tsx +101 -0
  55. package/src/components/controls/input-range/index.tsx +48 -0
  56. package/src/components/controls/password-setter/index.css +3 -0
  57. package/src/components/controls/password-setter/index.js +70 -0
  58. package/src/components/controls/progress/index.tsx +61 -0
  59. package/src/components/controls/relation-existion/index.css +4 -0
  60. package/src/components/controls/relation-existion/index.tsx +108 -0
  61. package/src/components/controls/rfield/index.css +4 -0
  62. package/src/components/controls/rfield/index.tsx +161 -0
  63. package/src/components/controls/signature/index.tsx +162 -0
  64. package/src/components/controls/steps/index.tsx +58 -0
  65. package/src/components/controls/text/ellipsis-text.tsx +70 -0
  66. package/src/components/controls/upload/index.tsx +122 -0
  67. package/src/components/controls/view-control.tsx +177 -0
  68. package/src/components/detail/button/cquery-button-bar.tsx +112 -0
  69. package/src/components/detail/button/index.css +43 -0
  70. package/src/components/detail/button/submit-button-bar.tsx +151 -0
  71. package/src/components/detail/dtmpl.css +53 -0
  72. package/src/components/detail/edit/dtmpl-edit.tsx +218 -0
  73. package/src/components/detail/edit/fields-edit-card.tsx +103 -0
  74. package/src/components/detail/edit/modal-dtmpl-edit.tsx +198 -0
  75. package/src/components/detail/edit/modal-row-edit.tsx +72 -0
  76. package/src/components/detail/edit/post-result/index.tsx +52 -0
  77. package/src/components/detail/edit/row-edit-card.tsx +125 -0
  78. package/src/components/detail/edit/row-editor.tsx +71 -0
  79. package/src/components/detail/rightbar/index.css +35 -0
  80. package/src/components/detail/rightbar/index.tsx +76 -0
  81. package/src/components/detail/view/act-dtmpl-view.tsx +155 -0
  82. package/src/components/detail/view/dtmpl-view.tsx +143 -0
  83. package/src/components/detail/view/field-view-group.tsx +73 -0
  84. package/src/components/detail/view/modal-dtmpl-view.tsx +56 -0
  85. package/src/components/detail/view/snapshot-timeline.tsx +130 -0
  86. package/src/components/exportor/export-frame.css +3 -0
  87. package/src/components/exportor/export-frame.tsx +194 -0
  88. package/src/components/exportor/index.tsx +60 -0
  89. package/src/components/form/criteria-form.tsx +241 -0
  90. package/src/components/form/dtmpl-form.css +4 -0
  91. package/src/components/form/dtmpl-form.tsx +272 -0
  92. package/src/components/form/field-group-form.tsx +75 -0
  93. package/src/components/form/fields-form.tsx +51 -0
  94. package/src/components/form/form-Item-group.tsx +99 -0
  95. package/src/components/form/index.css +13 -0
  96. package/src/components/import/excel-import.tsx +316 -0
  97. package/src/components/import/index.css +54 -0
  98. package/src/components/import/template-builder.js +474 -0
  99. package/src/components/import/template.css +51 -0
  100. package/src/components/layout/MainPage.tsx +230 -0
  101. package/src/components/layout/footer/index.css +6 -0
  102. package/src/components/layout/footer/index.js +17 -0
  103. package/src/components/layout/header/index.css +86 -0
  104. package/src/components/layout/header/index.tsx +58 -0
  105. package/src/components/layout/menu/block.tsx +88 -0
  106. package/src/components/layout/menu/l2menu-message-bar.tsx +118 -0
  107. package/src/components/layout/menu/l2menu-quick-bar.tsx +132 -0
  108. package/src/components/layout/menu/menu-2layers.tsx +92 -0
  109. package/src/components/layout/menu/menu-render.tsx +49 -0
  110. package/src/components/layout/menu/reset-password.tsx +185 -0
  111. package/src/components/layout/menu/user-bar.tsx +97 -0
  112. package/src/components/layout/menu/userinfo-bar.tsx +70 -0
  113. package/src/components/layout/sidebar/index.css +26 -0
  114. package/src/components/layout/sidebar/index.tsx +38 -0
  115. package/src/components/login.js +137 -0
  116. package/src/components/module/criteria-page.tsx +175 -0
  117. package/src/components/module/dtmpl-page.tsx +70 -0
  118. package/src/components/module/ltmpl-page.tsx +181 -0
  119. package/src/components/routable/dtmpl-route.tsx +96 -0
  120. package/src/components/routable/import-route.tsx +28 -0
  121. package/src/components/routable/ltmpl-route.tsx +158 -0
  122. package/src/components/table/act-table.tsx +635 -0
  123. package/src/components/table/column/column-selector.tsx +79 -0
  124. package/src/components/table/column/index.css +14 -0
  125. package/src/components/table/index.css +45 -0
  126. package/src/components/table/l2-act-table.tsx +85 -0
  127. package/src/components/table/modal-select-table.tsx +248 -0
  128. package/src/components/table/pagination.css +15 -0
  129. package/src/components/table/pagination.tsx +72 -0
  130. package/src/components/table/query-table.tsx +331 -0
  131. package/src/components/table/relation-table.tsx +600 -0
  132. package/src/components/table/select-table.tsx +247 -0
  133. package/src/components/table/selected-rows-card.tsx +62 -0
  134. package/src/components/table/stat/restat.tsx +79 -0
  135. package/src/components/table/table-util.tsx +33 -0
  136. package/src/components/tmpl/control-type-supportor.tsx +97 -0
  137. package/src/components/tmpl/hc-data-source.tsx +230 -0
  138. package/src/components/tmpl/hcservice-v3.tsx +624 -0
  139. package/src/components/tmpl/interface.tsx +308 -0
  140. package/src/components/tmpl/superagent.js +93 -0
  141. package/src/components/tmpl/tmpl-config-analysis.tsx +111 -0
  142. package/src/components/units/EncryptUtils.js +38 -0
  143. package/src/components/units/image.d.ts +8 -0
  144. package/src/components/units/index.tsx +536 -0
  145. package/src/components/units/logo.png +0 -0
  146. package/src/components/units/storage.js +3 -0
  147. package/src/components/welcome/HCWelcome.js +232 -0
  148. package/src/components/welcome/index.css +13 -0
  149. package/src/components/welcome/logo.png +0 -0
  150. package/src/components/welcome/quick-entrance.tsx +77 -0
  151. package/src/components/welcome/workbench.tsx +76 -0
  152. package/src/index.js +4 -0
  153. package/src/style/common.css +79 -0
  154. package/src/style/coverstyle.css +49 -0
  155. package/src/style/transstyle.css +24 -0
  156. package/tsconfig.json +106 -0
@@ -0,0 +1,886 @@
1
+ .rdw-option-wrapper {
2
+ border: 1px solid #F1F1F1;
3
+ padding: 5px;
4
+ min-width: 25px;
5
+ height: 20px;
6
+ border-radius: 2px;
7
+ margin: 0 4px;
8
+ display: flex;
9
+ justify-content: center;
10
+ align-items: center;
11
+ cursor: pointer;
12
+ background: white;
13
+ text-transform: capitalize;
14
+ }
15
+ .rdw-option-wrapper:hover {
16
+ box-shadow: 1px 1px 0px #BFBDBD;
17
+ }
18
+ .rdw-option-wrapper:active {
19
+ box-shadow: 1px 1px 0px #BFBDBD inset;
20
+ }
21
+ .rdw-option-active {
22
+ box-shadow: 1px 1px 0px #BFBDBD inset;
23
+ }
24
+ .rdw-option-disabled {
25
+ opacity: 0.3;
26
+ cursor: default;
27
+ }
28
+
29
+ .rdw-dropdown-wrapper {
30
+ height: 30px;
31
+ background: white;
32
+ cursor: pointer;
33
+ border: 1px solid #F1F1F1;
34
+ border-radius: 2px;
35
+ margin: 0 3px;
36
+ text-transform: capitalize;
37
+ background: white;
38
+ }
39
+ .rdw-dropdown-wrapper:focus {
40
+ outline: none;
41
+ }
42
+ .rdw-dropdown-wrapper:hover {
43
+ box-shadow: 1px 1px 0px #BFBDBD;
44
+ background-color: #FFFFFF;
45
+ }
46
+ .rdw-dropdown-wrapper:active {
47
+ box-shadow: 1px 1px 0px #BFBDBD inset;
48
+ }
49
+ .rdw-dropdown-carettoopen {
50
+ height: 0px;
51
+ width: 0px;
52
+ position: absolute;
53
+ top: 35%;
54
+ right: 10%;
55
+ border-top: 6px solid black;
56
+ border-left: 5px solid transparent;
57
+ border-right: 5px solid transparent;
58
+ }
59
+ .rdw-dropdown-carettoclose {
60
+ height: 0px;
61
+ width: 0px;
62
+ position: absolute;
63
+ top: 35%;
64
+ right: 10%;
65
+ border-bottom: 6px solid black;
66
+ border-left: 5px solid transparent;
67
+ border-right: 5px solid transparent;
68
+ }
69
+ .rdw-dropdown-selectedtext {
70
+ display: flex;
71
+ position: relative;
72
+ height: 100%;
73
+ align-items: center;
74
+ padding: 0 5px;
75
+ }
76
+ .rdw-dropdown-optionwrapper {
77
+ z-index: 100;
78
+ position: relative;
79
+ border: 1px solid #F1F1F1;
80
+ width: 98%;
81
+ background: white;
82
+ border-radius: 2px;
83
+ margin: 0;
84
+ padding: 0;
85
+ max-height: 250px;
86
+ overflow-y: scroll;
87
+ }
88
+ .rdw-dropdown-optionwrapper:hover {
89
+ box-shadow: 1px 1px 0px #BFBDBD;
90
+ background-color: #FFFFFF;
91
+ }
92
+
93
+ .rdw-dropdownoption-default {
94
+ min-height: 25px;
95
+ display: flex;
96
+ align-items: center;
97
+ padding: 0 5px;
98
+ }
99
+ .rdw-dropdownoption-highlighted {
100
+ background: #F1F1F1;
101
+ }
102
+ .rdw-dropdownoption-active {
103
+ background: #f5f5f5;
104
+ }
105
+ .rdw-dropdownoption-disabled {
106
+ opacity: 0.3;
107
+ cursor: default;
108
+ }
109
+
110
+ .rdw-inline-wrapper {
111
+ display: flex;
112
+ align-items: center;
113
+ margin-bottom: 6px;
114
+ flex-wrap: wrap
115
+ }
116
+ .rdw-inline-dropdown {
117
+ width: 50px;
118
+ }
119
+ .rdw-inline-dropdownoption {
120
+ height: 40px;
121
+ display: flex;
122
+ justify-content: center;
123
+ }
124
+
125
+ .rdw-block-wrapper {
126
+ display: flex;
127
+ align-items: center;
128
+ margin-bottom: 6px;
129
+ flex-wrap: wrap
130
+ }
131
+ .rdw-block-dropdown {
132
+ width: 110px;
133
+ }
134
+
135
+ .rdw-fontsize-wrapper {
136
+ display: flex;
137
+ align-items: center;
138
+ margin-bottom: 6px;
139
+ flex-wrap: wrap
140
+ }
141
+ .rdw-fontsize-dropdown {
142
+ min-width: 40px;
143
+ }
144
+ .rdw-fontsize-option {
145
+ display: flex;
146
+ justify-content: center;
147
+ }
148
+
149
+ .rdw-fontfamily-wrapper {
150
+ display: flex;
151
+ align-items: center;
152
+ margin-bottom: 6px;
153
+ flex-wrap: wrap
154
+ }
155
+ .rdw-fontfamily-dropdown {
156
+ width: 115px;
157
+ }
158
+ .rdw-fontfamily-placeholder {
159
+ white-space: nowrap;
160
+ max-width: 90px;
161
+ overflow: hidden;
162
+ text-overflow: ellipsis;
163
+ }
164
+ .rdw-fontfamily-optionwrapper {
165
+ width: 140px;
166
+ }
167
+
168
+ .rdw-list-wrapper {
169
+ display: flex;
170
+ align-items: center;
171
+ margin-bottom: 6px;
172
+ flex-wrap: wrap
173
+ }
174
+ .rdw-list-dropdown {
175
+ width: 50px;
176
+ z-index: 90;
177
+ }
178
+ .rdw-list-dropdownOption {
179
+ height: 40px;
180
+ display: flex;
181
+ justify-content: center;
182
+ }
183
+
184
+ .rdw-text-align-wrapper {
185
+ display: flex;
186
+ align-items: center;
187
+ margin-bottom: 6px;
188
+ flex-wrap: wrap
189
+ }
190
+ .rdw-text-align-dropdown {
191
+ width: 50px;
192
+ z-index: 90;
193
+ }
194
+ .rdw-text-align-dropdownOption {
195
+ height: 40px;
196
+ display: flex;
197
+ justify-content: center;
198
+ }
199
+ .rdw-right-aligned-block {
200
+ text-align: right;
201
+ }
202
+ .rdw-left-aligned-block {
203
+ text-align: left !important;
204
+ }
205
+ .rdw-center-aligned-block {
206
+ text-align: center !important;
207
+ }
208
+ .rdw-justify-aligned-block {
209
+ text-align: justify !important;
210
+ }
211
+ .rdw-right-aligned-block > div {
212
+ display: inline-block;
213
+ }
214
+ .rdw-left-aligned-block > div {
215
+ display: inline-block;
216
+ }
217
+ .rdw-center-aligned-block > div {
218
+ display: inline-block;
219
+ }
220
+ .rdw-justify-aligned-block > div {
221
+ display: inline-block;
222
+ }
223
+
224
+ .rdw-colorpicker-wrapper {
225
+ display: flex;
226
+ align-items: center;
227
+ margin-bottom: 6px;
228
+ position: relative;
229
+ flex-wrap: wrap
230
+ }
231
+ .rdw-colorpicker-modal {
232
+ position: absolute;
233
+ top: 35px;
234
+ left: 5px;
235
+ display: flex;
236
+ flex-direction: column;
237
+ width: 175px;
238
+ height: 175px;
239
+ border: 1px solid #F1F1F1;
240
+ padding: 15px;
241
+ border-radius: 2px;
242
+ z-index: 100;
243
+ background: white;
244
+ box-shadow: 3px 3px 5px #BFBDBD;
245
+ }
246
+ .rdw-colorpicker-modal-header {
247
+ display: flex;
248
+ padding-bottom: 5px;
249
+ }
250
+ .rdw-colorpicker-modal-style-label {
251
+ font-size: 15px;
252
+ width: 50%;
253
+ text-align: center;
254
+ cursor: pointer;
255
+ padding: 0 10px 5px;
256
+ }
257
+ .rdw-colorpicker-modal-style-label-active {
258
+ border-bottom: 2px solid #0a66b7;
259
+ }
260
+ .rdw-colorpicker-modal-options {
261
+ margin: 5px auto;
262
+ display: flex;
263
+ width: 100%;
264
+ height: 100%;
265
+ flex-wrap: wrap;
266
+ overflow: scroll;
267
+ }
268
+ .rdw-colorpicker-cube {
269
+ width: 22px;
270
+ height: 22px;
271
+ border: 1px solid #F1F1F1;
272
+ }
273
+ .rdw-colorpicker-option {
274
+ margin: 3px;
275
+ padding: 0;
276
+ min-height: 20px;
277
+ border: none;
278
+ width: 22px;
279
+ height: 22px;
280
+ min-width: 22px;
281
+ box-shadow: 1px 2px 1px #BFBDBD inset;
282
+ }
283
+ .rdw-colorpicker-option:hover {
284
+ box-shadow: 1px 2px 1px #BFBDBD;
285
+ }
286
+ .rdw-colorpicker-option:active {
287
+ box-shadow: -1px -2px 1px #BFBDBD;
288
+ }
289
+ .rdw-colorpicker-option-active {
290
+ box-shadow: 0px 0px 2px 2px #BFBDBD;
291
+ }
292
+
293
+ .rdw-link-wrapper {
294
+ display: flex;
295
+ align-items: center;
296
+ margin-bottom: 6px;
297
+ position: relative;
298
+ flex-wrap: wrap
299
+ }
300
+ .rdw-link-dropdown {
301
+ width: 50px;
302
+ }
303
+ .rdw-link-dropdownOption {
304
+ height: 40px;
305
+ display: flex;
306
+ justify-content: center;
307
+ }
308
+ .rdw-link-dropdownPlaceholder {
309
+ margin-left: 8px;
310
+ }
311
+ .rdw-link-modal {
312
+ position: absolute;
313
+ top: 35px;
314
+ left: 5px;
315
+ display: flex;
316
+ flex-direction: column;
317
+ width: 235px;
318
+ height: 205px;
319
+ border: 1px solid #F1F1F1;
320
+ padding: 15px;
321
+ border-radius: 2px;
322
+ z-index: 100;
323
+ background: white;
324
+ box-shadow: 3px 3px 5px #BFBDBD;
325
+ }
326
+ .rdw-link-modal-label {
327
+ font-size: 15px;
328
+ }
329
+ .rdw-link-modal-input {
330
+ margin-top: 5px;
331
+ border-radius: 2px;
332
+ border: 1px solid #F1F1F1;
333
+ height: 25px;
334
+ margin-bottom: 15px;
335
+ padding: 0 5px;
336
+ }
337
+ .rdw-link-modal-input:focus {
338
+ outline: none;
339
+ }
340
+ .rdw-link-modal-buttonsection {
341
+ margin: 0 auto;
342
+ }
343
+ .rdw-link-modal-target-option {
344
+ margin-bottom: 20px;
345
+ }
346
+ .rdw-link-modal-target-option > span {
347
+ margin-left: 5px;
348
+ }
349
+ .rdw-link-modal-btn {
350
+ margin-left: 10px;
351
+ width: 75px;
352
+ height: 30px;
353
+ border: 1px solid #F1F1F1;
354
+ border-radius: 2px;
355
+ cursor: pointer;
356
+ background: white;
357
+ text-transform: capitalize;
358
+ }
359
+ .rdw-link-modal-btn:hover {
360
+ box-shadow: 1px 1px 0px #BFBDBD;
361
+ }
362
+ .rdw-link-modal-btn:active {
363
+ box-shadow: 1px 1px 0px #BFBDBD inset;
364
+ }
365
+ .rdw-link-modal-btn:focus {
366
+ outline: none !important;
367
+ }
368
+ .rdw-link-modal-btn:disabled {
369
+ background: #ece9e9;
370
+ }
371
+ .rdw-link-dropdownoption {
372
+ height: 40px;
373
+ display: flex;
374
+ justify-content: center;
375
+ }
376
+ .rdw-history-dropdown {
377
+ width: 50px;
378
+ }
379
+
380
+ .rdw-embedded-wrapper {
381
+ display: flex;
382
+ align-items: center;
383
+ margin-bottom: 6px;
384
+ position: relative;
385
+ flex-wrap: wrap
386
+ }
387
+ .rdw-embedded-modal {
388
+ position: absolute;
389
+ top: 35px;
390
+ left: 5px;
391
+ display: flex;
392
+ flex-direction: column;
393
+ width: 235px;
394
+ height: 180px;
395
+ border: 1px solid #F1F1F1;
396
+ padding: 15px;
397
+ border-radius: 2px;
398
+ z-index: 100;
399
+ background: white;
400
+ justify-content: space-between;
401
+ box-shadow: 3px 3px 5px #BFBDBD;
402
+ }
403
+ .rdw-embedded-modal-header {
404
+ font-size: 15px;
405
+ display: flex;
406
+ }
407
+ .rdw-embedded-modal-header-option {
408
+ width: 50%;
409
+ cursor: pointer;
410
+ display: flex;
411
+ justify-content: center;
412
+ align-items: center;
413
+ flex-direction: column;
414
+ }
415
+ .rdw-embedded-modal-header-label {
416
+ width: 95px;
417
+ border: 1px solid #f1f1f1;
418
+ margin-top: 5px;
419
+ background: #6EB8D4;
420
+ border-bottom: 2px solid #0a66b7;
421
+ }
422
+ .rdw-embedded-modal-link-section {
423
+ display: flex;
424
+ flex-direction: column;
425
+ }
426
+ .rdw-embedded-modal-link-input {
427
+ width: 88%;
428
+ height: 35px;
429
+ margin: 10px 0;
430
+ border: 1px solid #F1F1F1;
431
+ border-radius: 2px;
432
+ font-size: 15px;
433
+ padding: 0 5px;
434
+ }
435
+ .rdw-embedded-modal-link-input-wrapper {
436
+ display: flex;
437
+ align-items: center;
438
+ }
439
+ .rdw-embedded-modal-link-input:focus {
440
+ outline: none;
441
+ }
442
+ .rdw-embedded-modal-btn-section {
443
+ display: flex;
444
+ justify-content: center;
445
+ }
446
+ .rdw-embedded-modal-btn {
447
+ margin: 0 3px;
448
+ width: 75px;
449
+ height: 30px;
450
+ border: 1px solid #F1F1F1;
451
+ border-radius: 2px;
452
+ cursor: pointer;
453
+ background: white;
454
+ text-transform: capitalize;
455
+ }
456
+ .rdw-embedded-modal-btn:hover {
457
+ box-shadow: 1px 1px 0px #BFBDBD;
458
+ }
459
+ .rdw-embedded-modal-btn:active {
460
+ box-shadow: 1px 1px 0px #BFBDBD inset;
461
+ }
462
+ .rdw-embedded-modal-btn:focus {
463
+ outline: none !important;
464
+ }
465
+ .rdw-embedded-modal-btn:disabled {
466
+ background: #ece9e9;
467
+ }
468
+ .rdw-embedded-modal-size {
469
+ align-items: center;
470
+ display: flex;
471
+ margin: 8px 0;
472
+ justify-content: space-between;
473
+ }
474
+ .rdw-embedded-modal-size-input {
475
+ width: 80%;
476
+ height: 20px;
477
+ border: 1px solid #F1F1F1;
478
+ border-radius: 2px;
479
+ font-size: 12px;
480
+ }
481
+ .rdw-embedded-modal-size-input:focus {
482
+ outline: none;
483
+ }
484
+
485
+ .rdw-emoji-wrapper {
486
+ display: flex;
487
+ align-items: center;
488
+ margin-bottom: 6px;
489
+ position: relative;
490
+ flex-wrap: wrap
491
+ }
492
+ .rdw-emoji-modal {
493
+ overflow: auto;
494
+ position: absolute;
495
+ top: 35px;
496
+ left: 5px;
497
+ display: flex;
498
+ flex-wrap: wrap;
499
+ width: 235px;
500
+ height: 180px;
501
+ border: 1px solid #F1F1F1;
502
+ padding: 15px;
503
+ border-radius: 2px;
504
+ z-index: 100;
505
+ background: white;
506
+ box-shadow: 3px 3px 5px #BFBDBD;
507
+ }
508
+ .rdw-emoji-icon {
509
+ margin: 2.5px;
510
+ height: 24px;
511
+ width: 24px;
512
+ cursor: pointer;
513
+ font-size: 22px;
514
+ display: flex;
515
+ justify-content: center;
516
+ align-items: center;
517
+ }
518
+
519
+ .rdw-spinner {
520
+ display: flex;
521
+ align-items: center;
522
+ justify-content: center;
523
+ height: 100%;
524
+ width: 100%;
525
+ }
526
+ .rdw-spinner > div {
527
+ width: 12px;
528
+ height: 12px;
529
+ background-color: #333;
530
+
531
+ border-radius: 100%;
532
+ display: inline-block;
533
+ -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
534
+ animation: sk-bouncedelay 1.4s infinite ease-in-out both;
535
+ }
536
+ .rdw-spinner .rdw-bounce1 {
537
+ -webkit-animation-delay: -0.32s;
538
+ animation-delay: -0.32s;
539
+ }
540
+ .rdw-spinner .rdw-bounce2 {
541
+ -webkit-animation-delay: -0.16s;
542
+ animation-delay: -0.16s;
543
+ }
544
+ @-webkit-keyframes sk-bouncedelay {
545
+ 0%, 80%, 100% { -webkit-transform: scale(0) }
546
+ 40% { -webkit-transform: scale(1.0) }
547
+ }
548
+ @keyframes sk-bouncedelay {
549
+ 0%, 80%, 100% {
550
+ -webkit-transform: scale(0);
551
+ transform: scale(0);
552
+ } 40% {
553
+ -webkit-transform: scale(1.0);
554
+ transform: scale(1.0);
555
+ }
556
+ }
557
+
558
+ .rdw-image-wrapper {
559
+ display: flex;
560
+ align-items: center;
561
+ margin-bottom: 6px;
562
+ position: relative;
563
+ flex-wrap: wrap
564
+ }
565
+ .rdw-image-modal {
566
+ position: absolute;
567
+ top: 35px;
568
+ left: 5px;
569
+ display: flex;
570
+ flex-direction: column;
571
+ width: 235px;
572
+ border: 1px solid #F1F1F1;
573
+ padding: 15px;
574
+ border-radius: 2px;
575
+ z-index: 100;
576
+ background: white;
577
+ box-shadow: 3px 3px 5px #BFBDBD;
578
+ }
579
+ .rdw-image-modal-header {
580
+ font-size: 15px;
581
+ margin: 10px 0;
582
+ display: flex;
583
+ }
584
+ .rdw-image-modal-header-option {
585
+ width: 50%;
586
+ cursor: pointer;
587
+ display: flex;
588
+ justify-content: center;
589
+ align-items: center;
590
+ flex-direction: column;
591
+ }
592
+ .rdw-image-modal-header-label {
593
+ width: 80px;
594
+ background: #f1f1f1;
595
+ border: 1px solid #f1f1f1;
596
+ margin-top: 5px;
597
+ }
598
+ .rdw-image-modal-header-label-highlighted {
599
+ background: #6EB8D4;
600
+ border-bottom: 2px solid #0a66b7;
601
+ }
602
+ .rdw-image-modal-upload-option {
603
+ width: 100%;
604
+ color: gray;
605
+ cursor: pointer;
606
+ display: flex;
607
+ border: none;
608
+ font-size: 15px;
609
+ align-items: center;
610
+ justify-content: center;
611
+ background-color: #f1f1f1;
612
+ outline: 2px dashed gray;
613
+ outline-offset: -10px;
614
+ margin: 10px 0;
615
+ padding: 9px 0;
616
+ }
617
+ .rdw-image-modal-upload-option-highlighted {
618
+ outline: 2px dashed #0a66b7;
619
+ }
620
+ .rdw-image-modal-upload-option-label {
621
+ cursor: pointer;
622
+ height: 100%;
623
+ width: 100%;
624
+ display: flex;
625
+ justify-content: center;
626
+ align-items: center;
627
+ padding: 15px;
628
+ }
629
+ .rdw-image-modal-upload-option-label span{
630
+ padding: 0 20px;
631
+ }
632
+ .rdw-image-modal-upload-option-image-preview {
633
+ max-width: 100%;
634
+ max-height: 200px;
635
+ }
636
+ .rdw-image-modal-upload-option-input {
637
+ width: 0.1px;
638
+ height: 0.1px;
639
+ opacity: 0;
640
+ overflow: hidden;
641
+ position: absolute;
642
+ z-index: -1;
643
+ }
644
+ .rdw-image-modal-url-section {
645
+ display: flex;
646
+ align-items: center;
647
+ }
648
+ .rdw-image-modal-url-input {
649
+ width: 90%;
650
+ height: 35px;
651
+ margin: 15px 0 12px;
652
+ border: 1px solid #F1F1F1;
653
+ border-radius: 2px;
654
+ font-size: 15px;
655
+ padding: 0 5px;
656
+ }
657
+ .rdw-image-modal-btn-section {
658
+ margin: 10px auto 0;
659
+ }
660
+ .rdw-image-modal-url-input:focus {
661
+ outline: none;
662
+ }
663
+ .rdw-image-modal-btn {
664
+ margin: 0 5px;
665
+ width: 75px;
666
+ height: 30px;
667
+ border: 1px solid #F1F1F1;
668
+ border-radius: 2px;
669
+ cursor: pointer;
670
+ background: white;
671
+ text-transform: capitalize;
672
+ }
673
+ .rdw-image-modal-btn:hover {
674
+ box-shadow: 1px 1px 0px #BFBDBD;
675
+ }
676
+ .rdw-image-modal-btn:active {
677
+ box-shadow: 1px 1px 0px #BFBDBD inset;
678
+ }
679
+ .rdw-image-modal-btn:focus {
680
+ outline: none !important;
681
+ }
682
+ .rdw-image-modal-btn:disabled {
683
+ background: #ece9e9;
684
+ }
685
+ .rdw-image-modal-spinner {
686
+ position: absolute;
687
+ top: -3px;
688
+ left: 0;
689
+ width: 100%;
690
+ height: 100%;
691
+ opacity: 0.5;
692
+ }
693
+ .rdw-image-modal-alt-input {
694
+ width: 70%;
695
+ height: 20px;
696
+ border: 1px solid #F1F1F1;
697
+ border-radius: 2px;
698
+ font-size: 12px;
699
+ margin-left: 5px;
700
+ }
701
+ .rdw-image-modal-alt-input:focus {
702
+ outline: none;
703
+ }
704
+ .rdw-image-modal-alt-lbl {
705
+ font-size: 12px;
706
+ }
707
+ .rdw-image-modal-size {
708
+ align-items: center;
709
+ display: flex;
710
+ margin: 8px 0;
711
+ justify-content: space-between;
712
+ }
713
+ .rdw-image-modal-size-input {
714
+ width: 40%;
715
+ height: 20px;
716
+ border: 1px solid #F1F1F1;
717
+ border-radius: 2px;
718
+ font-size: 12px;
719
+ }
720
+ .rdw-image-modal-size-input:focus {
721
+ outline: none;
722
+ }
723
+ .rdw-image-mandatory-sign {
724
+ color: red;
725
+ margin-left: 3px;
726
+ margin-right: 3px;
727
+ }
728
+
729
+ .rdw-remove-wrapper {
730
+ display: flex;
731
+ align-items: center;
732
+ margin-bottom: 6px;
733
+ position: relative;
734
+ flex-wrap: wrap
735
+ }
736
+
737
+ .rdw-history-wrapper {
738
+ display: flex;
739
+ align-items: center;
740
+ margin-bottom: 6px;
741
+ flex-wrap: wrap
742
+ }
743
+ .rdw-history-dropdownoption {
744
+ height: 40px;
745
+ display: flex;
746
+ justify-content: center;
747
+ }
748
+ .rdw-history-dropdown {
749
+ width: 50px;
750
+ }
751
+
752
+ .rdw-link-decorator-wrapper {
753
+ position: relative;
754
+ }
755
+ .rdw-link-decorator-icon {
756
+ position: absolute;
757
+ left: 40%;
758
+ top: 0;
759
+ cursor: pointer;
760
+ background-color: white;
761
+ }
762
+
763
+ .rdw-mention-link {
764
+ text-decoration: none;
765
+ color: #1236ff;
766
+ background-color: #f0fbff;
767
+ padding: 1px 2px;
768
+ border-radius: 2px;
769
+ }
770
+
771
+ .rdw-suggestion-wrapper {
772
+ position: relative;
773
+ }
774
+ .rdw-suggestion-dropdown {
775
+ position: absolute;
776
+ display: flex;
777
+ flex-direction: column;
778
+ border: 1px solid #F1F1F1;
779
+ min-width: 100px;
780
+ max-height: 150px;
781
+ overflow: auto;
782
+ background: white;
783
+ z-index: 100;
784
+ }
785
+ .rdw-suggestion-option {
786
+ padding: 7px 5px;
787
+ border-bottom: 1px solid #f1f1f1;
788
+ }
789
+ .rdw-suggestion-option-active {
790
+ background-color: #F1F1F1;
791
+ }
792
+
793
+ .rdw-hashtag-link {
794
+ text-decoration: none;
795
+ color: #1236ff;
796
+ background-color: #f0fbff;
797
+ padding: 1px 2px;
798
+ border-radius: 2px;
799
+ }
800
+
801
+ .rdw-image-alignment-options-popup {
802
+ position: absolute;
803
+ background: white;
804
+ display: flex;
805
+ padding: 5px 2px;
806
+ border-radius: 2px;
807
+ border: 1px solid #F1F1F1;
808
+ width: 105px;
809
+ cursor: pointer;
810
+ z-index: 100;
811
+ }
812
+ .rdw-alignment-option-left {
813
+ justify-content: flex-start;
814
+ }
815
+ .rdw-image-alignment-option {
816
+ height: 15px;
817
+ width: 15px;
818
+ min-width: 15px;
819
+ }
820
+ .rdw-image-alignment {
821
+ position: relative;
822
+ }
823
+ .rdw-image-imagewrapper {
824
+ position: relative;
825
+ }
826
+ .rdw-image-center {
827
+ display: flex;
828
+ justify-content: center;
829
+ }
830
+ .rdw-image-left {
831
+ display: flex;
832
+ }
833
+ .rdw-image-right {
834
+ display: flex;
835
+ justify-content: flex-end;
836
+ }
837
+ .rdw-image-alignment-options-popup-right {
838
+ right: 0;
839
+ }
840
+
841
+ .rdw-editor-main {
842
+ height: 100%;
843
+ overflow: auto;
844
+ box-sizing: border-box;
845
+ }
846
+ .rdw-editor-toolbar {
847
+ padding: 6px 5px 0;
848
+ border-radius: 2px;
849
+ border: 1px solid #F1F1F1;
850
+ display: flex;
851
+ justify-content: flex-start;
852
+ background: white;
853
+ flex-wrap: wrap;
854
+ font-size: 15px;
855
+ margin-bottom: 5px;
856
+ user-select: none;
857
+ }
858
+ .public-DraftStyleDefault-block {
859
+ margin: 1em 0;
860
+ }
861
+ .rdw-editor-wrapper:focus {
862
+ outline: none;
863
+ }
864
+ .rdw-editor-wrapper {
865
+ box-sizing: content-box;
866
+ }
867
+ .rdw-editor-main blockquote {
868
+ border-left: 5px solid #f1f1f1;
869
+ padding-left: 5px;
870
+ }
871
+ .rdw-editor-main pre {
872
+ background: #f1f1f1;
873
+ border-radius: 3px;
874
+ padding: 1px 10px;
875
+ }
876
+ /**
877
+ * Draft v0.9.1
878
+ *
879
+ * Copyright (c) 2013-present, Facebook, Inc.
880
+ * All rights reserved.
881
+ *
882
+ * This source code is licensed under the BSD-style license found in the
883
+ * LICENSE file in the root directory of this source tree. An additional grant
884
+ * of patent rights can be found in the PATENTS file in the same directory.
885
+ */
886
+ .DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:rgba(255,255,255,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:0}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}