@zohodesk/react-cli 0.0.1-exp.158.1 → 0.0.1-exp.160.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. package/.eslintignore +7 -7
  2. package/.eslintrc.js +183 -183
  3. package/README.md +746 -746
  4. package/bin/cli.js +421 -421
  5. package/cert/cert.pem +37 -37
  6. package/cert/key.pem +27 -27
  7. package/files/eslintrc.js +62 -62
  8. package/files/prettierrc.js +3 -3
  9. package/lib/configs/webpack.css.umd.config.js +4 -4
  10. package/lib/configs/webpack.docs.config.js +2 -8
  11. package/lib/configs/webpack.prod.config.js +6 -2
  12. package/lib/loaders/docsLoader.js +2 -5
  13. package/lib/loaders/scriptInstrumentLoader.js +2 -2
  14. package/lib/loaders/workerLoader.js +9 -9
  15. package/lib/pluginUtils/getDevPlugins.js +5 -5
  16. package/lib/pluginUtils/getDocsPlugins.js +1 -9
  17. package/lib/pluginUtils/getProdPlugins.js +5 -5
  18. package/lib/plugins/EFCPlugin.md +6 -6
  19. package/lib/plugins/I18NInjectIntoIndexPlugin.js +4 -4
  20. package/lib/plugins/I18nSplitPlugin/I18nDownlodLogic.js +38 -38
  21. package/lib/plugins/I18nSplitPlugin/I18nFilesEmitter.js +30 -30
  22. package/lib/plugins/I18nSplitPlugin/I18nKeysIdentifer.js +8 -8
  23. package/lib/plugins/I18nSplitPlugin/I18nSplit.md +86 -86
  24. package/lib/plugins/I18nSplitPlugin/README.md +25 -25
  25. package/lib/plugins/I18nSplitPlugin/index.js +57 -57
  26. package/lib/plugins/ResourceHintsPlugin.js +17 -17
  27. package/lib/plugins/RtlSplitPlugin/RtlCssPlugin.js +6 -6
  28. package/lib/plugins/RtlSplitPlugin/RtrSplit.md +30 -30
  29. package/lib/plugins/ServiceWorkerPlugin.js +9 -9
  30. package/lib/plugins/TPHashMappingPlugin.js +4 -4
  31. package/lib/postcss-plugins/RTLSplitPlugin.js +12 -12
  32. package/lib/schemas/index.js +1 -2
  33. package/lib/servers/docsServerCore.js +1 -2
  34. package/lib/sh/pre-commit.sh +34 -34
  35. package/lib/sh/reportPublish.sh +45 -45
  36. package/lib/utils/buildstats.html +148 -148
  37. package/lib/utils/resultSchema.json +73 -73
  38. package/package.json +145 -144
  39. package/templates/app/.eslintrc.js +140 -140
  40. package/templates/app/README.md +12 -12
  41. package/templates/app/app/index.html +24 -24
  42. package/templates/app/app/properties/ApplicationResources_en_US.properties +1 -1
  43. package/templates/app/app/properties/i18nkeys.json +3 -3
  44. package/templates/app/docs/all.html +69 -69
  45. package/templates/app/mockapi/index.js +18 -18
  46. package/templates/app/package.json +37 -37
  47. package/templates/app/src/actions/SampleActions/index.js +37 -37
  48. package/templates/app/src/actions/index.js +65 -65
  49. package/templates/app/src/appUrls.js +19 -19
  50. package/templates/app/src/components/Alert/Alert.js +134 -134
  51. package/templates/app/src/components/Alert/Alert.module.css +79 -79
  52. package/templates/app/src/components/FreezeLayer/FreezeLayer.css +37 -37
  53. package/templates/app/src/components/FreezeLayer/FreezeLayer.js +84 -84
  54. package/templates/app/src/components/Sample/Sample.module.css +11 -11
  55. package/templates/app/src/components/Sample/SampleList.js +61 -61
  56. package/templates/app/src/components/Slider/Slider.css +41 -41
  57. package/templates/app/src/components/Slider/Slider.js +55 -55
  58. package/templates/app/src/containers/AlertContainer/index.js +15 -15
  59. package/templates/app/src/containers/AppContainer/index.js +96 -96
  60. package/templates/app/src/containers/AppContainer/index.module.css +27 -27
  61. package/templates/app/src/containers/CustomMatch/index.js +65 -65
  62. package/templates/app/src/containers/DevTools/index.js +10 -10
  63. package/templates/app/src/containers/Header/index.js +67 -67
  64. package/templates/app/src/containers/Header/index.module.css +43 -43
  65. package/templates/app/src/containers/Redirect/index.js +63 -63
  66. package/templates/app/src/containers/Redirector/index.js +47 -47
  67. package/templates/app/src/containers/SampleListContainer/ListContainer.js +42 -42
  68. package/templates/app/src/containers/SampleListContainer/ListContainer.module.css +3 -3
  69. package/templates/app/src/historyChange.js +5 -5
  70. package/templates/app/src/index.html +10 -10
  71. package/templates/app/src/index.js +24 -24
  72. package/templates/app/src/middleware/PromiseMiddleware.js +59 -59
  73. package/templates/app/src/reducers/alertData.js +11 -11
  74. package/templates/app/src/reducers/index.js +6 -6
  75. package/templates/app/src/reducers/samples.js +19 -19
  76. package/templates/app/src/store/configureStore.dev.js +51 -51
  77. package/templates/app/src/store/configureStore.js +5 -5
  78. package/templates/app/src/store/configureStore.prod.js +26 -26
  79. package/templates/app/src/util/Common.js +5 -5
  80. package/templates/app/src/util/RequestAPI.js +132 -132
  81. package/templates/docs/all.html +249 -249
  82. package/templates/docs/component.html +178 -178
  83. package/templates/docs/components.html +221 -221
  84. package/templates/docs/css/b.min.css +6 -6
  85. package/templates/docs/css/component.css +42 -42
  86. package/templates/docs/css/componentTest.css +6 -6
  87. package/templates/docs/css/hopscotch.css +585 -585
  88. package/templates/docs/css/style.css +1022 -1077
  89. package/templates/docs/impactReportTemplate.html +154 -154
  90. package/templates/docs/index.html +1493 -1705
  91. package/templates/docs/js/active-line.js +72 -72
  92. package/templates/docs/js/b.min.js +7 -7
  93. package/templates/docs/js/codemirror.js +9680 -9680
  94. package/templates/docs/js/designTokens.js +334 -334
  95. package/templates/docs/js/j.min.js +4 -4
  96. package/templates/docs/js/javascript.js +874 -874
  97. package/templates/docs/js/matchbrackets.js +145 -145
  98. package/.idea/codeStyles/Project.xml +0 -24
  99. package/.idea/codeStyles/codeStyleConfig.xml +0 -5
  100. package/.idea/inspectionProfiles/Project_Default.xml +0 -6
  101. package/.idea/libraries/index.xml +0 -9
  102. package/.idea/misc.xml +0 -9
  103. package/.idea/modules.xml +0 -8
  104. package/.idea/react-cli-original.iml +0 -9
  105. package/.idea/vcs.xml +0 -6
@@ -1,1077 +1,1022 @@
1
- /* cyrillic-ext */
2
- @font-face {
3
- font-family: 'Regular';
4
- font-style: normal;
5
- font-weight: 400;
6
- src: local('Open Sans Regular'), local('OpenSans-Regular'),
7
- url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWJ0bf8pkAp6a.woff2)
8
- format('woff2');
9
- unicode-range: U + 0460-052f, U + 1c80-1c88, U + 20b4, U + 2de0-2dff,
10
- U + A640-A69F, U + FE2E-FE2F;
11
- }
12
- /* cyrillic */
13
- @font-face {
14
- font-family: 'Regular';
15
- font-style: normal;
16
- font-weight: 400;
17
- src: local('Open Sans Regular'), local('OpenSans-Regular'),
18
- url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFUZ0bf8pkAp6a.woff2)
19
- format('woff2');
20
- unicode-range: U + 0400-045f, U + 0490-0491, U + 04b0-04b1, U + 2116;
21
- }
22
- /* greek-ext */
23
- @font-face {
24
- font-family: 'Regular';
25
- font-style: normal;
26
- font-weight: 400;
27
- src: local('Open Sans Regular'), local('OpenSans-Regular'),
28
- url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWZ0bf8pkAp6a.woff2)
29
- format('woff2');
30
- unicode-range: U + 1f00-1fff;
31
- }
32
- /* greek */
33
- @font-face {
34
- font-family: 'Regular';
35
- font-style: normal;
36
- font-weight: 400;
37
- src: local('Open Sans Regular'), local('OpenSans-Regular'),
38
- url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVp0bf8pkAp6a.woff2)
39
- format('woff2');
40
- unicode-range: U + 0370-03ff;
41
- }
42
- /* vietnamese */
43
- @font-face {
44
- font-family: 'Regular';
45
- font-style: normal;
46
- font-weight: 400;
47
- src: local('Open Sans Regular'), local('OpenSans-Regular'),
48
- url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWp0bf8pkAp6a.woff2)
49
- format('woff2');
50
- unicode-range: U + 0102-0103, U + 0110-0111, U + 1ea0-1ef9, U + 20ab;
51
- }
52
- /* latin-ext */
53
- @font-face {
54
- font-family: 'Regular';
55
- font-style: normal;
56
- font-weight: 400;
57
- src: local('Open Sans Regular'), local('OpenSans-Regular'),
58
- url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFW50bf8pkAp6a.woff2)
59
- format('woff2');
60
- unicode-range: U + 0100-024f, U + 0259, U + 1-1eff, U + 2020, U + 20a0-20ab,
61
- U + 20ad-20cf, U + 2113, U + 2c60-2c7f, U + A720-A7FF;
62
- }
63
- /* latin */
64
- @font-face {
65
- font-family: 'Regular';
66
- font-style: normal;
67
- font-weight: 400;
68
- src: local('Open Sans Regular'), local('OpenSans-Regular'),
69
- url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2)
70
- format('woff2');
71
- unicode-range: U + 0000-00ff, U + 0131, U + 0152-0153, U + 02bb-02bc, U + 02c6,
72
- U + 02da, U + 02dc, U + 2000-206f, U + 2074, U + 20ac, U + 2122, U + 2191,
73
- U + 2193, U + 2212, U + 2215, U + FEFF, U + FFFD;
74
- }
75
- /* cyrillic-ext */
76
- @font-face {
77
- font-family: 'Semibold';
78
- font-style: normal;
79
- font-weight: 700;
80
- src: local('Open Sans Bold'), local('OpenSans-Bold'),
81
- url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOX-hpKKSTj5PW.woff2)
82
- format('woff2');
83
- unicode-range: U + 0460-052f, U + 1c80-1c88, U + 20b4, U + 2de0-2dff,
84
- U + A640-A69F, U + FE2E-FE2F;
85
- }
86
- /* cyrillic */
87
- @font-face {
88
- font-family: 'Semibold';
89
- font-style: normal;
90
- font-weight: 700;
91
- src: local('Open Sans Bold'), local('OpenSans-Bold'),
92
- url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOVuhpKKSTj5PW.woff2)
93
- format('woff2');
94
- unicode-range: U + 0400-045f, U + 0490-0491, U + 04b0-04b1, U + 2116;
95
- }
96
- /* greek-ext */
97
- @font-face {
98
- font-family: 'Semibold';
99
- font-style: normal;
100
- font-weight: 700;
101
- src: local('Open Sans Bold'), local('OpenSans-Bold'),
102
- url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXuhpKKSTj5PW.woff2)
103
- format('woff2');
104
- unicode-range: U + 1f00-1fff;
105
- }
106
- /* greek */
107
- @font-face {
108
- font-family: 'Semibold';
109
- font-style: normal;
110
- font-weight: 700;
111
- src: local('Open Sans Bold'), local('OpenSans-Bold'),
112
- url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUehpKKSTj5PW.woff2)
113
- format('woff2');
114
- unicode-range: U + 0370-03ff;
115
- }
116
- /* vietnamese */
117
- @font-face {
118
- font-family: 'Semibold';
119
- font-style: normal;
120
- font-weight: 700;
121
- src: local('Open Sans Bold'), local('OpenSans-Bold'),
122
- url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXehpKKSTj5PW.woff2)
123
- format('woff2');
124
- unicode-range: U + 0102-0103, U + 0110-0111, U + 1ea0-1ef9, U + 20ab;
125
- }
126
- /* latin-ext */
127
- @font-face {
128
- font-family: 'Semibold';
129
- font-style: normal;
130
- font-weight: 700;
131
- src: local('Open Sans Bold'), local('OpenSans-Bold'),
132
- url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXOhpKKSTj5PW.woff2)
133
- format('woff2');
134
- unicode-range: U + 0100-024f, U + 0259, U + 1-1eff, U + 2020, U + 20a0-20ab,
135
- U + 20ad-20cf, U + 2113, U + 2c60-2c7f, U + A720-A7FF;
136
- }
137
- /* latin */
138
- @font-face {
139
- font-family: 'Semibold';
140
- font-style: normal;
141
- font-weight: 700;
142
- src: local('Open Sans Bold'), local('OpenSans-Bold'),
143
- url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUuhpKKSTjw.woff2)
144
- format('woff2');
145
- unicode-range: U + 0000-00ff, U + 0131, U + 0152-0153, U + 02bb-02bc, U + 02c6,
146
- U + 02da, U + 02dc, U + 2000-206f, U + 2074, U + 20ac, U + 2122, U + 2191,
147
- U + 2193, U + 2212, U + 2215, U + FEFF, U + FFFD;
148
- }
149
-
150
- *,
151
- :after,
152
- :before {
153
- margin: 0;
154
- padding: 0;
155
- outline: 0;
156
- border: 0;
157
- box-sizing: border-box;
158
- -webkit-box-sizing: border-box;
159
- -moz-box-sizing: border-box;
160
- -ms-box-sizing: border-box;
161
- }
162
- a {
163
- text-decoration: none;
164
- }
165
-
166
- /* FLex Assets*/
167
- .dflex {
168
- display: -webkit-box;
169
- display: -ms-flexbox;
170
- display: flex;
171
- height: 100%;
172
- width: 100%;
173
- }
174
- .flex{
175
- display: -webkit-box;
176
- display: -ms-flexbox;
177
- display: flex;
178
- }
179
- .flexwrap {
180
- -ms-flex-wrap: wrap;
181
- flex-wrap: wrap;
182
- }
183
- .flexcolumn {
184
- -webkit-box-orient: vertical;
185
- -webkit-box-direction: normal;
186
- -webkit-flex-direction: column;
187
- -ms-flex-direction: column;
188
- flex-direction: column;
189
- }
190
- .flexrow {
191
- -webkit-box-orient: horizontal;
192
- -webkit-box-direction: normal;
193
- -webkit-flex-direction: row;
194
- -ms-flex-direction: row;
195
- flex-direction: row;
196
- }
197
- .flexrowreverse {
198
- -webkit-box-orient: horizontal;
199
- -webkit-box-direction: reverse;
200
- -webkit-flex-direction: row-reverse;
201
- -ms-flex-direction: row-reverse;
202
- flex-direction: row-reverse;
203
- }
204
- .flexcolumnreverse {
205
- -webkit-box-orient: vertical;
206
- -webkit-box-direction: reverse;
207
- -webkit-flex-direction: column-reverse;
208
- -ms-flex-direction: column-reverse;
209
- flex-direction: column-reverse;
210
- }
211
- .flexgrow {
212
- -webkit-box-flex: 1;
213
- -ms-flex-positive: 1;
214
- flex-grow: 1;
215
- min-height: 0;
216
- min-width: 0;
217
- }
218
- .flexshrink {
219
- flex-shrink: 0;
220
- -moz-flex-shrink: 0;
221
- -webkit-flex-shrink: 0;
222
- -ms-flex-shrink: 0;
223
- }
224
- .flexbasis {
225
- flex-basis: 0%;
226
- -webkit-flex-basis: 0%;
227
- -moz-flex-basis: 0%;
228
- -ms-flex-basis: 0%;
229
- }
230
- .alignVertical {
231
- -webkit-box-align: center;
232
- -ms-flex-align: center;
233
- align-items: center;
234
- }
235
- .alignFstart {
236
- -webkit-box-align: start;
237
- -ms-flex-align: start;
238
- align-items: flex-start;
239
- }
240
- .alignFend {
241
- -webkit-box-align: end;
242
- -ms-flex-align: end;
243
- align-items: flex-end;
244
- }
245
- .alignHorizontal {
246
- -webkit-box-pack: center;
247
- -ms-flex-pack: center;
248
- justify-content: center;
249
- }
250
- .dotted {
251
- overflow: hidden;
252
- white-space: nowrap;
253
- word-wrap: normal;
254
- text-overflow: ellipsis;
255
- }
256
- .offSelection {
257
- -webkit-user-select: none;
258
- -moz-user-select: none;
259
- -ms-user-select: none;
260
- user-select: none;
261
- }
262
- .scrollY {
263
- overflow-y: auto;
264
- overflow-x: hidden;
265
- }
266
- body {
267
- background: #fff;
268
- font-size: 14px;
269
- overflow: hidden;
270
- font-family: Regular;
271
- }
272
-
273
- main {
274
- height: 100vh !important;
275
- animation: slide 0.4s ease 0s normal;
276
- }
277
- @keyframes slide {
278
- 0% {
279
- opacity: 0;
280
- }
281
- 100% {
282
- opacity: 1;
283
- }
284
- }
285
- .menuBar {
286
- width: 220px;
287
- border-right: 1px solid #0e1c27;
288
- transition: transform 0.3s;
289
- background: #1d2b36;
290
- }
291
- .isMenuClose {
292
- position: absolute;
293
- top: 0;
294
- left: 0;
295
- bottom: 0;
296
- transform: translateX(-110%);
297
- transition: transform 0.3s;
298
- }
299
-
300
- .menuContainer {
301
- padding-bottom: 5px;
302
- }
303
- .logoPart {
304
- height: 50px;
305
- border-bottom: 1px solid #16222b;
306
- line-height: 50px;
307
- padding-left: 5px;
308
- justify-content: space-between;
309
- }
310
- .logoPart img {
311
- max-width: 100%;
312
- width: 130px;
313
- vertical-align: middle;
314
- }
315
- .searchPart {
316
- padding: 10px;
317
- border-bottom: 1px solid #16222b;
318
- }
319
- .searchContainer {
320
- position: relative;
321
- }
322
- .searchClose {
323
- position: absolute;
324
- top: 50%;
325
- right: 5px;
326
- width: 16px;
327
- padding: 5px;
328
- background: rgba(102, 106, 108, 0.57);
329
- border-radius: 30px;
330
- text-align: center;
331
- height: 16px;
332
- transform: translateY(-50%);
333
- line-height: 0;
334
- cursor: pointer;
335
- }
336
- .searchClose img {
337
- width: 100%;
338
- height: 100%;
339
- }
340
- .versionPart {
341
- padding: 4px 4px 7px;
342
- text-align: center;
343
- background: #0c1115;
344
- }
345
- .versionPart span,
346
- .tools span {
347
- color: #fff;
348
- font-size: 12px;
349
- }
350
- .tools img {
351
- display: inline-block;
352
- vertical-align: middle;
353
- margin-right: 5px;
354
- }
355
- .tools {
356
- padding: 4px 4px 7px;
357
- background-color: #00995a;
358
- cursor: pointer;
359
- text-align: center;
360
- }
361
- .tools:hover {
362
- background-color: #07ab67;
363
- }
364
- .sliderContainer {
365
- position: relative;
366
- }
367
- .slider {
368
- position: absolute;
369
- top: 0;
370
- left: 0;
371
- right: 0;
372
- bottom: 0;
373
- overflow-y: auto;
374
- background-color: #1d2b36;
375
- transform: translateX(-100%);
376
- transition: transform 0.3s;
377
- }
378
- .slider.sopen {
379
- transform: translateX(0);
380
- }
381
- .sliderHeader {
382
- position: relative;
383
- background-color: #e79a2a;
384
- text-align: left;
385
- padding-left: 10px;
386
- }
387
- .sliderFormContainer {
388
- padding: 20px 10px;
389
- }
390
- .sliderInputContainer {
391
- margin-bottom: 12px;
392
- }
393
- .sliderInputTitle {
394
- color: #999;
395
- font-size: 13px;
396
- letter-spacing: 0.1px;
397
- padding-bottom: 4px;
398
- display: block;
399
- }
400
- .sliderInput {
401
- background: rgb(27, 27, 43, 0.8);
402
- width: 100%;
403
- border-radius: 3px;
404
- padding: 7px 5px;
405
- color: #fff;
406
- font-size: 13px;
407
- }
408
- .sliderResult {
409
- position: relative;
410
- }
411
- .copyResult {
412
- position: absolute;
413
- top: 0;
414
- right: 0;
415
- bottom: 0;
416
- width: 30px;
417
- text-align: center;
418
- padding: 7px;
419
- background: #01985b;
420
- border-radius: 0 3px 3px 0;
421
- cursor: pointer;
422
- }
423
- .copyResult:hover {
424
- background: #03b7fe;
425
- }
426
- .copyResult img {
427
- width: 100%;
428
- height: 100%;
429
- }
430
- .copyTxtHiden {
431
- height: 0px !important;
432
- width: 0px !important;
433
- font-size: 0px !important;
434
- padding: 0px !important;
435
- }
436
- .mainMenu {
437
- padding: 10px;
438
- cursor: pointer;
439
- font-size: 13px;
440
- transition: all 0.3s;
441
- }
442
- .mainMenuActive,
443
- .mainMenu:hover {
444
- background-color: #162029;
445
- }
446
- .mainMenuActive .mainMenuArrow {
447
- transform: rotate(90deg);
448
- }
449
- .mainMenutitle {
450
- max-width: 100%;
451
- color: #fff;
452
- text-transform: capitalize;
453
- }
454
- .mainMenuCount {
455
- padding: 3px 5px;
456
- background: #008e4f;
457
- border-radius: 15px;
458
- font-size: 9px;
459
- color: #fff;
460
- margin-right: 10px;
461
- margin-left: 5px;
462
- min-width: 18px;
463
- text-align: center;
464
- }
465
- .mainMenuArrow {
466
- transition: all 0.3s;
467
- height: 12px;
468
- width: 12px;
469
- }
470
- .menuHideLeft {
471
- width: 220px;
472
- padding-bottom: 20px;
473
- border-right: 1px solid #dbd8d8;
474
- transition: margin-left 0.5s ease;
475
- background: #f4f6f9;
476
- display: none;
477
- }
478
- .listIcon {
479
- width: 15px;
480
- margin-right: 8px;
481
- height: 15px;
482
- }
483
- .listItem,
484
- .componentMain,
485
- .componentDocs {
486
- padding: 7px 5px 7px 10px;
487
- transition: all 0.3s;
488
- cursor: pointer;
489
- }
490
- .listItem path {
491
- fill: #fff;
492
- }
493
- .listTitle {
494
- color: #fff;
495
- font-size: 12px;
496
- text-transform: capitalize;
497
- }
498
- .listCount {
499
- padding: 3px 5px;
500
- background: #0072b0;
501
- border-radius: 15px;
502
- font-size: 9px;
503
- color: #fff;
504
- margin-left: 5px;
505
- font-style: initial;
506
- min-width: 18px;
507
- text-align: center;
508
- }
509
- .listItem:hover,
510
- .listItem.selected {
511
- background-color: #0c1115;
512
- }
513
- .componentMain:hover,
514
- .componentDocs:hover {
515
- background-color: #162029;
516
- }
517
- .componentDocs {
518
- padding-left: 35px;
519
- }
520
- .componentDocs > a.active,
521
- .componentMain > a.active {
522
- position: relative;
523
- }
524
- .componentDocs > a.active::after,
525
- .componentMain > a.active::after {
526
- content: '';
527
- position: absolute;
528
- top: 0px;
529
- height: 15px;
530
- width: 15px;
531
- background-color: #008f4c;
532
- border-radius: 1px;
533
- left: -43px;
534
- transform: rotate(45deg);
535
- }
536
- .componentMain > a.active::after {
537
- left: -28px;
538
- }
539
- .componentMain {
540
- padding-left: 20px;
541
- }
542
- .subCount {
543
- background-color: #e03332;
544
- }
545
- .activeComponent {
546
- position: relative;
547
- }
548
- .activeComponent::after {
549
- position: absolute;
550
- content: '';
551
- top: 0;
552
- bottom: 0;
553
- left: 0;
554
- width: 2px;
555
- background-color: #008f4c;
556
- }
557
-
558
- section {
559
- border: 15px solid #333;
560
- position: relative;
561
- border-radius: 16px;
562
- transition:width 0.2ms;
563
- }
564
- .iframe {
565
- position: absolute;
566
- top: 0;
567
- left: 0;
568
- right: 0;
569
- bottom: 0;
570
- height: 100%;
571
- width: 100%;
572
- overflow: auto;
573
- z-index: 1;
574
- background-color: #fff;
575
- }
576
-
577
- .inputSearch {
578
- width: 100%;
579
- background: #0c1115;
580
- color: #fff;
581
- font-size: 11px;
582
- border-radius: 15px;
583
- padding: 6px 25px 6px 15px;
584
- }
585
-
586
- .cheader {
587
- border-bottom: 1px solid #dad8d8;
588
- padding: 6px 25px;
589
- }
590
- .ccontent {
591
- background-color: #fff;
592
- padding: 5px 20px 0px 20px;
593
- overflow: auto;
594
- }
595
-
596
- .cheadertitle {
597
- font-family: Semibold;
598
- font-size: 21px;
599
- margin-right: 30px;
600
- color: #0c1015;
601
- }
602
- .responsive {
603
- /*height: 30px*/
604
- padding: 12px 5px;
605
- }
606
- .responsiveOption {
607
- width: 30px;
608
- height: 30px;
609
- display: inline-block;
610
- position: relative;
611
- vertical-align: middle;
612
- text-align: center;
613
- line-height: 27px;
614
- background: #5c5e61;
615
- border-radius: 50%;
616
- color:#fff;
617
- margin: 0 5px;
618
- padding: 5px;
619
- cursor: pointer;
620
- transition: all 0.3s;
621
- font-size: 10px;
622
- }
623
- .section .responsiveOption{
624
- margin: 0px 5px 5px;
625
- }
626
- .responsiveOption:hover,.activeOption {
627
- background-color: #00995a;
628
- }
629
- .activeOption:hover{
630
- background-color: #d0263a;
631
- }
632
- .responsiveOption svg {
633
- width: 15px;
634
- height: 15px;
635
-
636
- }
637
- .responsiveOption svg path {
638
- fill: #fff;
639
- }
640
- optionsList{
641
- padding: 15px 8px;
642
- row-gap: 10px;
643
- column-gap: 10px;
644
- }
645
- .customizeOption{
646
- padding: 12px 5px;
647
- /*margin-left: 20px;*/
648
- cursor: pointer;
649
- }
650
- .groupOption{
651
- background-color: black;
652
- border-radius: 5px;
653
- }
654
- .optionName{
655
- color: #ffffff;
656
- padding: 4px;
657
- white-space: nowrap;
658
- }
659
-
660
- .customizeOption select {
661
- width: 150px;
662
- padding: 5px 25px 5px 15px;
663
- border: 1px solid #CCC;
664
- height: 29px;
665
- -webkit-appearance: none;
666
- -moz-appearance: none;
667
- appearance: none;
668
- border-radius: 5px;
669
- }
670
-
671
- /* CAUTION: Internet Explorer hackery ahead */
672
- .customizeOption select::-ms-expand {
673
- display: none; /* Remove default arrow in Internet Explorer 10 and 11 */
674
- }
675
-
676
- /* Target Internet Explorer 9 to undo the custom arrow */
677
- @media screen and (min-width:0\0) {
678
- .customizeOption select {
679
- background: none\9;
680
- padding: 5px\9;
681
- }
682
- }
683
- .propsTable {
684
- margin: 40px auto;
685
- border: 1px solid #ebedf0;
686
- font-size: 14px;
687
- line-height: 1.5;
688
- empty-cells: show;
689
- }
690
- .tableHeader {
691
- display: flex;
692
- flex-direction: row;
693
- }
694
- .brR {
695
- white-space: nowrap;
696
- color: #5c6b77;
697
- font-weight: 500;
698
- background: rgba(0, 0, 0, 0.02);
699
- padding: 16px 24px;
700
- text-align: left;
701
- }
702
- .tableHeaderNB {
703
- display: flex;
704
- flex-direction: row;
705
- border-bottom: 1px solid transparent;
706
- }
707
- .tableHeader span,
708
- .tableHeaderNB span {
709
- flex: 1;
710
- overflow: hidden;
711
- text-overflow: ellipsis;
712
- white-space: nowrap;
713
- word-wrap: normal;
714
- border-right: 1px solid #ebedf0;
715
- padding: 16px 24px;
716
- text-align: left;
717
- border-bottom: 1px solid #ebedf0;
718
- }
719
- .tableHeaderNB span {
720
- border-bottom-width: 0;
721
- }
722
- .bn {
723
- border-right-width: 0;
724
- }
725
- .tableHeader .defaultProps,
726
- .tableHeaderNB .defaultProps {
727
- overflow: initial;
728
- white-space: normal;
729
- text-overflow: initial;
730
- word-break: break-all;
731
- }
732
- .srcCode {
733
- color: #2d2929;
734
- width: 100%;
735
- height: 100%;
736
- overflow: auto;
737
- padding: 20px 0;
738
- display: block;
739
- }
740
- .referContainer {
741
- padding: 20px 0;
742
- color:#fff;
743
- background-color: #2D313F;
744
- border-radius: 5px;
745
- height: 100%;
746
- }
747
- .refsBy {
748
- padding: 10px;
749
- font-size: 17px;
750
- color: inherit;
751
- }
752
- .refsLin {
753
- padding: 5px;
754
- font-size: 15px;
755
- color: inherit;
756
- list-style-position: inside;
757
- margin-left: 30px;
758
- }
759
- .refsLin a {
760
- color: inherit;
761
- }
762
- .psdContainer {
763
- width: 24%;
764
- border: 1px solid #1c2b36;
765
- border-radius: 5px;
766
- padding: 5px;
767
- margin-right: 10px;
768
- margin-bottom: 10px;
769
- display: inline-block;
770
- vertical-align: top;
771
- }
772
- .imageContainer {
773
- min-height: 150px;
774
- text-align: center;
775
- }
776
- .psdImage {
777
- max-width: 100%;
778
- max-height: 150px;
779
- }
780
- .psdLink {
781
- color: #fff;
782
- background: #1c2b36;
783
- padding: 5px;
784
- display: block;
785
- text-align: center;
786
- border-radius: 5px;
787
- cursor: pointer;
788
- margin-bottom: 3px;
789
- border: 1px solid transparent;
790
- }
791
- .psdLink:hover {
792
- background: #fff;
793
- color: #1c2b36;
794
- border-color: #1c2b36;
795
- }
796
- .infoTabs span {
797
- padding: 0px 10px;
798
- font-size: 14px;
799
- line-height: 30px;
800
- cursor: pointer;
801
- margin-right: 10px;
802
- border-radius: 2px;
803
- transition: all 0.1s;
804
- }
805
- .infoactive,
806
- .infoTabs span:hover {
807
- background: #3cc1a2;
808
- color: #fff;
809
- }
810
- .showToggleLeft {
811
- background-color: #fff;
812
- z-index: 5;
813
- position: absolute;
814
- bottom: 15px;
815
- left: 20px;
816
- border-radius: 50%;
817
- transition: all 0.5s ease;
818
- transform: scale(1);
819
- cursor: pointer;
820
- height: 35px;
821
- width: 35px;
822
- border: 1px solid #1e2633;
823
- align-items: center;
824
- justify-content: center;
825
- display: none;
826
- }
827
- .showToggleLeft img {
828
- width: 28px;
829
- height: 28px;
830
- padding: 7px;
831
- transform: rotateY(180deg);
832
- }
833
- .bn {
834
- border: none !important;
835
- }
836
- #ifm {
837
- outline: none;
838
- border: none;
839
- overflow: hidden;
840
- z-index: 1;
841
- position: fixed;
842
- }
843
- .iframeCentering {
844
- height: 98vh;
845
- width: 100vw;
846
- display: flex;
847
- background: #fff;
848
- justify-content: center;
849
- align-items: center;
850
- position: relative;
851
- z-index: 1;
852
- }
853
- .posAb {
854
- position: absolute;
855
- z-index: 0;
856
- animation: jump 1.5s ease 0s infinite normal;
857
- font-size: 24px;
858
- color: black;
859
- }
860
- @keyframes jump {
861
- 0% {
862
- transform: translateY(0);
863
- }
864
- 20% {
865
- transform: translateY(0);
866
- }
867
- 40% {
868
- transform: translateY(-30px);
869
- }
870
- 50% {
871
- transform: translateY(0);
872
- }
873
- 60% {
874
- transform: translateY(-15px);
875
- }
876
- 80% {
877
- transform: translateY(0);
878
- }
879
- 100% {
880
- transform: translateY(0);
881
- }
882
- }
883
- .logo {
884
- background-image: url('desklogo.png');
885
- height: 40px;
886
- width: 130px;
887
- background-size: 100% 100%;
888
- display: inline-block;
889
- vertical-align: middle;
890
- margin-top: 4px;
891
- margin-left: 10px;
892
- }
893
- @media only screen and (max-width: 980px) {
894
- .menuBar {
895
- position: absolute;
896
- top: 0;
897
- left: 0;
898
- bottom: 0;
899
- transform: translate(-110%);
900
- z-index: 2;
901
- }
902
- .isMenuOpen {
903
- transform: translateX(0);
904
- }
905
- .showToggleLeft {
906
- display: flex;
907
- }
908
- }
909
-
910
- .iframeSection {
911
- position: relative;
912
- margin: 0 auto;
913
- }
914
- .loadingText {
915
- position: absolute;
916
- top: 50%;
917
- left: 50%;
918
- transform: translate(-50%, -50%);
919
- display: inline-block;
920
- z-index: 3;
921
- display: none;
922
- }
923
- .lds-ripple {
924
- display: inline-block;
925
- position: relative;
926
- width: 64px;
927
- height: 64px;
928
- }
929
- .lds-ripple div {
930
- position: absolute;
931
- border: 4px solid #3a3a3a;
932
- opacity: 1;
933
- border-radius: 50%;
934
- top: 0;
935
- left: 0;
936
- right: 0;
937
- bottom: 0;
938
- animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
939
- }
940
- .lds-ripple div:nth-child(2) {
941
- animation-delay: -0.5s;
942
- }
943
- @keyframes lds-ripple {
944
- 0% {
945
- transform: scale(0);
946
- opacity: 1;
947
- }
948
- 100% {
949
- transform: scale(1.5);
950
- opacity: 0;
951
- }
952
- }
953
- .hide {
954
- display: none;
955
- }
956
- .compListItem{
957
- padding: 5px;
958
- font-size: 15px;
959
- list-style-position: inside;
960
- margin-left: 30px;
961
- }
962
- .compListTitle{
963
- padding: 10px;
964
- font-size: 17px;
965
- flex:1;
966
- max-width: 90%;
967
- display: block;
968
- }
969
- .toolOptions{
970
- background: #333;
971
- border-radius: 12px;
972
- margin: 5px 0;
973
- }
974
- .toolarea{
975
- overflow: auto;
976
- }
977
- .range{
978
- /* width: 500px;
979
- padding: 15px 0;
980
- position: relative;
981
- margin-left: 20px;
982
- flex: .5; */
983
- min-width: 400px;
984
- padding: 15px 5px;
985
- position: relative;
986
- }
987
- .rangeSlider{
988
- min-width: 200px;
989
- }
990
- .tooltip,.window {
991
- padding: 4px;
992
- font-size: 12px;
993
- color: #fff;
994
- background-color: #5c5e61;
995
- white-space: nowrap;
996
- border-radius: 5px;
997
- margin: 0px 6px;
998
- }
999
- .tooltip{
1000
- min-width:80px;
1001
- text-align: center;
1002
- }
1003
- .tooltipVal{
1004
- font-size: 12px;
1005
- color:#fff;
1006
- padding: 4px;
1007
- }
1008
- .rangeInput {
1009
- -webkit-appearance: none;
1010
- display: block;
1011
- width: 100%;
1012
- min-width: 100px;
1013
- height: 8px;
1014
- padding: 0;
1015
- border-radius: 4px;
1016
- background: #dbdbdb;
1017
- box-sizing: content-box;
1018
- cursor: pointer;
1019
- }
1020
- .rangeInput:focus {
1021
- outline: none;
1022
- }
1023
- .rangeInput::-webkit-slider-thumb {
1024
- -webkit-appearance: none;
1025
- /* width: 15px; */
1026
- width: 10px;
1027
- height: 20px;
1028
- border: 1px solid #03613b;
1029
- border-radius: 5px;
1030
- background: #00995a;
1031
- cursor: pointer;
1032
- }
1033
- .transform{
1034
- transform: rotateY(180deg);
1035
- }
1036
- .home{
1037
- display: block;
1038
- padding: 2px 15px 2px 0px;
1039
- cursor: pointer;
1040
- }
1041
- .fullScreen svg{
1042
- width: 18px;
1043
- height: 18px;
1044
- }
1045
- .textSize{
1046
- line-height: 23px;
1047
- }
1048
- .textSize svg{
1049
- width: 12px;
1050
- height: 12px;
1051
- }
1052
- .svg{
1053
- width: inherit;
1054
- height: inherit;
1055
- fill: #fff;
1056
- }
1057
- .homeIcon{
1058
- width: 20px;
1059
- height: 20px;
1060
- }
1061
- .smileIcon{
1062
- width: 60px;
1063
- margin-bottom: 30px
1064
- }
1065
- .authorview{
1066
- height: 100%;
1067
- overflow: auto;
1068
- }
1069
- #react{
1070
- position: fixed;
1071
- top: 0;
1072
- z-index: 1;
1073
- left: 0;
1074
- right: 0;
1075
- bottom: 0;
1076
- background:#fff;
1077
- }
1
+ /* cyrillic-ext */
2
+ @font-face {
3
+ font-family: 'Regular';
4
+ font-style: normal;
5
+ font-weight: 400;
6
+ src: local('Open Sans Regular'), local('OpenSans-Regular'),
7
+ url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWJ0bf8pkAp6a.woff2)
8
+ format('woff2');
9
+ unicode-range: U + 0460-052f, U + 1c80-1c88, U + 20b4, U + 2de0-2dff,
10
+ U + A640-A69F, U + FE2E-FE2F;
11
+ }
12
+ /* cyrillic */
13
+ @font-face {
14
+ font-family: 'Regular';
15
+ font-style: normal;
16
+ font-weight: 400;
17
+ src: local('Open Sans Regular'), local('OpenSans-Regular'),
18
+ url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFUZ0bf8pkAp6a.woff2)
19
+ format('woff2');
20
+ unicode-range: U + 0400-045f, U + 0490-0491, U + 04b0-04b1, U + 2116;
21
+ }
22
+ /* greek-ext */
23
+ @font-face {
24
+ font-family: 'Regular';
25
+ font-style: normal;
26
+ font-weight: 400;
27
+ src: local('Open Sans Regular'), local('OpenSans-Regular'),
28
+ url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWZ0bf8pkAp6a.woff2)
29
+ format('woff2');
30
+ unicode-range: U + 1f00-1fff;
31
+ }
32
+ /* greek */
33
+ @font-face {
34
+ font-family: 'Regular';
35
+ font-style: normal;
36
+ font-weight: 400;
37
+ src: local('Open Sans Regular'), local('OpenSans-Regular'),
38
+ url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVp0bf8pkAp6a.woff2)
39
+ format('woff2');
40
+ unicode-range: U + 0370-03ff;
41
+ }
42
+ /* vietnamese */
43
+ @font-face {
44
+ font-family: 'Regular';
45
+ font-style: normal;
46
+ font-weight: 400;
47
+ src: local('Open Sans Regular'), local('OpenSans-Regular'),
48
+ url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWp0bf8pkAp6a.woff2)
49
+ format('woff2');
50
+ unicode-range: U + 0102-0103, U + 0110-0111, U + 1ea0-1ef9, U + 20ab;
51
+ }
52
+ /* latin-ext */
53
+ @font-face {
54
+ font-family: 'Regular';
55
+ font-style: normal;
56
+ font-weight: 400;
57
+ src: local('Open Sans Regular'), local('OpenSans-Regular'),
58
+ url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFW50bf8pkAp6a.woff2)
59
+ format('woff2');
60
+ unicode-range: U + 0100-024f, U + 0259, U + 1-1eff, U + 2020, U + 20a0-20ab,
61
+ U + 20ad-20cf, U + 2113, U + 2c60-2c7f, U + A720-A7FF;
62
+ }
63
+ /* latin */
64
+ @font-face {
65
+ font-family: 'Regular';
66
+ font-style: normal;
67
+ font-weight: 400;
68
+ src: local('Open Sans Regular'), local('OpenSans-Regular'),
69
+ url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2)
70
+ format('woff2');
71
+ unicode-range: U + 0000-00ff, U + 0131, U + 0152-0153, U + 02bb-02bc, U + 02c6,
72
+ U + 02da, U + 02dc, U + 2000-206f, U + 2074, U + 20ac, U + 2122, U + 2191,
73
+ U + 2193, U + 2212, U + 2215, U + FEFF, U + FFFD;
74
+ }
75
+ /* cyrillic-ext */
76
+ @font-face {
77
+ font-family: 'Semibold';
78
+ font-style: normal;
79
+ font-weight: 700;
80
+ src: local('Open Sans Bold'), local('OpenSans-Bold'),
81
+ url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOX-hpKKSTj5PW.woff2)
82
+ format('woff2');
83
+ unicode-range: U + 0460-052f, U + 1c80-1c88, U + 20b4, U + 2de0-2dff,
84
+ U + A640-A69F, U + FE2E-FE2F;
85
+ }
86
+ /* cyrillic */
87
+ @font-face {
88
+ font-family: 'Semibold';
89
+ font-style: normal;
90
+ font-weight: 700;
91
+ src: local('Open Sans Bold'), local('OpenSans-Bold'),
92
+ url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOVuhpKKSTj5PW.woff2)
93
+ format('woff2');
94
+ unicode-range: U + 0400-045f, U + 0490-0491, U + 04b0-04b1, U + 2116;
95
+ }
96
+ /* greek-ext */
97
+ @font-face {
98
+ font-family: 'Semibold';
99
+ font-style: normal;
100
+ font-weight: 700;
101
+ src: local('Open Sans Bold'), local('OpenSans-Bold'),
102
+ url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXuhpKKSTj5PW.woff2)
103
+ format('woff2');
104
+ unicode-range: U + 1f00-1fff;
105
+ }
106
+ /* greek */
107
+ @font-face {
108
+ font-family: 'Semibold';
109
+ font-style: normal;
110
+ font-weight: 700;
111
+ src: local('Open Sans Bold'), local('OpenSans-Bold'),
112
+ url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUehpKKSTj5PW.woff2)
113
+ format('woff2');
114
+ unicode-range: U + 0370-03ff;
115
+ }
116
+ /* vietnamese */
117
+ @font-face {
118
+ font-family: 'Semibold';
119
+ font-style: normal;
120
+ font-weight: 700;
121
+ src: local('Open Sans Bold'), local('OpenSans-Bold'),
122
+ url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXehpKKSTj5PW.woff2)
123
+ format('woff2');
124
+ unicode-range: U + 0102-0103, U + 0110-0111, U + 1ea0-1ef9, U + 20ab;
125
+ }
126
+ /* latin-ext */
127
+ @font-face {
128
+ font-family: 'Semibold';
129
+ font-style: normal;
130
+ font-weight: 700;
131
+ src: local('Open Sans Bold'), local('OpenSans-Bold'),
132
+ url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXOhpKKSTj5PW.woff2)
133
+ format('woff2');
134
+ unicode-range: U + 0100-024f, U + 0259, U + 1-1eff, U + 2020, U + 20a0-20ab,
135
+ U + 20ad-20cf, U + 2113, U + 2c60-2c7f, U + A720-A7FF;
136
+ }
137
+ /* latin */
138
+ @font-face {
139
+ font-family: 'Semibold';
140
+ font-style: normal;
141
+ font-weight: 700;
142
+ src: local('Open Sans Bold'), local('OpenSans-Bold'),
143
+ url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUuhpKKSTjw.woff2)
144
+ format('woff2');
145
+ unicode-range: U + 0000-00ff, U + 0131, U + 0152-0153, U + 02bb-02bc, U + 02c6,
146
+ U + 02da, U + 02dc, U + 2000-206f, U + 2074, U + 20ac, U + 2122, U + 2191,
147
+ U + 2193, U + 2212, U + 2215, U + FEFF, U + FFFD;
148
+ }
149
+
150
+ *,
151
+ :after,
152
+ :before {
153
+ margin: 0;
154
+ padding: 0;
155
+ outline: 0;
156
+ border: 0;
157
+ box-sizing: border-box;
158
+ -webkit-box-sizing: border-box;
159
+ -moz-box-sizing: border-box;
160
+ -ms-box-sizing: border-box;
161
+ }
162
+ a {
163
+ text-decoration: none;
164
+ }
165
+
166
+ /* FLex Assets*/
167
+ .dflex {
168
+ display: -webkit-box;
169
+ display: -ms-flexbox;
170
+ display: flex;
171
+ height: 100%;
172
+ width: 100%;
173
+ }
174
+ .flexwrap {
175
+ -ms-flex-wrap: wrap;
176
+ flex-wrap: wrap;
177
+ }
178
+ .flexcolumn {
179
+ -webkit-box-orient: vertical;
180
+ -webkit-box-direction: normal;
181
+ -webkit-flex-direction: column;
182
+ -ms-flex-direction: column;
183
+ flex-direction: column;
184
+ }
185
+ .flexrow {
186
+ -webkit-box-orient: horizontal;
187
+ -webkit-box-direction: normal;
188
+ -webkit-flex-direction: row;
189
+ -ms-flex-direction: row;
190
+ flex-direction: row;
191
+ }
192
+ .flexrowreverse {
193
+ -webkit-box-orient: horizontal;
194
+ -webkit-box-direction: reverse;
195
+ -webkit-flex-direction: row-reverse;
196
+ -ms-flex-direction: row-reverse;
197
+ flex-direction: row-reverse;
198
+ }
199
+ .flexcolumnreverse {
200
+ -webkit-box-orient: vertical;
201
+ -webkit-box-direction: reverse;
202
+ -webkit-flex-direction: column-reverse;
203
+ -ms-flex-direction: column-reverse;
204
+ flex-direction: column-reverse;
205
+ }
206
+ .flexgrow {
207
+ -webkit-box-flex: 1;
208
+ -ms-flex-positive: 1;
209
+ flex-grow: 1;
210
+ min-height: 0;
211
+ min-width: 0;
212
+ }
213
+ .flexshrink {
214
+ flex-shrink: 0;
215
+ -moz-flex-shrink: 0;
216
+ -webkit-flex-shrink: 0;
217
+ -ms-flex-shrink: 0;
218
+ }
219
+ .flexbasis {
220
+ flex-basis: 0%;
221
+ -webkit-flex-basis: 0%;
222
+ -moz-flex-basis: 0%;
223
+ -ms-flex-basis: 0%;
224
+ }
225
+ .alignVertical {
226
+ -webkit-box-align: center;
227
+ -ms-flex-align: center;
228
+ align-items: center;
229
+ }
230
+ .alignFstart {
231
+ -webkit-box-align: start;
232
+ -ms-flex-align: start;
233
+ align-items: flex-start;
234
+ }
235
+ .alignFend {
236
+ -webkit-box-align: end;
237
+ -ms-flex-align: end;
238
+ align-items: flex-end;
239
+ }
240
+ .alignHorizontal {
241
+ -webkit-box-pack: center;
242
+ -ms-flex-pack: center;
243
+ justify-content: center;
244
+ }
245
+ .dotted {
246
+ overflow: hidden;
247
+ white-space: nowrap;
248
+ word-wrap: normal;
249
+ text-overflow: ellipsis;
250
+ }
251
+ .offSelection {
252
+ -webkit-user-select: none;
253
+ -moz-user-select: none;
254
+ -ms-user-select: none;
255
+ user-select: none;
256
+ }
257
+ .scrollY {
258
+ overflow-y: auto;
259
+ overflow-x: hidden;
260
+ }
261
+ body {
262
+ background: #fff;
263
+ font-size: 14px;
264
+ overflow: hidden;
265
+ font-family: Regular;
266
+ }
267
+
268
+ main {
269
+ height: 100vh !important;
270
+ animation: slide 0.4s ease 0s normal;
271
+ }
272
+ @keyframes slide {
273
+ 0% {
274
+ opacity: 0;
275
+ }
276
+ 100% {
277
+ opacity: 1;
278
+ }
279
+ }
280
+ .menuBar {
281
+ width: 220px;
282
+ border-right: 1px solid #0e1c27;
283
+ transition: transform 0.3s;
284
+ background: #1d2b36;
285
+ }
286
+ .isMenuClose {
287
+ position: absolute;
288
+ top: 0;
289
+ left: 0;
290
+ bottom: 0;
291
+ transform: translateX(-110%);
292
+ transition: transform 0.3s;
293
+ }
294
+
295
+ .menuContainer {
296
+ padding-bottom: 5px;
297
+ }
298
+ .logoPart {
299
+ height: 50px;
300
+ border-bottom: 1px solid #16222b;
301
+ line-height: 50px;
302
+ padding-left: 5px;
303
+ justify-content: space-between;
304
+ }
305
+ .logoPart img {
306
+ max-width: 100%;
307
+ width: 130px;
308
+ vertical-align: middle;
309
+ }
310
+ .searchPart {
311
+ padding: 10px;
312
+ border-bottom: 1px solid #16222b;
313
+ }
314
+ .searchContainer {
315
+ position: relative;
316
+ }
317
+ .searchClose {
318
+ position: absolute;
319
+ top: 50%;
320
+ right: 5px;
321
+ width: 16px;
322
+ padding: 5px;
323
+ background: rgba(102, 106, 108, 0.57);
324
+ border-radius: 30px;
325
+ text-align: center;
326
+ height: 16px;
327
+ transform: translateY(-50%);
328
+ line-height: 0;
329
+ cursor: pointer;
330
+ }
331
+ .searchClose img {
332
+ width: 100%;
333
+ height: 100%;
334
+ }
335
+ .versionPart {
336
+ padding: 4px 4px 7px;
337
+ text-align: center;
338
+ background: #0c1115;
339
+ }
340
+ .versionPart span,
341
+ .tools span {
342
+ color: #fff;
343
+ font-size: 12px;
344
+ }
345
+ .tools img {
346
+ display: inline-block;
347
+ vertical-align: middle;
348
+ margin-right: 5px;
349
+ }
350
+ .tools {
351
+ padding: 4px 4px 7px;
352
+ background-color: #00995a;
353
+ cursor: pointer;
354
+ text-align: center;
355
+ }
356
+ .tools:hover {
357
+ background-color: #07ab67;
358
+ }
359
+ .sliderContainer {
360
+ position: relative;
361
+ }
362
+ .slider {
363
+ position: absolute;
364
+ top: 0;
365
+ left: 0;
366
+ right: 0;
367
+ bottom: 0;
368
+ overflow-y: auto;
369
+ background-color: #1d2b36;
370
+ transform: translateX(-100%);
371
+ transition: transform 0.3s;
372
+ }
373
+ .slider.sopen {
374
+ transform: translateX(0);
375
+ }
376
+ .sliderHeader {
377
+ position: relative;
378
+ background-color: #e79a2a;
379
+ text-align: left;
380
+ padding-left: 10px;
381
+ }
382
+ .sliderFormContainer {
383
+ padding: 20px 10px;
384
+ }
385
+ .sliderInputContainer {
386
+ margin-bottom: 12px;
387
+ }
388
+ .sliderInputTitle {
389
+ color: #999;
390
+ font-size: 13px;
391
+ letter-spacing: 0.1px;
392
+ padding-bottom: 4px;
393
+ display: block;
394
+ }
395
+ .sliderInput {
396
+ background: rgb(27, 27, 43, 0.8);
397
+ width: 100%;
398
+ border-radius: 3px;
399
+ padding: 7px 5px;
400
+ color: #fff;
401
+ font-size: 13px;
402
+ }
403
+ .sliderResult {
404
+ position: relative;
405
+ }
406
+ .copyResult {
407
+ position: absolute;
408
+ top: 0;
409
+ right: 0;
410
+ bottom: 0;
411
+ width: 30px;
412
+ text-align: center;
413
+ padding: 7px;
414
+ background: #01985b;
415
+ border-radius: 0 3px 3px 0;
416
+ cursor: pointer;
417
+ }
418
+ .copyResult:hover {
419
+ background: #03b7fe;
420
+ }
421
+ .copyResult img {
422
+ width: 100%;
423
+ height: 100%;
424
+ }
425
+ .copyTxtHiden {
426
+ height: 0px !important;
427
+ width: 0px !important;
428
+ font-size: 0px !important;
429
+ padding: 0px !important;
430
+ }
431
+ .mainMenu {
432
+ padding: 10px;
433
+ cursor: pointer;
434
+ font-size: 13px;
435
+ transition: all 0.3s;
436
+ }
437
+ .mainMenuActive,
438
+ .mainMenu:hover {
439
+ background-color: #162029;
440
+ }
441
+ .mainMenuActive .mainMenuArrow {
442
+ transform: rotate(90deg);
443
+ }
444
+ .mainMenutitle {
445
+ max-width: 100%;
446
+ color: #fff;
447
+ text-transform: capitalize;
448
+ }
449
+ .mainMenuCount {
450
+ padding: 3px 5px;
451
+ background: #008e4f;
452
+ border-radius: 15px;
453
+ font-size: 9px;
454
+ color: #fff;
455
+ margin-right: 10px;
456
+ margin-left: 5px;
457
+ min-width: 18px;
458
+ text-align: center;
459
+ }
460
+ .mainMenuArrow {
461
+ transition: all 0.3s;
462
+ height: 12px;
463
+ width: 12px;
464
+ }
465
+ .menuHideLeft {
466
+ width: 220px;
467
+ padding-bottom: 20px;
468
+ border-right: 1px solid #dbd8d8;
469
+ transition: margin-left 0.5s ease;
470
+ background: #f4f6f9;
471
+ display: none;
472
+ }
473
+ .listIcon {
474
+ width: 15px;
475
+ margin-right: 8px;
476
+ height: 15px;
477
+ }
478
+ .listItem,
479
+ .componentMain,
480
+ .componentDocs {
481
+ padding: 7px 5px 7px 10px;
482
+ transition: all 0.3s;
483
+ cursor: pointer;
484
+ }
485
+ .listItem path {
486
+ fill: #fff;
487
+ }
488
+ .listTitle {
489
+ color: #fff;
490
+ font-size: 12px;
491
+ text-transform: capitalize;
492
+ }
493
+ .listCount {
494
+ padding: 3px 5px;
495
+ background: #0072b0;
496
+ border-radius: 15px;
497
+ font-size: 9px;
498
+ color: #fff;
499
+ margin-left: 5px;
500
+ font-style: initial;
501
+ min-width: 18px;
502
+ text-align: center;
503
+ }
504
+ .listItem:hover,
505
+ .listItem.selected {
506
+ background-color: #0c1115;
507
+ }
508
+ .componentMain:hover,
509
+ .componentDocs:hover {
510
+ background-color: #162029;
511
+ }
512
+ .componentDocs {
513
+ padding-left: 35px;
514
+ }
515
+ .componentDocs > a.active,
516
+ .componentMain > a.active {
517
+ position: relative;
518
+ }
519
+ .componentDocs > a.active::after,
520
+ .componentMain > a.active::after {
521
+ content: '';
522
+ position: absolute;
523
+ top: 0px;
524
+ height: 15px;
525
+ width: 15px;
526
+ background-color: #008f4c;
527
+ border-radius: 1px;
528
+ left: -43px;
529
+ transform: rotate(45deg);
530
+ }
531
+ .componentMain > a.active::after {
532
+ left: -28px;
533
+ }
534
+ .componentMain {
535
+ padding-left: 20px;
536
+ }
537
+ .subCount {
538
+ background-color: #e03332;
539
+ }
540
+ .activeComponent {
541
+ position: relative;
542
+ }
543
+ .activeComponent::after {
544
+ position: absolute;
545
+ content: '';
546
+ top: 0;
547
+ bottom: 0;
548
+ left: 0;
549
+ width: 2px;
550
+ background-color: #008f4c;
551
+ }
552
+
553
+ section {
554
+ border: 15px solid #333;
555
+ position: relative;
556
+ border-radius: 16px;
557
+ transition:width 0.2ms;
558
+ }
559
+ .iframe {
560
+ position: absolute;
561
+ top: 0;
562
+ left: 0;
563
+ right: 0;
564
+ bottom: 0;
565
+ height: 100%;
566
+ width: 100%;
567
+ overflow: auto;
568
+ z-index: 1;
569
+ background-color: #fff;
570
+ }
571
+
572
+ .inputSearch {
573
+ width: 100%;
574
+ background: #0c1115;
575
+ color: #fff;
576
+ font-size: 11px;
577
+ border-radius: 15px;
578
+ padding: 6px 25px 6px 15px;
579
+ }
580
+
581
+ .cheader {
582
+ border-bottom: 1px solid #dad8d8;
583
+ padding: 6px 25px;
584
+ }
585
+ .ccontent {
586
+ background-color: #fff;
587
+ padding: 5px 20px 0px 20px;
588
+ overflow: auto;
589
+ }
590
+
591
+ .cheadertitle {
592
+ font-family: Semibold;
593
+ font-size: 21px;
594
+ margin-right: 30px;
595
+ color: #0c1015;
596
+ }
597
+ .responsive {
598
+ height: 30px
599
+ }
600
+ .responsiveOption {
601
+ width: 30px;
602
+ height: 30px;
603
+ display: inline-block;
604
+ position: relative;
605
+ vertical-align: middle;
606
+ text-align: center;
607
+ line-height: 27px;
608
+ background: #5c5e61;
609
+ border-radius: 50%;
610
+ color:#fff;
611
+ margin: 0 5px;
612
+ padding: 5px;
613
+ cursor: pointer;
614
+ transition: all 0.3s;
615
+ font-size: 10px;
616
+ }
617
+ .section .responsiveOption{
618
+ margin: 0px 5px 5px;
619
+ }
620
+ .responsiveOption:hover,.activeOption {
621
+ background-color: #00995a;
622
+ }
623
+ .activeOption:hover{
624
+ background-color: #d0263a;
625
+ }
626
+ .responsiveOption svg {
627
+ width: 15px;
628
+ height: 15px;
629
+
630
+ }
631
+ .responsiveOption svg path {
632
+ fill: #fff;
633
+ }
634
+ .propsTable {
635
+ margin: 40px auto;
636
+ border: 1px solid #ebedf0;
637
+ font-size: 14px;
638
+ line-height: 1.5;
639
+ empty-cells: show;
640
+ }
641
+ .tableHeader {
642
+ display: flex;
643
+ flex-direction: row;
644
+ }
645
+ .brR {
646
+ white-space: nowrap;
647
+ color: #5c6b77;
648
+ font-weight: 500;
649
+ background: rgba(0, 0, 0, 0.02);
650
+ padding: 16px 24px;
651
+ text-align: left;
652
+ }
653
+ .tableHeaderNB {
654
+ display: flex;
655
+ flex-direction: row;
656
+ border-bottom: 1px solid transparent;
657
+ }
658
+ .tableHeader span,
659
+ .tableHeaderNB span {
660
+ flex: 1;
661
+ overflow: hidden;
662
+ text-overflow: ellipsis;
663
+ white-space: nowrap;
664
+ word-wrap: normal;
665
+ border-right: 1px solid #ebedf0;
666
+ padding: 16px 24px;
667
+ text-align: left;
668
+ border-bottom: 1px solid #ebedf0;
669
+ }
670
+ .tableHeaderNB span {
671
+ border-bottom-width: 0;
672
+ }
673
+ .bn {
674
+ border-right-width: 0;
675
+ }
676
+ .tableHeader .defaultProps,
677
+ .tableHeaderNB .defaultProps {
678
+ overflow: initial;
679
+ white-space: normal;
680
+ text-overflow: initial;
681
+ word-break: break-all;
682
+ }
683
+ .srcCode {
684
+ color: #2d2929;
685
+ width: 100%;
686
+ height: 100%;
687
+ overflow: auto;
688
+ padding: 20px 0;
689
+ display: block;
690
+ }
691
+ .referContainer {
692
+ padding: 20px 0;
693
+ color:#fff;
694
+ background-color: #2D313F;
695
+ border-radius: 5px;
696
+ height: 100%;
697
+ }
698
+ .refsBy {
699
+ padding: 10px;
700
+ font-size: 17px;
701
+ color: inherit;
702
+ }
703
+ .refsLin {
704
+ padding: 5px;
705
+ font-size: 15px;
706
+ color: inherit;
707
+ list-style-position: inside;
708
+ margin-left: 30px;
709
+ }
710
+ .refsLin a {
711
+ color: inherit;
712
+ }
713
+ .psdContainer {
714
+ width: 24%;
715
+ border: 1px solid #1c2b36;
716
+ border-radius: 5px;
717
+ padding: 5px;
718
+ margin-right: 10px;
719
+ margin-bottom: 10px;
720
+ display: inline-block;
721
+ vertical-align: top;
722
+ }
723
+ .imageContainer {
724
+ min-height: 150px;
725
+ text-align: center;
726
+ }
727
+ .psdImage {
728
+ max-width: 100%;
729
+ max-height: 150px;
730
+ }
731
+ .psdLink {
732
+ color: #fff;
733
+ background: #1c2b36;
734
+ padding: 5px;
735
+ display: block;
736
+ text-align: center;
737
+ border-radius: 5px;
738
+ cursor: pointer;
739
+ margin-bottom: 3px;
740
+ border: 1px solid transparent;
741
+ }
742
+ .psdLink:hover {
743
+ background: #fff;
744
+ color: #1c2b36;
745
+ border-color: #1c2b36;
746
+ }
747
+ .infoTabs span {
748
+ padding: 0px 10px;
749
+ font-size: 14px;
750
+ line-height: 30px;
751
+ cursor: pointer;
752
+ margin-right: 10px;
753
+ border-radius: 2px;
754
+ transition: all 0.1s;
755
+ }
756
+ .infoactive,
757
+ .infoTabs span:hover {
758
+ background: #3cc1a2;
759
+ color: #fff;
760
+ }
761
+ .showToggleLeft {
762
+ background-color: #fff;
763
+ z-index: 5;
764
+ position: absolute;
765
+ bottom: 15px;
766
+ left: 20px;
767
+ border-radius: 50%;
768
+ transition: all 0.5s ease;
769
+ transform: scale(1);
770
+ cursor: pointer;
771
+ height: 35px;
772
+ width: 35px;
773
+ border: 1px solid #1e2633;
774
+ align-items: center;
775
+ justify-content: center;
776
+ display: none;
777
+ }
778
+ .showToggleLeft img {
779
+ width: 28px;
780
+ height: 28px;
781
+ padding: 7px;
782
+ transform: rotateY(180deg);
783
+ }
784
+ .bn {
785
+ border: none !important;
786
+ }
787
+ #ifm {
788
+ outline: none;
789
+ border: none;
790
+ overflow: hidden;
791
+ z-index: 1;
792
+ position: fixed;
793
+ }
794
+ .iframeCentering {
795
+ height: 98vh;
796
+ width: 100vw;
797
+ display: flex;
798
+ background: #fff;
799
+ justify-content: center;
800
+ align-items: center;
801
+ position: relative;
802
+ z-index: 1;
803
+ }
804
+ .posAb {
805
+ position: absolute;
806
+ z-index: 0;
807
+ animation: jump 1.5s ease 0s infinite normal;
808
+ font-size: 24px;
809
+ color: black;
810
+ }
811
+ @keyframes jump {
812
+ 0% {
813
+ transform: translateY(0);
814
+ }
815
+ 20% {
816
+ transform: translateY(0);
817
+ }
818
+ 40% {
819
+ transform: translateY(-30px);
820
+ }
821
+ 50% {
822
+ transform: translateY(0);
823
+ }
824
+ 60% {
825
+ transform: translateY(-15px);
826
+ }
827
+ 80% {
828
+ transform: translateY(0);
829
+ }
830
+ 100% {
831
+ transform: translateY(0);
832
+ }
833
+ }
834
+ .logo {
835
+ background-image: url('desklogo.png');
836
+ height: 40px;
837
+ width: 130px;
838
+ background-size: 100% 100%;
839
+ display: inline-block;
840
+ vertical-align: middle;
841
+ margin-top: 4px;
842
+ margin-left: 10px;
843
+ }
844
+ @media only screen and (max-width: 980px) {
845
+ .menuBar {
846
+ position: absolute;
847
+ top: 0;
848
+ left: 0;
849
+ bottom: 0;
850
+ transform: translate(-110%);
851
+ z-index: 2;
852
+ }
853
+ .isMenuOpen {
854
+ transform: translateX(0);
855
+ }
856
+ .showToggleLeft {
857
+ display: flex;
858
+ }
859
+ }
860
+
861
+ .iframeSection {
862
+ position: relative;
863
+ margin: 0 auto;
864
+ }
865
+ .loadingText {
866
+ position: absolute;
867
+ top: 50%;
868
+ left: 50%;
869
+ transform: translate(-50%, -50%);
870
+ display: inline-block;
871
+ z-index: 3;
872
+ display: none;
873
+ }
874
+ .lds-ripple {
875
+ display: inline-block;
876
+ position: relative;
877
+ width: 64px;
878
+ height: 64px;
879
+ }
880
+ .lds-ripple div {
881
+ position: absolute;
882
+ border: 4px solid #3a3a3a;
883
+ opacity: 1;
884
+ border-radius: 50%;
885
+ top: 0;
886
+ left: 0;
887
+ right: 0;
888
+ bottom: 0;
889
+ animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
890
+ }
891
+ .lds-ripple div:nth-child(2) {
892
+ animation-delay: -0.5s;
893
+ }
894
+ @keyframes lds-ripple {
895
+ 0% {
896
+ transform: scale(0);
897
+ opacity: 1;
898
+ }
899
+ 100% {
900
+ transform: scale(1.5);
901
+ opacity: 0;
902
+ }
903
+ }
904
+ .hide {
905
+ display: none;
906
+ }
907
+ .compListItem{
908
+ padding: 5px;
909
+ font-size: 15px;
910
+ list-style-position: inside;
911
+ margin-left: 30px;
912
+ }
913
+ .compListTitle{
914
+ padding: 10px;
915
+ font-size: 17px;
916
+ flex:1;
917
+ max-width: 90%;
918
+ display: block;
919
+ }
920
+ .toolOptions{
921
+ background: #333;
922
+ border-radius: 12px;
923
+ margin: 5px 0;
924
+ }
925
+ .toolarea{
926
+ overflow: auto;
927
+ }
928
+ .range{
929
+ width: 500px;
930
+ padding: 15px 0;
931
+ position: relative;
932
+ margin-left: 20px;
933
+ flex: .5;
934
+ }
935
+ .rangeSlider{
936
+ min-width: 200px;
937
+ }
938
+ .tooltip,.window {
939
+ padding: 4px;
940
+ font-size: 12px;
941
+ color: #fff;
942
+ background-color: #5c5e61;
943
+ white-space: nowrap;
944
+ border-radius: 5px;
945
+ margin: 0px 6px;
946
+ }
947
+ .tooltip{
948
+ min-width:80px;
949
+ text-align: center;
950
+ }
951
+ .tooltipVal{
952
+ font-size: 12px;
953
+ color:#fff;
954
+ padding: 4px;
955
+ }
956
+ .rangeInput {
957
+ -webkit-appearance: none;
958
+ display: block;
959
+ width: 100%;
960
+ min-width: 100px;
961
+ height: 8px;
962
+ padding: 0;
963
+ border-radius: 4px;
964
+ background: #dbdbdb;
965
+ box-sizing: content-box;
966
+ }
967
+ .rangeInput:focus {
968
+ outline: none;
969
+ }
970
+ .rangeInput::-webkit-slider-thumb {
971
+ -webkit-appearance: none;
972
+ width: 15px;
973
+ height: 20px;
974
+ border: 1px solid #03613b;
975
+ border-radius: 5px;
976
+ background: #00995a;
977
+ }
978
+ .transform{
979
+ transform: rotateY(180deg);
980
+ }
981
+ .home{
982
+ display: block;
983
+ padding: 2px 15px 2px 0px;
984
+ cursor: pointer;
985
+ }
986
+ .fullScreen svg{
987
+ width: 18px;
988
+ height: 18px;
989
+ }
990
+ .textSize{
991
+ line-height: 23px;
992
+ }
993
+ .textSize svg{
994
+ width: 12px;
995
+ height: 12px;
996
+ }
997
+ .svg{
998
+ width: inherit;
999
+ height: inherit;
1000
+ fill: #fff;
1001
+ }
1002
+ .homeIcon{
1003
+ width: 20px;
1004
+ height: 20px;
1005
+ }
1006
+ .smileIcon{
1007
+ width: 60px;
1008
+ margin-bottom: 30px
1009
+ }
1010
+ .authorview{
1011
+ height: 100%;
1012
+ overflow: auto;
1013
+ }
1014
+ #react{
1015
+ position: fixed;
1016
+ top: 0;
1017
+ z-index: 1;
1018
+ left: 0;
1019
+ right: 0;
1020
+ bottom: 0;
1021
+ background:#fff;
1022
+ }