glib-web 0.5.77

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 (204) hide show
  1. package/.eslintrc.js +37 -0
  2. package/LICENSE +201 -0
  3. package/README.md +33 -0
  4. package/action.js +167 -0
  5. package/actions/analytics/logEvent.js +26 -0
  6. package/actions/auth/creditCard.js +29 -0
  7. package/actions/auth/restart.js +5 -0
  8. package/actions/auth/saveCsrfToken.js +12 -0
  9. package/actions/cables/push.js +38 -0
  10. package/actions/dialogs/alert.js +15 -0
  11. package/actions/dialogs/close.js +7 -0
  12. package/actions/dialogs/notification.js +14 -0
  13. package/actions/dialogs/oauth.js +6 -0
  14. package/actions/dialogs/open.js +7 -0
  15. package/actions/dialogs/options.js +5 -0
  16. package/actions/dialogs/show.js +5 -0
  17. package/actions/forms/submit.js +15 -0
  18. package/actions/http/delete.js +7 -0
  19. package/actions/http/patch.js +7 -0
  20. package/actions/http/post.js +7 -0
  21. package/actions/http/put.js +7 -0
  22. package/actions/panels/scrollTo.js +18 -0
  23. package/actions/panels/scrollToBottom.js +11 -0
  24. package/actions/runMultiple.js +11 -0
  25. package/actions/sheets/select.js +5 -0
  26. package/actions/snackbars/alert.js +15 -0
  27. package/actions/snackbars/select.js +5 -0
  28. package/actions/timeouts/set.js +20 -0
  29. package/actions/windows/close.js +13 -0
  30. package/actions/windows/closeAll.js +16 -0
  31. package/actions/windows/closeWithReload.js +18 -0
  32. package/actions/windows/open.js +5 -0
  33. package/actions/windows/openWeb.js +5 -0
  34. package/actions/windows/refreshState.js +5 -0
  35. package/actions/windows/reload.js +24 -0
  36. package/actions/ws/push.js +35 -0
  37. package/app.vue +180 -0
  38. package/components/_button.vue +101 -0
  39. package/components/_dropdownMenu.vue +76 -0
  40. package/components/_icon.vue +50 -0
  41. package/components/_message.vue +25 -0
  42. package/components/avatar.vue +16 -0
  43. package/components/banners/alert.vue +49 -0
  44. package/components/banners/select.vue +82 -0
  45. package/components/button.vue +13 -0
  46. package/components/calendar.vue +105 -0
  47. package/components/charts/column.vue +26 -0
  48. package/components/charts/line.vue +61 -0
  49. package/components/chip.vue +24 -0
  50. package/components/component.vue +222 -0
  51. package/components/datetime.vue +54 -0
  52. package/components/fab.vue +33 -0
  53. package/components/fields/_patternText.vue +61 -0
  54. package/components/fields/_select.vue +86 -0
  55. package/components/fields/autocomplete.vue +73 -0
  56. package/components/fields/check.vue +104 -0
  57. package/components/fields/checkGroup.vue +51 -0
  58. package/components/fields/country/countries.js +251 -0
  59. package/components/fields/country/field.vue +81 -0
  60. package/components/fields/country/regions.js +12 -0
  61. package/components/fields/creditCard.vue +105 -0
  62. package/components/fields/date.vue +24 -0
  63. package/components/fields/datetime.vue +49 -0
  64. package/components/fields/dynamicGroup.vue +106 -0
  65. package/components/fields/dynamicSelect.vue +173 -0
  66. package/components/fields/file.vue +166 -0
  67. package/components/fields/googlePlace.vue +158 -0
  68. package/components/fields/hidden.vue +18 -0
  69. package/components/fields/location.vue +223 -0
  70. package/components/fields/newRichText.vue +191 -0
  71. package/components/fields/phone/countries.js +315 -0
  72. package/components/fields/phone/field.vue +348 -0
  73. package/components/fields/phone/sprite.css +1071 -0
  74. package/components/fields/radio.vue +64 -0
  75. package/components/fields/radioGroup.vue +93 -0
  76. package/components/fields/rating.vue +26 -0
  77. package/components/fields/richText.vue +172 -0
  78. package/components/fields/select.vue +17 -0
  79. package/components/fields/stripe/stripeFields.vue +93 -0
  80. package/components/fields/stripe/stripeIndividualFields.vue +207 -0
  81. package/components/fields/stripeExternalAccount.vue +135 -0
  82. package/components/fields/stripeToken.vue +59 -0
  83. package/components/fields/submit.vue +23 -0
  84. package/components/fields/text.vue +144 -0
  85. package/components/fields/textarea.vue +59 -0
  86. package/components/fields/timeZone.vue +22 -0
  87. package/components/fields/timer.vue +83 -0
  88. package/components/h1.vue +28 -0
  89. package/components/h2.vue +20 -0
  90. package/components/h3.vue +22 -0
  91. package/components/h4.vue +20 -0
  92. package/components/h5.vue +20 -0
  93. package/components/h6.vue +20 -0
  94. package/components/hr.vue +13 -0
  95. package/components/html.vue +13 -0
  96. package/components/icon.vue +25 -0
  97. package/components/image.vue +87 -0
  98. package/components/label.vue +62 -0
  99. package/components/map.vue +206 -0
  100. package/components/markdown.vue +52 -0
  101. package/components/mixins/events.js +178 -0
  102. package/components/mixins/generic.js +58 -0
  103. package/components/mixins/list/autoload.js +144 -0
  104. package/components/mixins/longClick.js +56 -0
  105. package/components/mixins/scrolling.js +35 -0
  106. package/components/mixins/styles.js +221 -0
  107. package/components/mixins/table/autoload.js +131 -0
  108. package/components/mixins/table/export.js +52 -0
  109. package/components/mixins/table/import.js +106 -0
  110. package/components/mixins/text.js +20 -0
  111. package/components/mixins/ws/actionCable.js +48 -0
  112. package/components/mixins/ws/phoenixSocket.js +117 -0
  113. package/components/p.vue +36 -0
  114. package/components/panels/carousel.vue +55 -0
  115. package/components/panels/column.vue +117 -0
  116. package/components/panels/custom.vue +52 -0
  117. package/components/panels/flow.vue +81 -0
  118. package/components/panels/form.vue +126 -0
  119. package/components/panels/horizontal.vue +73 -0
  120. package/components/panels/list.vue +241 -0
  121. package/components/panels/responsive.vue +88 -0
  122. package/components/panels/scroll.vue +68 -0
  123. package/components/panels/split.vue +52 -0
  124. package/components/panels/table.vue +234 -0
  125. package/components/panels/ul.vue +34 -0
  126. package/components/panels/vertical.vue +71 -0
  127. package/components/panels/web.vue +11 -0
  128. package/components/spacer.vue +11 -0
  129. package/components/switch.vue +42 -0
  130. package/components/tabBar.vue +44 -0
  131. package/extensions/array.js +20 -0
  132. package/extensions/string.js +21 -0
  133. package/index.js +195 -0
  134. package/keys.js +12 -0
  135. package/nav/appbar.vue +117 -0
  136. package/nav/content.vue +40 -0
  137. package/nav/dialog.vue +127 -0
  138. package/nav/drawer.vue +88 -0
  139. package/nav/drawerButton.vue +28 -0
  140. package/nav/drawerLabel.vue +21 -0
  141. package/nav/sheet.vue +57 -0
  142. package/nav/snackbar.vue +72 -0
  143. package/package.json +42 -0
  144. package/settings.json.example +21 -0
  145. package/static/plugins/alignment/alignment.js +76 -0
  146. package/static/plugins/alignment/alignment.min.js +1 -0
  147. package/static/plugins/beyondgrammar/beyondgrammar.js +46 -0
  148. package/static/plugins/beyondgrammar/beyondgrammar.min.js +1 -0
  149. package/static/plugins/blockcode/blockcode.js +110 -0
  150. package/static/plugins/blockcode/blockcode.min.js +1 -0
  151. package/static/plugins/clips/clips.js +44 -0
  152. package/static/plugins/clips/clips.min.js +1 -0
  153. package/static/plugins/counter/counter.js +60 -0
  154. package/static/plugins/counter/counter.min.js +1 -0
  155. package/static/plugins/definedlinks/definedlinks.js +64 -0
  156. package/static/plugins/definedlinks/definedlinks.min.js +1 -0
  157. package/static/plugins/handle/handle.js +173 -0
  158. package/static/plugins/handle/handle.min.js +1 -0
  159. package/static/plugins/icons/icons.js +72 -0
  160. package/static/plugins/icons/icons.min.js +1 -0
  161. package/static/plugins/imageposition/imageposition.js +85 -0
  162. package/static/plugins/imageposition/imageposition.min.js +1 -0
  163. package/static/plugins/inlineformat/inlineformat.js +85 -0
  164. package/static/plugins/inlineformat/inlineformat.min.js +1 -0
  165. package/static/plugins/removeformat/removeformat.js +28 -0
  166. package/static/plugins/removeformat/removeformat.min.js +1 -0
  167. package/static/plugins/selector/selector.js +96 -0
  168. package/static/plugins/selector/selector.min.js +1 -0
  169. package/static/plugins/specialchars/specialchars.js +63 -0
  170. package/static/plugins/specialchars/specialchars.min.js +1 -0
  171. package/static/plugins/textdirection/textdirection.js +55 -0
  172. package/static/plugins/textdirection/textdirection.min.js +1 -0
  173. package/static/plugins/textexpander/textexpander.js +46 -0
  174. package/static/plugins/textexpander/textexpander.min.js +1 -0
  175. package/static/plugins/underline/underline.js +27 -0
  176. package/static/plugins/underline/underline.min.js +1 -0
  177. package/static/redactorx.css +1344 -0
  178. package/static/redactorx.js +14254 -0
  179. package/static/redactorx.min.css +1 -0
  180. package/static/redactorx.min.js +1 -0
  181. package/static/redactorx.usm.min.js +2 -0
  182. package/styles/test.sass +3 -0
  183. package/styles/test.scss +5 -0
  184. package/templates/_menu.vue +38 -0
  185. package/templates/comment.vue +202 -0
  186. package/templates/featured.vue +32 -0
  187. package/templates/thumbnail.vue +138 -0
  188. package/templates/unsupported.vue +12 -0
  189. package/utils/app.js +14 -0
  190. package/utils/dom.js +13 -0
  191. package/utils/form.js +34 -0
  192. package/utils/format.js +14 -0
  193. package/utils/hash.js +29 -0
  194. package/utils/helper.js +44 -0
  195. package/utils/history.js +70 -0
  196. package/utils/http.js +209 -0
  197. package/utils/launch.js +135 -0
  198. package/utils/private/ws.js +22 -0
  199. package/utils/public.js +23 -0
  200. package/utils/settings.js +48 -0
  201. package/utils/storage.js +9 -0
  202. package/utils/type.js +69 -0
  203. package/utils/uploader.js +121 -0
  204. package/utils/url.js +132 -0
@@ -0,0 +1,1344 @@
1
+ .rx-reset * {
2
+ box-sizing: border-box;
3
+ background: transparent;
4
+ border: 0;
5
+ font-size: 100%;
6
+ line-height: 1;
7
+ margin: 0;
8
+ padding: 0;
9
+ vertical-align: baseline; }
10
+
11
+ .rx-reset h1:empty,
12
+ .rx-reset h2:empty,
13
+ .rx-reset h3:empty,
14
+ .rx-reset h4:empty,
15
+ .rx-reset h5:empty,
16
+ .rx-reset h6:empty,
17
+ .rx-reset p:empty,
18
+ .rx-reset li:empty,
19
+ .rx-reset figcaption:empty,
20
+ .rx-reset blockquote:empty {
21
+ min-height: 1.5em; }
22
+
23
+ .rx-reset pre:empty {
24
+ min-height: 3.5em; }
25
+
26
+ .rx-reset strong:empty, .rx-reset b:empty, .rx-reset em:empty, .rx-reset i:empty, .rx-reset span:empty, .rx-reset sup:empty, .rx-reset sub:empty, .rx-reset u:empty, .rx-reset ins:empty, .rx-reset code:empty {
27
+ display: inline-block;
28
+ min-width: 1px;
29
+ min-height: 1em; }
30
+
31
+ .rx-reset code + code {
32
+ margin-left: 2px; }
33
+
34
+ .rx-reset table {
35
+ empty-cells: show; }
36
+
37
+ .rx-reset embed, .rx-reset img, .rx-reset object {
38
+ max-width: 100%;
39
+ height: auto; }
40
+
41
+ .rx-reset figure > img,
42
+ .rx-reset figure > iframe {
43
+ vertical-align: middle; }
44
+
45
+ .rx-reset figcaption {
46
+ display: block;
47
+ top: 0; }
48
+ .rx-reset figcaption:empty {
49
+ min-height: 18px; }
50
+
51
+ .rx-content {
52
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
53
+ font-size: 16px;
54
+ line-height: 1.5; }
55
+ .rx-content h1 + *, .rx-content h2 + *, .rx-content h3 + *, .rx-content h4 + *, .rx-content h5 + *, .rx-content h6 + * {
56
+ margin-top: 12px; }
57
+ .rx-content p + h2, .rx-content ul + h2, .rx-content ol + h2, .rx-content blockquote + h2, .rx-content figure + h2, .rx-content pre + h2, .rx-content table + h2, .rx-content dl + h2, .rx-content address + h2 {
58
+ margin-top: 24px; }
59
+ .rx-content p + h3, .rx-content ul + h3, .rx-content ol + h3, .rx-content blockquote + h3, .rx-content figure + h3, .rx-content pre + h3, .rx-content table + h3, .rx-content dl + h3, .rx-content address + h3 {
60
+ margin-top: 24px; }
61
+ .rx-content p + h4, .rx-content ul + h4, .rx-content ol + h4, .rx-content blockquote + h4, .rx-content figure + h4, .rx-content pre + h4, .rx-content table + h4, .rx-content dl + h4, .rx-content address + h4 {
62
+ margin-top: 24px; }
63
+ .rx-content p + h5, .rx-content ul + h5, .rx-content ol + h5, .rx-content blockquote + h5, .rx-content figure + h5, .rx-content pre + h5, .rx-content table + h5, .rx-content dl + h5, .rx-content address + h5 {
64
+ margin-top: 24px; }
65
+ .rx-content p + h6, .rx-content ul + h6, .rx-content ol + h6, .rx-content blockquote + h6, .rx-content figure + h6, .rx-content pre + h6, .rx-content table + h6, .rx-content dl + h6, .rx-content address + h6 {
66
+ margin-top: 24px; }
67
+ .rx-content p + *, .rx-content ul + *, .rx-content ol + *, .rx-content blockquote + *, .rx-content figure + *, .rx-content pre + *, .rx-content table + *, .rx-content dl + *, .rx-content address + * {
68
+ margin-top: 16px; }
69
+ .rx-content div + * {
70
+ margin-top: 24px; }
71
+ .rx-content h1 + h2 {
72
+ margin-top: 24px; }
73
+ .rx-content h2 + h3 {
74
+ margin-top: 24px; }
75
+ .rx-content h3 + h4 {
76
+ margin-top: 24px; }
77
+ .rx-content h4 + h5 {
78
+ margin-top: 24px; }
79
+ .rx-content h5 + h6 {
80
+ margin-top: 24px; }
81
+ .rx-content a,
82
+ .rx-content a:hover,
83
+ .rx-content a:focus {
84
+ color: #0044C3; }
85
+ .rx-content p {
86
+ font-size: 16px;
87
+ line-height: 1.5; }
88
+ .rx-content h1,
89
+ .rx-content h2,
90
+ .rx-content h3,
91
+ .rx-content h4,
92
+ .rx-content h5,
93
+ .rx-content h6 {
94
+ font-family: inherit;
95
+ font-weight: bold;
96
+ font-style: normal;
97
+ font-size: 16px;
98
+ line-height: 1.5;
99
+ color: #000B1D;
100
+ text-rendering: optimizeLegibility;
101
+ letter-spacing: -0.01em; }
102
+ .rx-content h1 a,
103
+ .rx-content h1 a:focus,
104
+ .rx-content h1 a:hover,
105
+ .rx-content h2 a,
106
+ .rx-content h2 a:focus,
107
+ .rx-content h2 a:hover,
108
+ .rx-content h3 a,
109
+ .rx-content h3 a:focus,
110
+ .rx-content h3 a:hover,
111
+ .rx-content h4 a,
112
+ .rx-content h4 a:focus,
113
+ .rx-content h4 a:hover,
114
+ .rx-content h5 a,
115
+ .rx-content h5 a:focus,
116
+ .rx-content h5 a:hover,
117
+ .rx-content h6 a,
118
+ .rx-content h6 a:focus,
119
+ .rx-content h6 a:hover {
120
+ color: inherit;
121
+ text-decoration: none; }
122
+ .rx-content h1 {
123
+ font-size: 40px;
124
+ line-height: 1.2; }
125
+ .rx-content h2 {
126
+ font-size: 24px;
127
+ line-height: 1.3; }
128
+ .rx-content h3 {
129
+ font-size: 21px;
130
+ line-height: 1.5; }
131
+ .rx-content ul,
132
+ .rx-content ol {
133
+ margin-left: 20px; }
134
+ .rx-content li {
135
+ font-size: 16px;
136
+ line-height: 1.5; }
137
+ .rx-content li li {
138
+ font-size: 1em; }
139
+ .rx-content dt {
140
+ font-weight: bold; }
141
+ .rx-content dd + dt {
142
+ margin-top: 0.25em; }
143
+ .rx-content pre {
144
+ overflow: auto;
145
+ white-space: pre;
146
+ font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
147
+ font-size: 90%;
148
+ line-height: 1.5;
149
+ color: #262F3F;
150
+ background-color: #F5F5F6;
151
+ padding: 1em; }
152
+ .rx-content pre code {
153
+ padding: 0;
154
+ border: 0;
155
+ background: none;
156
+ font-size: 100%;
157
+ display: block;
158
+ line-height: inherit; }
159
+ .rx-content blockquote {
160
+ color: #262F3F;
161
+ font-style: italic;
162
+ font-weight: normal;
163
+ padding: 0;
164
+ background: transparent; }
165
+ .rx-content blockquote p {
166
+ color: #262F3F;
167
+ font-size: 125%;
168
+ line-height: 1.5; }
169
+ .rx-content blockquote p + p {
170
+ margin-top: 4px; }
171
+ .rx-content blockquote cite,
172
+ .rx-content figcaption cite {
173
+ font-style: inherit;
174
+ font-size: 14px;
175
+ line-height: 1.5;
176
+ color: rgba(38, 47, 63, 0.7); }
177
+ .rx-content caption {
178
+ text-align: left;
179
+ font-style: normal; }
180
+ .rx-content table {
181
+ border-collapse: collapse;
182
+ border-spacing: 0;
183
+ width: 100%;
184
+ empty-cells: show; }
185
+ .rx-content td,
186
+ .rx-content th {
187
+ text-align: left;
188
+ vertical-align: top;
189
+ font-size: 95%;
190
+ line-height: 1.5;
191
+ padding: 0.75em;
192
+ border: 1px solid rgba(217, 219, 221, 0.5); }
193
+ .rx-content th {
194
+ font-weight: normal; }
195
+ .rx-content thead th {
196
+ font-weight: bold; }
197
+ .rx-content address {
198
+ font-style: normal; }
199
+ .rx-content dfn,
200
+ .rx-content abbr {
201
+ font-size: 95%; }
202
+ .rx-content time,
203
+ .rx-content cite,
204
+ .rx-content small,
205
+ .rx-content var,
206
+ .rx-content samp,
207
+ .rx-content kbd,
208
+ .rx-content code {
209
+ font-size: 85%; }
210
+ .rx-content sup,
211
+ .rx-content sub {
212
+ font-size: 65%; }
213
+ .rx-content var,
214
+ .rx-content code,
215
+ .rx-content kbd,
216
+ .rx-content samp {
217
+ display: inline-block;
218
+ font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
219
+ font-style: normal;
220
+ line-height: 1;
221
+ color: rgba(0, 11, 29, 0.85);
222
+ vertical-align: baseline; }
223
+ .rx-content samp,
224
+ .rx-content kbd,
225
+ .rx-content code {
226
+ border-radius: 2px; }
227
+ .rx-content kbd {
228
+ border: 1px solid rgba(0, 11, 29, 0.15);
229
+ padding: .2em .4em; }
230
+ .rx-content code {
231
+ position: relative;
232
+ top: -1px;
233
+ border: 1px solid transparent;
234
+ background-color: #F5F5F6;
235
+ padding: .2em .4em .2em; }
236
+ .rx-content mark {
237
+ background-color: yellow;
238
+ color: black; }
239
+ .rx-content b,
240
+ .rx-content strong {
241
+ font-weight: 600; }
242
+ .rx-content dfn[title],
243
+ .rx-content abbr[title] {
244
+ letter-spacing: .01em;
245
+ text-transform: uppercase;
246
+ text-decoration: none;
247
+ border-bottom: 1px dotted rgba(0, 0, 0, 0.4);
248
+ cursor: help; }
249
+ .rx-content cite {
250
+ font-style: italic; }
251
+ .rx-content sub,
252
+ .rx-content sup {
253
+ line-height: 1;
254
+ margin-left: 2px; }
255
+ .rx-content sub {
256
+ vertical-align: sub; }
257
+ .rx-content sup {
258
+ vertical-align: super; }
259
+ .rx-content figure > img,
260
+ .rx-content figure > iframe,
261
+ .rx-content figure > pre,
262
+ .rx-content figure > div {
263
+ vertical-align: middle; }
264
+ .rx-content figure figcaption {
265
+ display: block;
266
+ font-style: normal;
267
+ margin-top: 0.25em;
268
+ font-size: 12px;
269
+ line-height: 1.5; }
270
+ .rx-content .embed-responsive {
271
+ position: relative;
272
+ padding: 0;
273
+ margin: 0;
274
+ padding-bottom: 56.25%;
275
+ padding-top: 25px;
276
+ height: 0; }
277
+ .rx-content .embed-responsive iframe {
278
+ position: absolute;
279
+ top: 0;
280
+ left: 0;
281
+ width: 100%;
282
+ height: 100%; }
283
+ .rx-content hr {
284
+ position: relative;
285
+ line-height: 1;
286
+ background: none;
287
+ border: none;
288
+ text-align: left;
289
+ margin-top: 1em;
290
+ margin-bottom: 1em;
291
+ height: 10px; }
292
+ .rx-content hr:before {
293
+ content: '';
294
+ position: absolute;
295
+ top: 50%; }
296
+ .rx-content hr:before {
297
+ width: 100%;
298
+ max-width: 100%;
299
+ margin-top: -0.5px;
300
+ border-top-width: 1px;
301
+ border-top-style: solid;
302
+ border-top-color: rgba(217, 219, 221, 0.6); }
303
+ .rx-content .align-right {
304
+ text-align: right; }
305
+ .rx-content .align-center {
306
+ text-align: center; }
307
+ .rx-content .align-justify {
308
+ text-align: justify; }
309
+ .rx-content div.align-center img,
310
+ .rx-content p.align-center img,
311
+ .rx-content figure.align-center img {
312
+ max-width: 80%; }
313
+ .rx-content div.align-center figcaption,
314
+ .rx-content p.align-center figcaption,
315
+ .rx-content figure.align-center figcaption {
316
+ text-align: center; }
317
+ .rx-content .float-left {
318
+ float: left;
319
+ margin-right: 1em;
320
+ margin-bottom: 1em;
321
+ max-width: 200px; }
322
+ .rx-content .float-right {
323
+ float: right;
324
+ margin-left: 1em;
325
+ margin-bottom: 1em;
326
+ max-width: 200px; }
327
+
328
+ @keyframes slideUp {
329
+ to {
330
+ height: 0;
331
+ padding-top: 0;
332
+ padding-bottom: 0;
333
+ margin-bottom: 0; } }
334
+
335
+ @keyframes slideDown {
336
+ from {
337
+ height: 0;
338
+ padding-top: 0;
339
+ padding-bottom: 0;
340
+ margin-bottom: 0; } }
341
+
342
+ @keyframes fadeIn {
343
+ from {
344
+ opacity: 0; }
345
+ to {
346
+ opacity: 1; } }
347
+
348
+ @keyframes fadeOut {
349
+ from {
350
+ opacity: 1; }
351
+ to {
352
+ opacity: 0; } }
353
+
354
+ .rx-container {
355
+ box-sizing: border-box;
356
+ border-radius: 2px;
357
+ background-color: #ffffff;
358
+ border: 1px solid rgba(0, 11, 29, 0.1); }
359
+
360
+ .rx-toolbar {
361
+ display: flex;
362
+ flex: 1;
363
+ white-space: nowrap;
364
+ height: 40px;
365
+ overflow-x: scroll;
366
+ overflow-y: hidden;
367
+ scrollbar-width: none;
368
+ -ms-overflow-style: none; }
369
+ .rx-toolbar::-webkit-scrollbar {
370
+ width: 0;
371
+ height: 0; }
372
+ .rx-toolbar-container {
373
+ position: relative;
374
+ z-index: 1;
375
+ margin: 0;
376
+ padding: 0;
377
+ box-sizing: border-box;
378
+ display: flex; }
379
+ .rx-toolbar-container.is-rx-toolbar {
380
+ border-top-left-radius: 2px;
381
+ border-top-right-radius: 2px;
382
+ background-color: rgba(255, 255, 255, 0.98);
383
+ border-bottom: 1px solid rgba(0, 11, 29, 0.1); }
384
+ .rx-toolbar-container.is-rx-toolbar .rx-topbar {
385
+ position: relative;
386
+ margin-left: auto;
387
+ display: flex; }
388
+ .rx-toolbar-sticky {
389
+ position: -webkit-sticky;
390
+ position: sticky;
391
+ top: 0; }
392
+
393
+ .rx-editor-container {
394
+ box-sizing: border-box; }
395
+
396
+ .rx-source-container {
397
+ display: none; }
398
+
399
+ .rx-context {
400
+ position: absolute;
401
+ top: 0;
402
+ left: 0;
403
+ z-index: 4;
404
+ padding: 0;
405
+ margin: 0;
406
+ line-height: 1;
407
+ border-radius: 4px;
408
+ background-color: #000B1D; }
409
+
410
+ .rx-control {
411
+ position: absolute;
412
+ top: 0;
413
+ left: 0;
414
+ z-index: 3;
415
+ padding: 0;
416
+ margin: 0;
417
+ line-height: 1; }
418
+
419
+ .rx-topbar {
420
+ position: absolute;
421
+ right: 0; }
422
+
423
+ .rx-source,
424
+ .rx-source:hover,
425
+ .rx-source:focus {
426
+ text-align: left;
427
+ box-sizing: border-box;
428
+ font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
429
+ width: 100%;
430
+ display: block;
431
+ margin: 0;
432
+ border: none;
433
+ box-shadow: none;
434
+ border-radius: 0;
435
+ background-color: #262F3F;
436
+ color: rgba(255, 255, 255, 0.8);
437
+ font-size: 14px;
438
+ outline: none;
439
+ padding: 10px 18px 20px 18px;
440
+ line-height: 1.5;
441
+ min-height: 60px;
442
+ resize: vertical; }
443
+
444
+ .rx-draggable-placeholder {
445
+ height: 20px;
446
+ min-width: 80px;
447
+ outline: 3px dashed gold !important;
448
+ background-color: rgba(255, 215, 0, 0.2) !important;
449
+ margin-bottom: 20px; }
450
+
451
+ .rx-drag-active {
452
+ outline: 3px dashed gold !important;
453
+ outline-offset: 0 !important;
454
+ position: relative;
455
+ max-height: 40px;
456
+ overflow: hidden;
457
+ padding: 0; }
458
+ .rx-drag-active:before {
459
+ width: 100%;
460
+ height: 100%;
461
+ content: "";
462
+ top: 0;
463
+ left: 0;
464
+ background-color: rgba(255, 215, 0, 0.4);
465
+ position: absolute;
466
+ z-index: 1; }
467
+
468
+ .rx-dragging {
469
+ opacity: 0.95;
470
+ background-color: #ffffff;
471
+ box-shadow: 0 15px 30px 0 15px 30px rgba(0, 11, 29, 0.3); }
472
+ .rx-dragging img {
473
+ max-width: 100%; }
474
+
475
+ .rx-voice-label {
476
+ display: none; }
477
+
478
+ @keyframes progress-bar-stripes {
479
+ from {
480
+ background-position: 40px 0; }
481
+ to {
482
+ background-position: 0 0; } }
483
+
484
+ .rx-editor-progress {
485
+ position: fixed;
486
+ top: 0;
487
+ left: 0;
488
+ z-index: 11000;
489
+ width: 100%;
490
+ background-color: rgba(0, 11, 29, 0.2); }
491
+ .rx-editor-progress span {
492
+ animation: progress-bar-stripes 2s linear infinite;
493
+ content: '';
494
+ display: block;
495
+ min-height: 8px;
496
+ width: 100%;
497
+ height: 100%;
498
+ background-color: #0058FB;
499
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
500
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
501
+ background-size: 40px 40px; }
502
+
503
+ .rx-nowrap {
504
+ white-space: nowrap !important; }
505
+
506
+ .rx-handle {
507
+ cursor: move; }
508
+
509
+ .rx-placeholder:before {
510
+ position: absolute;
511
+ z-index: 0;
512
+ content: attr(placeholder);
513
+ color: rgba(0, 11, 29, 0.4);
514
+ font-weight: normal;
515
+ cursor: text; }
516
+
517
+ @font-face {
518
+ font-family: 'RedactorX';
519
+ src: url("data:application/x-font-ttf;charset=utf-8;base64,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") format("truetype");
520
+ font-weight: normal;
521
+ font-style: normal;
522
+ font-display: block; }
523
+
524
+ [class^="rx-icon-"], [class*=" rx-icon-"] {
525
+ /* use !important to prevent issues with browser extensions that change fonts */
526
+ font-family: 'RedactorX' !important;
527
+ speak: never;
528
+ font-style: normal;
529
+ font-weight: normal;
530
+ font-variant: normal;
531
+ text-transform: none;
532
+ line-height: 1;
533
+ /* Better Font Rendering =========== */
534
+ -webkit-font-smoothing: antialiased;
535
+ -moz-osx-font-smoothing: grayscale; }
536
+
537
+ .rx-icon-sub:before {
538
+ content: "\e90c"; }
539
+
540
+ .rx-icon-sup:before {
541
+ content: "\e920"; }
542
+
543
+ .rx-icon-align-center:before {
544
+ content: "\e900"; }
545
+
546
+ .rx-icon-align-justify:before {
547
+ content: "\e901"; }
548
+
549
+ .rx-icon-alignment:before,
550
+ .rx-icon-align-left:before {
551
+ content: "\e902"; }
552
+
553
+ .rx-icon-add:before {
554
+ content: "\e903"; }
555
+
556
+ .rx-icon-align-right:before {
557
+ content: "\e904"; }
558
+
559
+ .rx-icon-embed:before {
560
+ content: "\e905"; }
561
+
562
+ .rx-icon-file:before {
563
+ content: "\e906"; }
564
+
565
+ .rx-icon-duplicate:before {
566
+ content: "\e907"; }
567
+
568
+ .rx-icon-format:before {
569
+ content: "\e908"; }
570
+
571
+ .rx-icon-bold:before {
572
+ content: "\e909"; }
573
+
574
+ .rx-icon-pre:before,
575
+ .rx-icon-code:before,
576
+ .rx-icon-html:before {
577
+ content: "\e90a"; }
578
+
579
+ .rx-icon-deleted:before {
580
+ content: "\e90b"; }
581
+
582
+ .rx-icon-image:before {
583
+ content: "\e90d"; }
584
+
585
+ .rx-icon-indent:before {
586
+ content: "\e90e"; }
587
+
588
+ .rx-icon-italic:before {
589
+ content: "\e90f"; }
590
+
591
+ .rx-icon-kbd:before {
592
+ content: "\e910"; }
593
+
594
+ .rx-icon-line:before {
595
+ content: "\e911"; }
596
+
597
+ .rx-icon-link:before {
598
+ content: "\e912"; }
599
+
600
+ .rx-icon-list:before {
601
+ content: "\e913"; }
602
+
603
+ .rx-icon-mark:before {
604
+ content: "\e914"; }
605
+
606
+ .rx-icon-quote:before {
607
+ content: "\e915"; }
608
+
609
+ .rx-icon-redo:before {
610
+ content: "\e916"; }
611
+
612
+ .rx-icon-selector:before {
613
+ content: "\e917"; }
614
+
615
+ .rx-icon-shortcut:before {
616
+ content: "\e918"; }
617
+
618
+ .rx-icon-sort:before {
619
+ content: "\e919"; }
620
+
621
+ .rx-icon-table:before {
622
+ content: "\e91a"; }
623
+
624
+ .rx-icon-text:before {
625
+ content: "\e91b"; }
626
+
627
+ .rx-icon-trash:before {
628
+ content: "\e91c"; }
629
+
630
+ .rx-icon-tune:before {
631
+ content: "\e91d"; }
632
+
633
+ .rx-icon-underline:before {
634
+ content: "\e91e"; }
635
+
636
+ .rx-icon-undo:before {
637
+ content: "\e91f"; }
638
+
639
+ .rx-button {
640
+ display: inline-flex;
641
+ align-items: center;
642
+ justify-content: center;
643
+ vertical-align: middle;
644
+ text-decoration: none;
645
+ background: none;
646
+ outline: none;
647
+ margin: 0;
648
+ padding: 0;
649
+ box-sizing: border-box;
650
+ font-size: 16px;
651
+ line-height: 1;
652
+ cursor: pointer; }
653
+ .rx-button:hover {
654
+ text-decoration: none; }
655
+ .rx-button-icon {
656
+ display: inline-flex; }
657
+ .rx-button-icon svg {
658
+ display: inline-block; }
659
+
660
+ .rx-button-icon {
661
+ width: 31px;
662
+ height: 30px;
663
+ align-items: center;
664
+ justify-content: center;
665
+ border-radius: 4px;
666
+ border: 1px solid transparent; }
667
+
668
+ .rx-button-control {
669
+ width: 26px;
670
+ color: rgba(0, 11, 29, 0.4); }
671
+ .rx-button-control:hover {
672
+ color: #000B1D; }
673
+
674
+ .rx-button-context, .rx-button-context:active, .rx-button-context:focus {
675
+ width: 40px;
676
+ min-width: 40px;
677
+ height: 36px;
678
+ background-color: transparent;
679
+ color: rgba(255, 255, 255, 0.85); }
680
+
681
+ .rx-button-context svg {
682
+ fill: rgba(255, 255, 255, 0.85); }
683
+
684
+ .rx-button-context.active {
685
+ background-color: rgba(255, 255, 255, 0.1);
686
+ color: rgba(255, 255, 255, 0.85); }
687
+
688
+ .rx-button-context:hover {
689
+ transition: all 0.2s linear;
690
+ background-color: rgba(255, 255, 255, 0.2);
691
+ color: #ffffff; }
692
+ .rx-button-context:hover svg {
693
+ fill: #ffffff; }
694
+ .rx-button-context:hover .rx-button-icon {
695
+ border-color: transparent; }
696
+
697
+ .rx-button-toolbar {
698
+ padding-top: 1px;
699
+ width: 40px;
700
+ min-width: 40px;
701
+ height: 41px; }
702
+
703
+ .rx-button-topbar {
704
+ width: 36px;
705
+ height: 40px;
706
+ padding-top: 1px; }
707
+
708
+ .rx-button-toolbar,
709
+ .rx-button-topbar {
710
+ color: rgba(0, 11, 29, 0.8); }
711
+ .rx-button-toolbar svg,
712
+ .rx-button-topbar svg {
713
+ fill: rgba(0, 11, 29, 0.8); }
714
+ .rx-button-toolbar.active .rx-button-icon,
715
+ .rx-button-topbar.active .rx-button-icon {
716
+ border-color: #e4e8ed;
717
+ background-color: rgba(228, 232, 237, 0.5); }
718
+ .rx-button-toolbar.toggled,
719
+ .rx-button-topbar.toggled {
720
+ background-color: #E4E8ED;
721
+ color: #000B1D; }
722
+ .rx-button-toolbar.toggled svg,
723
+ .rx-button-topbar.toggled svg {
724
+ fill: #000B1D; }
725
+ .rx-button-toolbar.disable, .rx-button-toolbar.disable:hover,
726
+ .rx-button-topbar.disable,
727
+ .rx-button-topbar.disable:hover {
728
+ cursor: default;
729
+ background-color: transparent !important;
730
+ color: rgba(0, 11, 29, 0.4) !important; }
731
+ .rx-button-toolbar.disable svg,
732
+ .rx-button-topbar.disable svg {
733
+ fill: rgba(0, 11, 29, 0.4) !important; }
734
+ .rx-button-toolbar:hover,
735
+ .rx-button-topbar:hover {
736
+ transition: all 0.2s linear;
737
+ background-color: #E4E8ED;
738
+ color: #000B1D; }
739
+ .rx-button-toolbar:hover svg,
740
+ .rx-button-topbar:hover svg {
741
+ fill: #000B1D; }
742
+ .rx-button-toolbar:hover .rx-button-icon,
743
+ .rx-button-topbar:hover .rx-button-icon {
744
+ border-color: transparent; }
745
+
746
+ .rx-tooltip {
747
+ position: absolute;
748
+ z-index: 99;
749
+ margin: 0;
750
+ padding: 4px 7px;
751
+ border-radius: 2px;
752
+ line-height: 1;
753
+ font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
754
+ font-size: 12px;
755
+ color: rgba(255, 255, 255, 0.85);
756
+ background-color: #000B1D; }
757
+
758
+ .rx-statusbar {
759
+ font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
760
+ margin: 0;
761
+ padding: 8px 10px;
762
+ position: relative;
763
+ overflow: hidden;
764
+ background-color: #F5F5F6;
765
+ box-sizing: border-box;
766
+ border: none; }
767
+ .rx-statusbar:empty {
768
+ display: none; }
769
+ .rx-statusbar-item {
770
+ float: left;
771
+ font-size: 12px;
772
+ padding: 0 10px;
773
+ margin: 0;
774
+ line-height: 16px;
775
+ color: rgba(0, 11, 29, 0.5);
776
+ border-right: 1px solid rgba(0, 11, 29, 0.1); }
777
+ .rx-statusbar-item:last-child {
778
+ border-right-color: transparent; }
779
+ .rx-statusbar-item a {
780
+ color: rgba(0, 11, 29, 0.5);
781
+ text-decoration: underline; }
782
+ .rx-statusbar-item a:hover {
783
+ color: #FF4F7F;
784
+ text-decoration: underline; }
785
+
786
+ .rx-panel {
787
+ position: absolute;
788
+ min-width: 240px;
789
+ max-height: 300px;
790
+ margin: 0;
791
+ padding: 0;
792
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
793
+ font-size: 14px;
794
+ overflow: auto;
795
+ border-radius: 4px;
796
+ background-color: #000B1D; }
797
+ .rx-panel-item {
798
+ box-sizing: border-box;
799
+ padding: 4px;
800
+ border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
801
+ .rx-panel-item a {
802
+ display: block;
803
+ border-radius: 6px;
804
+ padding: 8px;
805
+ line-height: 1;
806
+ text-decoration: none;
807
+ color: #ffffff;
808
+ background-color: transparent; }
809
+ .rx-panel-item a:hover {
810
+ color: #ffffff;
811
+ background-color: #0058FB; }
812
+
813
+ .rx-editor {
814
+ padding: 24px 32px; }
815
+ .rx-editor, .rx-editor [data-rx-type], .rx-editor a, .rx-editor p, .rx-editor figcaption, .rx-editor td, .rx-editor th {
816
+ outline: none; }
817
+ .rx-editor [data-rx-type=embed], .rx-editor [data-rx-type=embed] a,
818
+ .rx-editor [data-rx-type=image],
819
+ .rx-editor [data-rx-type=image] a {
820
+ cursor: pointer; }
821
+ .rx-editor [data-rx-type=embed] figcaption,
822
+ .rx-editor [data-rx-type=image] figcaption {
823
+ cursor: text; }
824
+ .rx-editor [data-rx-type=embed].rx-block-focus,
825
+ .rx-editor [data-rx-type=image].rx-block-focus,
826
+ .rx-editor [data-rx-type=line].rx-block-focus,
827
+ .rx-editor [data-rx-type=layer].rx-block-focus {
828
+ outline: 3px solid rgba(0, 88, 251, 0.4) !important; }
829
+ .rx-editor [data-rx-type].rx-block-meta-focus {
830
+ outline: 3px solid rgba(0, 88, 251, 0.4) !important; }
831
+ .rx-editor [data-rx-type=text] {
832
+ margin: 0;
833
+ line-height: 1.5; }
834
+ .rx-editor [data-rx-type=text]:empty {
835
+ min-height: 1.5em; }
836
+ .rx-editor [data-rx-type=embed] {
837
+ position: relative; }
838
+ .rx-editor [data-rx-type=embed]:before {
839
+ width: 100%;
840
+ height: 100%;
841
+ content: "";
842
+ position: absolute;
843
+ z-index: 1; }
844
+ .rx-editor [data-rx-type=embed] iframe {
845
+ display: inline-block; }
846
+ .rx-editor [data-rx-type=embed] figcaption {
847
+ position: relative;
848
+ top: 0;
849
+ z-index: 2; }
850
+ .rx-editor [data-placeholder]:empty:before {
851
+ content: attr(data-placeholder);
852
+ display: inline-block;
853
+ color: rgba(0, 11, 29, 0.4);
854
+ font-weight: normal;
855
+ font-style: italic;
856
+ font-size: inherit;
857
+ cursor: text;
858
+ max-height: 20px; }
859
+ .rx-editor [data-placeholder]:empty:focus:before {
860
+ content: ""; }
861
+
862
+ .rx-popup {
863
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
864
+ border-radius: 4px;
865
+ background-color: #ffffff;
866
+ box-shadow: 0 14px 28px rgba(0, 11, 29, 0.25), 0 10px 10px rgba(0, 11, 29, 0.1);
867
+ position: absolute;
868
+ top: 0;
869
+ left: 0;
870
+ z-index: 100;
871
+ margin-bottom: 16px;
872
+ overflow-x: auto; }
873
+ .rx-popup-body {
874
+ box-sizing: border-box;
875
+ padding: 0; }
876
+ .rx-popup-type-grid .rx-popup-items {
877
+ display: flex;
878
+ flex-wrap: wrap;
879
+ padding: 0;
880
+ box-sizing: border-box; }
881
+ .rx-popup-type-grid .rx-popup-item {
882
+ box-sizing: border-box;
883
+ border-radius: 0;
884
+ margin-bottom: -1px;
885
+ width: 32px;
886
+ height: 32px;
887
+ line-height: 32px;
888
+ padding: 0;
889
+ text-align: center;
890
+ justify-content: center;
891
+ align-items: center;
892
+ border: 1px solid #D9DBDD;
893
+ color: #000B1D;
894
+ border-left-color: transparent;
895
+ border-top-color: transparent; }
896
+ .rx-popup-type-grid .rx-popup-item svg {
897
+ width: 16px;
898
+ height: 16px; }
899
+ .rx-popup-header {
900
+ font-size: 14px;
901
+ font-weight: bold;
902
+ color: #000B1D;
903
+ padding: 0 16px;
904
+ position: relative; }
905
+ .rx-popup-header:empty {
906
+ display: none; }
907
+ .rx-popup-header-item {
908
+ display: inline-block;
909
+ color: #000B1D;
910
+ font-weight: bold;
911
+ padding-top: 16px;
912
+ padding-bottom: 16px; }
913
+ .rx-popup-footer {
914
+ overflow: hidden;
915
+ box-sizing: border-box;
916
+ margin-top: 8px;
917
+ padding: 16px;
918
+ padding-bottom: 20px; }
919
+ .rx-popup-footer .rx-form-button {
920
+ margin-right: 4px; }
921
+ .rx-popup-footer:empty {
922
+ display: none; }
923
+ .rx-popup-body form {
924
+ padding-bottom: 16px; }
925
+ .rx-popup-items {
926
+ padding: 8px; }
927
+ .rx-popup-item {
928
+ font-size: 14px;
929
+ border-radius: 4px;
930
+ padding: 10px 8px;
931
+ display: flex;
932
+ line-height: 1;
933
+ align-items: center;
934
+ cursor: pointer;
935
+ position: relative; }
936
+ .rx-popup-item-container {
937
+ width: 92px;
938
+ height: 76px;
939
+ padding: 0;
940
+ display: flex;
941
+ flex-direction: column;
942
+ text-align: center;
943
+ align-items: center;
944
+ justify-content: center;
945
+ vertical-align: middle; }
946
+ .rx-popup-item-container .rx-popup-item-title {
947
+ font-size: 12px;
948
+ color: rgba(0, 11, 29, 0.6); }
949
+ .rx-popup-item-container .rx-popup-item-icon {
950
+ font-size: 16px;
951
+ margin-bottom: 10px;
952
+ margin-right: 0;
953
+ line-height: 1; }
954
+ .rx-popup-item-container .rx-popup-item-icon svg {
955
+ position: relative;
956
+ top: 2px; }
957
+ .rx-popup-item-icon {
958
+ font-size: 16px;
959
+ margin-right: 6px; }
960
+ .rx-popup-item-shortcut {
961
+ font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
962
+ font-size: 11px;
963
+ color: rgba(0, 11, 29, 0.5);
964
+ margin-left: auto;
965
+ padding-top: 1px;
966
+ text-align: right; }
967
+ .rx-popup-item-shortcut b {
968
+ position: relative;
969
+ top: 2px;
970
+ font-weight: normal;
971
+ font-size: 14px; }
972
+ .rx-popup-item-image > img,
973
+ .rx-popup-item-image > svg {
974
+ width: 30px !important;
975
+ height: auto;
976
+ display: inline-block;
977
+ padding: 4px;
978
+ border-radius: 12px;
979
+ background-color: #D9DBDD; }
980
+ .rx-popup-item-trash {
981
+ font-size: 14px;
982
+ margin-left: auto;
983
+ color: rgba(0, 11, 29, 0.7); }
984
+ .rx-popup-item-trash:hover {
985
+ color: #000B1D; }
986
+ .rx-popup-item-hidden {
987
+ display: none; }
988
+ .rx-popup-item:hover {
989
+ background-color: #E4E8ED; }
990
+ .rx-popup-item.active {
991
+ background-color: rgba(0, 88, 251, 0.65);
992
+ color: #ffffff; }
993
+ .rx-popup-item.active span {
994
+ background: none !important;
995
+ color: #ffffff !important; }
996
+ .rx-popup-item-divider-top {
997
+ margin-top: 9px; }
998
+ .rx-popup-item-divider-top:before {
999
+ top: -5px; }
1000
+ .rx-popup-item-divider-bottom {
1001
+ margin-bottom: 9px; }
1002
+ .rx-popup-item-divider-bottom:before {
1003
+ bottom: -5px; }
1004
+ .rx-popup-item-divider-top:before, .rx-popup-item-divider-bottom:before {
1005
+ position: absolute;
1006
+ content: '';
1007
+ width: calc(100% - 8px);
1008
+ height: 1px;
1009
+ left: 4px;
1010
+ background-color: rgba(0, 11, 29, 0.07); }
1011
+ .rx-popup-close {
1012
+ position: absolute;
1013
+ right: 16px;
1014
+ top: 14px;
1015
+ cursor: pointer;
1016
+ display: inline-block;
1017
+ vertical-align: middle;
1018
+ width: 20px;
1019
+ height: 20px;
1020
+ opacity: 0.5; }
1021
+ .rx-popup-close::before, .rx-popup-close::after {
1022
+ content: "";
1023
+ display: block;
1024
+ left: 50%;
1025
+ position: absolute;
1026
+ top: 50%;
1027
+ transform: translate(-50%, -50%) rotate(45deg);
1028
+ background-color: #000B1D; }
1029
+ .rx-popup-close::before {
1030
+ height: 1px;
1031
+ width: 75%; }
1032
+ .rx-popup-close::after {
1033
+ height: 75%;
1034
+ width: 1px; }
1035
+ .rx-popup-close:hover {
1036
+ opacity: 1; }
1037
+
1038
+ .rx-popup.has-footer form,
1039
+ .rx-popup.has-form .rx-popup-header-item,
1040
+ .rx-popup.has-items .rx-popup-header-item {
1041
+ padding-bottom: 0; }
1042
+
1043
+ .rx-popup[dir=rtl] .rx-popup-close {
1044
+ right: auto;
1045
+ left: 20px; }
1046
+
1047
+ .rx-form-item {
1048
+ padding: 16px 16px 0 16px; }
1049
+ .rx-form-item:empty {
1050
+ display: none; }
1051
+
1052
+ .rx-form-image img,
1053
+ .rx-form-image svg {
1054
+ max-width: 100%; }
1055
+
1056
+ .rx-form-label {
1057
+ box-sizing: border-box;
1058
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
1059
+ font-size: 14px;
1060
+ font-weight: bold;
1061
+ display: block;
1062
+ padding: 0;
1063
+ margin: 0;
1064
+ padding-bottom: 6px;
1065
+ color: rgba(0, 11, 29, 0.65); }
1066
+
1067
+ .rx-form-container-flex {
1068
+ display: flex; }
1069
+ .rx-form-container-flex .rx-form-input,
1070
+ .rx-form-container-flex .rx-form-select {
1071
+ flex: auto; }
1072
+ .rx-form-container-flex .rx-form-button {
1073
+ margin-left: 4px; }
1074
+
1075
+ .rx-form-button-push-right {
1076
+ float: right; }
1077
+
1078
+ .rx-form-button {
1079
+ box-sizing: border-box;
1080
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
1081
+ font-size: 14px;
1082
+ font-weight: bold;
1083
+ outline: none;
1084
+ border-radius: 4px;
1085
+ padding: 8px 24px;
1086
+ min-height: 38px;
1087
+ cursor: pointer;
1088
+ line-height: 1.25;
1089
+ height: auto;
1090
+ background-color: #ffffff;
1091
+ border: 1px solid #D9DBDD;
1092
+ color: rgba(0, 11, 29, 0.9); }
1093
+ .rx-form-button:hover {
1094
+ background-color: #F5F5F6; }
1095
+
1096
+ .rx-form-button-primary {
1097
+ background-color: #000B1D;
1098
+ border: 1px solid #000B1D;
1099
+ color: #ffffff; }
1100
+ .rx-form-button-primary:hover {
1101
+ background-color: #262F3F; }
1102
+
1103
+ .rx-form-button-danger {
1104
+ background-color: #ffffff;
1105
+ border: 1px solid #BF3D66;
1106
+ color: #BF3D66; }
1107
+ .rx-form-button-danger:hover {
1108
+ background-color: #F5F5F6; }
1109
+
1110
+ .rx-form-button-fullwidth {
1111
+ display: block;
1112
+ width: 100%; }
1113
+
1114
+ .rx-form-input,
1115
+ .rx-form-select,
1116
+ .rx-form-textarea {
1117
+ box-sizing: border-box;
1118
+ display: block;
1119
+ width: 100%;
1120
+ vertical-align: middle;
1121
+ font-weight: normal;
1122
+ padding: 8px;
1123
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
1124
+ font-size: 16px;
1125
+ outline: none;
1126
+ border-radius: 4px;
1127
+ box-shadow: none;
1128
+ line-height: 1.3;
1129
+ color: #000B1D;
1130
+ background-color: #F5F5F6;
1131
+ border: 1px solid #D9DBDD; }
1132
+ .rx-form-input:focus,
1133
+ .rx-form-select:focus,
1134
+ .rx-form-textarea:focus {
1135
+ border-color: rgba(0, 88, 251, 0.5);
1136
+ box-shadow: 0 1px 2px rgba(0, 11, 29, 0.13) inset, 0 0 2px rgba(0, 88, 251, 0.4); }
1137
+
1138
+ .rx-form-textarea {
1139
+ resize: vertical;
1140
+ line-height: 1.5; }
1141
+
1142
+ .rx-form-select {
1143
+ font-size: 14px;
1144
+ cursor: pointer;
1145
+ -webkit-appearance: none;
1146
+ background-image: url('data:image/svg+xml;utf8,<svg height="10" viewBox="0 0 9 10" width="9" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(0, 0, 0, .6)" d="m3.27162899.66658308.8-.70211699 4 3.51058495-.8.70211699-3.2-2.80846796-3.2 2.80846796-.8-.70211699zm0 8.59576602-3.2-2.80846795.8-.70211699 3.2 2.80846796 3.2-2.80846796.8.70211699-4 3.51058494z" /></svg>');
1147
+ background-repeat: no-repeat;
1148
+ background-position: right 0.65em center;
1149
+ padding-right: 28px;
1150
+ min-height: 35px; }
1151
+
1152
+ .rx-form-checkbox {
1153
+ box-sizing: border-box;
1154
+ vertical-align: middle;
1155
+ position: relative;
1156
+ bottom: -0.1em;
1157
+ margin-top: 0 !important;
1158
+ margin-right: 4px !important;
1159
+ margin-left: 0 !important;
1160
+ font-size: 16px; }
1161
+
1162
+ .rx-popup[dir=rtl] .rx-form-checkbox {
1163
+ margin-right: 0 !important;
1164
+ margin-left: 4px !important; }
1165
+
1166
+ .rx-form-checkbox-item span {
1167
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
1168
+ font-size: 14px;
1169
+ font-weight: normal;
1170
+ color: #000B1D; }
1171
+
1172
+ .rx-form-segment {
1173
+ display: flex;
1174
+ background-color: #F0F1F1;
1175
+ border-radius: 4px;
1176
+ padding: 2px; }
1177
+
1178
+ .rx-form-segment-item {
1179
+ border: 1px solid transparent;
1180
+ font-size: 16px;
1181
+ padding: 8px 5px;
1182
+ margin: 0 1px;
1183
+ cursor: pointer;
1184
+ flex: auto;
1185
+ text-align: center;
1186
+ border-radius: 4px;
1187
+ color: rgba(0, 11, 29, 0.6); }
1188
+ .rx-form-segment-item:hover {
1189
+ background-color: #ffffff;
1190
+ color: #000B1D; }
1191
+ .rx-form-segment-item.active {
1192
+ cursor: default;
1193
+ background-color: #ffffff;
1194
+ box-shadow: 0 1px 3px rgba(0, 11, 29, 0.12), 0 1px 2px rgba(0, 11, 29, 0.2);
1195
+ color: #000B1D; }
1196
+
1197
+ .rx-form-upload-box {
1198
+ flex: 1;
1199
+ display: flex;
1200
+ flex-direction: column;
1201
+ align-items: center;
1202
+ justify-content: center;
1203
+ margin: 0;
1204
+ margin-bottom: 10px;
1205
+ border: 2px dashed rgba(0, 11, 29, 0.12);
1206
+ background-color: #F5F5F6;
1207
+ border-radius: 4px;
1208
+ min-width: 160px;
1209
+ height: 160px;
1210
+ cursor: pointer;
1211
+ position: relative; }
1212
+ .rx-form-upload-box img {
1213
+ position: relative;
1214
+ z-index: 2;
1215
+ object-fit: cover;
1216
+ height: 100%;
1217
+ width: 100%; }
1218
+ .rx-form-upload-box .rx-upload-remove {
1219
+ position: absolute;
1220
+ z-index: 3;
1221
+ top: -6px;
1222
+ right: -10px;
1223
+ background-color: #FF4F7F;
1224
+ color: #ffffff;
1225
+ opacity: 1;
1226
+ width: 20px;
1227
+ height: 20px;
1228
+ text-align: center;
1229
+ border-radius: 10px;
1230
+ font-size: 14px;
1231
+ line-height: 20px; }
1232
+ .rx-form-upload-box .rx-upload-remove:after {
1233
+ content: '\00d7'; }
1234
+ .rx-form-upload-box .rx-upload-remove:hover {
1235
+ background-color: #000B1D; }
1236
+ .rx-form-upload-box:after {
1237
+ content: '';
1238
+ position: absolute;
1239
+ top: 0;
1240
+ bottom: 0;
1241
+ left: 0;
1242
+ right: 0;
1243
+ width: 100%;
1244
+ height: 100%; }
1245
+ .rx-form-upload-box.rx-form-upload-hover {
1246
+ border-color: rgba(0, 88, 251, 0.35);
1247
+ background-color: rgba(0, 88, 251, 0.05); }
1248
+ .rx-form-upload-box.rx-form-upload-error {
1249
+ border-color: rgba(255, 79, 127, 0.35);
1250
+ background-color: rgba(255, 79, 127, 0.05); }
1251
+
1252
+ .rx-form-upload-cover-off img {
1253
+ object-fit: initial;
1254
+ height: auto;
1255
+ width: auto; }
1256
+
1257
+ .rx-form-upload-placeholder {
1258
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
1259
+ color: rgba(0, 11, 29, 0.5);
1260
+ font-size: 12px;
1261
+ line-height: 1.35;
1262
+ padding: 0 8px;
1263
+ text-align: center; }
1264
+
1265
+ .rx-popup-addbar .rx-popup-items {
1266
+ display: flex;
1267
+ flex-wrap: wrap;
1268
+ padding: 4px; }
1269
+
1270
+ .rx-popup-image .rx-popup-body {
1271
+ padding: 16px;
1272
+ padding-top: 0; }
1273
+
1274
+ .rx-popup-image-section-or {
1275
+ margin: 16px 0;
1276
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
1277
+ text-transform: uppercase;
1278
+ font-weight: bold;
1279
+ text-align: center;
1280
+ font-size: 12px;
1281
+ color: #000B1D; }
1282
+
1283
+ .rx-popup-images-box {
1284
+ display: flex;
1285
+ flex-wrap: wrap;
1286
+ margin-top: 12px; }
1287
+ .rx-popup-images-box img {
1288
+ max-width: 100px;
1289
+ max-height: 100px;
1290
+ cursor: pointer;
1291
+ margin-bottom: 8px;
1292
+ margin-right: 8px; }
1293
+ .rx-popup-images-box img:hover {
1294
+ outline: 3px solid; }
1295
+
1296
+ .rx-form-item-edit-image-box {
1297
+ padding: 20px;
1298
+ padding-bottom: 0; }
1299
+
1300
+ .rx-form-item-image {
1301
+ margin-right: 8px; }
1302
+ .rx-form-item-image img {
1303
+ max-height: 160px;
1304
+ width: auto; }
1305
+
1306
+ .rx-popup-shortcut-item {
1307
+ border-radius: 0;
1308
+ border-bottom: 1px solid rgba(0, 11, 29, 0.08);
1309
+ cursor: text; }
1310
+ .rx-popup-shortcut-item:hover {
1311
+ background-color: transparent; }
1312
+ .rx-popup-shortcut-item:last-child {
1313
+ border-bottom-color: transparent; }
1314
+
1315
+ .rx-popup-shortcut-title {
1316
+ font-size: 14px;
1317
+ line-height: 20px;
1318
+ color: #000B1D;
1319
+ margin-right: 16px; }
1320
+
1321
+ .rx-popup-shortcut-kbd {
1322
+ white-space: nowrap;
1323
+ line-height: 20px;
1324
+ font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
1325
+ font-size: 12px;
1326
+ padding: 0;
1327
+ display: inline-block;
1328
+ color: rgba(0, 11, 29, 0.65);
1329
+ margin-left: auto;
1330
+ text-align: right; }
1331
+ .rx-popup-shortcut-kbd span {
1332
+ display: inline-block;
1333
+ border-radius: 4px;
1334
+ padding-left: 3px;
1335
+ padding-right: 3px;
1336
+ color: rgba(0, 11, 29, 0.85);
1337
+ background-color: #F5F5F6; }
1338
+ .rx-popup-shortcut-kbd b {
1339
+ font-weight: normal;
1340
+ font-size: 18px;
1341
+ display: inline-block;
1342
+ line-height: 12px;
1343
+ position: relative;
1344
+ top: 3px; }