@inseefr/lunatic 3.0.0-rc.6 → 3.0.0-rc.9

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 (125) hide show
  1. package/lib/components/CheckboxGroup/CheckboxGroup.js +3 -2
  2. package/lib/components/CheckboxGroup/CustomCheckboxGroup.js +2 -3
  3. package/lib/components/CheckboxGroup/CustomCheckboxGroup.spec.js +3 -0
  4. package/lib/components/CheckboxOne/CheckboxOne.js +0 -1
  5. package/lib/components/Datepicker/Datepicker.js +0 -1
  6. package/lib/components/Dropdown/Dropdown.js +0 -17
  7. package/lib/components/Duration/Duration.js +0 -1
  8. package/lib/components/Input/Input.js +0 -1
  9. package/lib/components/InputNumber/InputNumber.js +0 -1
  10. package/lib/components/LunaticComponents.js +19 -15
  11. package/lib/components/RosterForLoop/RosterForLoop.js +0 -1
  12. package/lib/components/Roundabout/Roundabout.js +0 -1
  13. package/lib/components/Sequence/Sequence.js +0 -1
  14. package/lib/components/Subsequence/Subsequence.spec.js +1 -1
  15. package/lib/components/Suggester/CustomSuggester.js +7 -4
  16. package/lib/components/Suggester/Suggester.js +67 -4
  17. package/lib/components/Suggester/SuggesterType.js +5 -0
  18. package/lib/components/Textarea/Textarea.js +1 -2
  19. package/lib/components/shared/Button/Button.js +0 -1
  20. package/lib/components/shared/Button/IconButton.js +0 -1
  21. package/lib/components/shared/Checkbox/CheckboxOption.js +0 -1
  22. package/lib/components/shared/Combobox/Combobox.js +3 -2
  23. package/lib/components/shared/ComponentErrors/ComponentErrors.js +0 -1
  24. package/lib/components/shared/Declarations/Declarations.js +3 -4
  25. package/lib/components/shared/Declarations/Declarations.spec.js +5 -5
  26. package/lib/components/shared/Fieldset/Fieldset.js +0 -1
  27. package/lib/components/shared/Icons/lunatic-icon.js +0 -1
  28. package/lib/components/shared/Label/Label.js +0 -1
  29. package/lib/components/shared/Missing/Missing.js +0 -1
  30. package/lib/components/shared/ModalControls/ModalControls.js +0 -1
  31. package/lib/components/shared/Radio/RadioGroup.js +0 -1
  32. package/lib/components/shared/Table/Table.js +0 -1
  33. package/lib/components/shared/VariableStatus/VariableStatus.js +0 -1
  34. package/lib/components/shared/suggester-loader-widget/dragger/dragger.js +0 -1
  35. package/lib/components/shared/suggester-loader-widget/widget.js +0 -1
  36. package/lib/css/components/Button.scss +24 -0
  37. package/lib/css/components/CheckboxGroup.scss +13 -0
  38. package/lib/css/components/CheckboxOne.scss +19 -0
  39. package/lib/css/components/CheckboxOption.scss +19 -0
  40. package/lib/css/components/Combobox.scss +206 -0
  41. package/lib/css/components/ComponentErrors.scss +5 -0
  42. package/lib/css/components/Datepicker.scss +19 -0
  43. package/lib/css/components/Declarations.scss +42 -0
  44. package/lib/css/components/Dragger.scss +8 -0
  45. package/lib/css/components/Dropdown.scss +38 -0
  46. package/lib/css/components/Duration.scss +9 -0
  47. package/lib/css/components/Fieldset.scss +5 -0
  48. package/lib/css/components/IconButton.scss +38 -0
  49. package/lib/css/components/Input.scss +42 -0
  50. package/lib/css/components/InputNumber.scss +11 -0
  51. package/lib/css/components/Label.scss +6 -0
  52. package/lib/css/components/Missing.scss +27 -0
  53. package/lib/css/components/ModalControls.scss +48 -0
  54. package/lib/css/components/RadioGroup.scss +21 -0
  55. package/lib/css/components/RosterForLoop.scss +39 -0
  56. package/lib/css/components/Roundabout.scss +13 -0
  57. package/lib/css/components/Sequence.scss +10 -0
  58. package/lib/css/components/Suggester.scss +170 -0
  59. package/lib/css/components/SuggesterWidget.scss +176 -0
  60. package/lib/css/components/Table.scss +27 -0
  61. package/lib/css/components/Textarea.scss +8 -0
  62. package/lib/css/components/VariableStatus.scss +36 -0
  63. package/lib/css/main.scss +181 -0
  64. package/lib/hooks/useSuggesterInfo.js +14 -12
  65. package/lib/main.css +1063 -0
  66. package/lib/main.css.map +1 -0
  67. package/lib/src/components/CheckboxGroup/CheckboxGroup.d.ts +1 -1
  68. package/lib/src/components/CheckboxOne/CheckboxOne.d.ts +0 -1
  69. package/lib/src/components/Datepicker/Datepicker.d.ts +0 -1
  70. package/lib/src/components/Dropdown/Dropdown.d.ts +0 -1
  71. package/lib/src/components/Duration/Duration.d.ts +0 -1
  72. package/lib/src/components/Input/Input.d.ts +0 -1
  73. package/lib/src/components/InputNumber/InputNumber.d.ts +0 -1
  74. package/lib/src/components/RosterForLoop/RosterForLoop.d.ts +0 -1
  75. package/lib/src/components/Roundabout/Roundabout.d.ts +0 -1
  76. package/lib/src/components/Sequence/Sequence.d.ts +1 -2
  77. package/lib/src/components/Subsequence/Subsequence.d.ts +1 -1
  78. package/lib/src/components/Suggester/CustomSuggester.d.ts +7 -3
  79. package/lib/src/components/Suggester/Suggester.d.ts +1 -2
  80. package/lib/src/components/Suggester/SuggesterType.d.ts +6 -0
  81. package/lib/src/components/Suggester/helpers.d.ts +2 -2
  82. package/lib/src/components/Textarea/Textarea.d.ts +0 -1
  83. package/lib/src/components/library.d.ts +3 -3
  84. package/lib/src/components/shared/Button/Button.d.ts +0 -1
  85. package/lib/src/components/shared/Button/IconButton.d.ts +0 -1
  86. package/lib/src/components/shared/Checkbox/CheckboxOption.d.ts +0 -1
  87. package/lib/src/components/shared/Combobox/Combobox.d.ts +1 -1
  88. package/lib/src/components/shared/ComponentErrors/ComponentErrors.d.ts +0 -1
  89. package/lib/src/components/shared/Declarations/Declarations.d.ts +2 -3
  90. package/lib/src/components/shared/Fieldset/Fieldset.d.ts +0 -1
  91. package/lib/src/components/shared/HOC/slottableComponent.d.ts +4 -0
  92. package/lib/src/components/shared/Icons/lunatic-icon.d.ts +0 -1
  93. package/lib/src/components/shared/Label/Label.d.ts +0 -1
  94. package/lib/src/components/shared/Missing/Missing.d.ts +0 -1
  95. package/lib/src/components/shared/ModalControls/ModalControls.d.ts +0 -1
  96. package/lib/src/components/shared/Radio/RadioGroup.d.ts +0 -1
  97. package/lib/src/components/shared/Table/Table.d.ts +0 -1
  98. package/lib/src/components/shared/VariableStatus/VariableStatus.d.ts +0 -1
  99. package/lib/src/components/shared/suggester-loader-widget/dragger/dragger.d.ts +0 -1
  100. package/lib/src/components/shared/suggester-loader-widget/widget.d.ts +0 -1
  101. package/lib/src/components/type.d.ts +7 -2
  102. package/lib/src/hooks/use-track-changes.d.ts +9 -1
  103. package/lib/src/hooks/useSuggesterInfo.d.ts +1 -1
  104. package/lib/src/use-lunatic/commons/fill-components/fill-component-required.d.ts +106 -44
  105. package/lib/src/use-lunatic/commons/fill-components/fill-from-state.d.ts +87 -21
  106. package/lib/src/use-lunatic/commons/fill-components/fill-iterations.d.ts +47 -36
  107. package/lib/src/use-lunatic/commons/fill-components/fill-specific-expression.d.ts +166 -46
  108. package/lib/src/use-lunatic/commons/use-components-from-state.d.ts +1 -1
  109. package/lib/src/use-lunatic/replace-component-sequence.d.ts +21 -3
  110. package/lib/src/use-lunatic/type-source.d.ts +55 -42
  111. package/lib/src/use-lunatic/type.d.ts +4 -4
  112. package/lib/src/use-lunatic/use-lunatic.d.ts +57 -15
  113. package/lib/src/utils/variables.d.ts +10 -2
  114. package/lib/stories/loop/source-roster.json +2 -2
  115. package/lib/stories/suggester/fakeReferentiel.json +12 -0
  116. package/lib/stories/suggester/source-option-responses.json +145 -0
  117. package/lib/stories/suggester/suggester.stories.js +46 -1
  118. package/lib/use-lunatic/use-lunatic.test.js +8 -7
  119. package/package.json +2 -2
  120. package/lib/components/Dropdown/DropdownWritable.js +0 -58
  121. package/lib/components/Dropdown/renderer/WritableLabelRenderer.js +0 -38
  122. package/lib/components/Dropdown/renderer/WritableOptionRenderer.js +0 -140
  123. package/lib/src/components/Dropdown/DropdownWritable.d.ts +0 -17
  124. package/lib/src/components/Dropdown/renderer/WritableLabelRenderer.d.ts +0 -8
  125. package/lib/src/components/Dropdown/renderer/WritableOptionRenderer.d.ts +0 -8
package/lib/main.css ADDED
@@ -0,0 +1,1063 @@
1
+ @charset "UTF-8";
2
+ * {
3
+ box-sizing: border-box;
4
+ --color-primary-dark: #2a5885;
5
+ --color-primary-light: #5181b8;
6
+ --color-primary-main: #4a73a4;
7
+ --color-primary-contrast-text: #ffffff;
8
+ --color-secondary-dark: #14202d;
9
+ --color-secondary-light: #f7f8fa;
10
+ --color-secondary-main: #1a293b;
11
+ --color-secondary-contrast-text: #ffffff;
12
+ --color-very-light: #dbe4ef;
13
+ --color-very-very-light: #e6eaee;
14
+ --color-current-item: #0d823e;
15
+ --color-error: #f50c0c;
16
+ --color-disabled: rgb(235, 235, 228);
17
+ --color-prefix: cornflowerblue;
18
+ --color-dropdown-active: rgba(0, 0, 0, 0.04);
19
+ --color-dropdown-selected: rgba(0, 0, 0, 0.08);
20
+ --dropdown-transition-time: 0.5s;
21
+ }
22
+
23
+ .lunatic-component {
24
+ /* refactor proposition */
25
+ /******/
26
+ }
27
+ .lunatic-component .mandatory:after {
28
+ content: " *";
29
+ color: red;
30
+ }
31
+ .lunatic-component .horizontal-options {
32
+ display: inline-block;
33
+ margin-right: 2em;
34
+ }
35
+ .lunatic-component label,
36
+ .lunatic-component legend,
37
+ .lunatic-component .subsequence-lunatic,
38
+ .lunatic-component .lunatic-dropdown-label,
39
+ .lunatic-component .lunatic-dropdown-label focused {
40
+ color: var(--color-primary-dark);
41
+ background-color: var(--color-primary-contrast-text);
42
+ border: 0;
43
+ padding: 0;
44
+ font-size: 0.75rem;
45
+ font-family: "Roboto", "Helvetica", "Arial", sans-serif;
46
+ font-weight: bold;
47
+ margin-bottom: 0.375rem;
48
+ }
49
+ .lunatic-component .lunatic-component-container {
50
+ display: flex;
51
+ }
52
+ .lunatic-component .lunatic-component-container.label-left-ex {
53
+ flex-direction: row;
54
+ align-items: baseline;
55
+ }
56
+ .lunatic-component .lunatic-component-container.label-left-ex .lunatic-label {
57
+ margin-right: 1em;
58
+ }
59
+ .lunatic-component .lunatic-component-container.label-right-ex {
60
+ flex-direction: row-reverse;
61
+ align-items: baseline;
62
+ }
63
+ .lunatic-component .lunatic-component-container.label-right-ex .lunatic-label {
64
+ margin-left: 1em;
65
+ }
66
+ .lunatic-component .lunatic-component-container.label-top-ex {
67
+ flex-direction: column;
68
+ }
69
+ .lunatic-component .lunatic-component-container.label-bottom-ex {
70
+ flex-direction: column-reverse;
71
+ }
72
+ .lunatic-component .label-top {
73
+ display: flex;
74
+ flex-direction: column;
75
+ }
76
+ .lunatic-component .label-bottom {
77
+ display: flex;
78
+ flex-direction: column-reverse;
79
+ }
80
+ .lunatic-component .label-right {
81
+ justify-content: flex-end;
82
+ display: flex;
83
+ flex-direction: row-reverse;
84
+ align-items: baseline;
85
+ }
86
+ .lunatic-component .label-right :first-child {
87
+ margin-right: 1rem;
88
+ }
89
+ .lunatic-component .label-left {
90
+ display: flex;
91
+ flex-direction: row;
92
+ align-items: baseline;
93
+ }
94
+ .lunatic-component .label-left :first-child {
95
+ margin-right: 1rem;
96
+ }
97
+ .lunatic-component .field-container {
98
+ display: flex;
99
+ }
100
+ .lunatic-component .modality-label p {
101
+ display: inline;
102
+ }
103
+ .lunatic-component .field {
104
+ width: 100%;
105
+ position: relative;
106
+ }
107
+ .lunatic-component .link-md {
108
+ border-bottom: dashed 0.1em var(--color-primary-dark);
109
+ }
110
+ .lunatic-component .link-md:hover {
111
+ cursor: help;
112
+ color: var(--color-primary-contrast-text);
113
+ background-color: var(--color-primary-dark);
114
+ }
115
+ .lunatic-component .tooltip-content {
116
+ min-width: 15em;
117
+ max-width: 25em;
118
+ background: var(--color-primary-dark);
119
+ color: var(--color-primary-contrast-text);
120
+ padding: 0.5em;
121
+ border-radius: 6px;
122
+ font-size: 1em;
123
+ }
124
+ .lunatic-component .tooltip-content.place-bottom::before {
125
+ border-bottom: 10px solid var(--color-primary-dark);
126
+ }
127
+ .lunatic-component .tooltip-content.place-bottom::after {
128
+ content: none;
129
+ }
130
+
131
+ .button-lunatic {
132
+ min-width: 20%;
133
+ color: white;
134
+ border-color: var(--color-primary-dark);
135
+ background-color: var(--color-primary-dark);
136
+ font-size: 1.2em;
137
+ font-weight: bold;
138
+ padding: 0.4em;
139
+ }
140
+ .button-lunatic:hover, .button-lunatic:focus:hover {
141
+ color: var(--color-primary-dark);
142
+ background-color: white;
143
+ border-color: var(--color-primary-dark);
144
+ }
145
+ .button-lunatic:focus {
146
+ outline: none;
147
+ background-color: var(--color-primary-light);
148
+ border-color: var(--color-primary-light);
149
+ }
150
+ .button-lunatic:disabled {
151
+ background: var(--color-disabled);
152
+ color: var(--color-primary-dark);
153
+ }
154
+
155
+ .lunatic-checkbox-group legend .label-description {
156
+ font-weight: lighter;
157
+ display: block;
158
+ }
159
+ .lunatic-checkbox-group .lunatic-checkbox-group-option {
160
+ display: flex;
161
+ font-size: 13px;
162
+ }
163
+
164
+ .lunatic-checkbox-one legend .label-description {
165
+ font-weight: lighter;
166
+ }
167
+ .lunatic-checkbox-one .lunatic-input-radio {
168
+ display: flex;
169
+ }
170
+ .lunatic-checkbox-one .lunatic-input-radio label {
171
+ display: flex;
172
+ gap: 0.5em;
173
+ align-items: center;
174
+ }
175
+ .lunatic-checkbox-one .lunatic-input-radio label .label-description {
176
+ font-weight: lighter;
177
+ }
178
+
179
+ .checkbox-modality .lunatic-input-checkbox {
180
+ display: flex;
181
+ }
182
+ .checkbox-modality .lunatic-input-checkbox .label-description {
183
+ font-weight: lighter;
184
+ }
185
+ .checkbox-modality .lunatic-input-checkbox .lunatic-label {
186
+ font-weight: normal;
187
+ display: flex;
188
+ gap: 0.5em;
189
+ align-items: center;
190
+ }
191
+
192
+ .lunatic-checkbox-label {
193
+ gap: 0.5em;
194
+ align-items: center;
195
+ }
196
+
197
+ .lunatic-combo-box-container {
198
+ position: relative;
199
+ width: 100%;
200
+ }
201
+ .lunatic-combo-box-container.default-style {
202
+ --color-combo-box-selected: Cornsilk;
203
+ --color-primary-dark: DarkGreen;
204
+ --color-primary-main: FloralWhite;
205
+ --color-combo-box-background: snow;
206
+ --color-disabled: Gainsboro;
207
+ --color-primary-light: GreenYellow;
208
+ margin-bottom: 10px;
209
+ }
210
+ .lunatic-combo-box-container.default-style .lunatic-combo-box {
211
+ min-height: 30px;
212
+ min-width: 260px;
213
+ width: 100%;
214
+ }
215
+ .lunatic-combo-box-container.default-style .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-selection {
216
+ border-radius: 5px;
217
+ border: 2px solid var(--color-primary-dark);
218
+ background-color: var(--color-combo-box-background);
219
+ }
220
+ .lunatic-combo-box-container.default-style .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-selection:hover {
221
+ border-color: var(--color-primary-main);
222
+ }
223
+ .lunatic-combo-box-container.default-style .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-selection .lunatic-combo-box-input {
224
+ height: 34px;
225
+ line-height: 34px;
226
+ font-size: 15px;
227
+ padding-left: 4px;
228
+ font-family: "Roboto", "Helvetica", "Arial", sans-serif;
229
+ }
230
+ .lunatic-combo-box-container.default-style .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-selection .lunatic-combo-box-input::placeholder {
231
+ color: gray;
232
+ font-family: "Roboto", "Helvetica", "Arial", sans-serif;
233
+ font-size: 15px;
234
+ line-height: 34px;
235
+ vertical-align: middle;
236
+ font-weight: normal;
237
+ }
238
+ .lunatic-combo-box-container.default-style .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-selection .lunatic-combo-box-selected {
239
+ height: 42px;
240
+ line-height: 34px;
241
+ background-color: var(--color-combo-box-background);
242
+ border-radius: 5px;
243
+ padding-left: 4px;
244
+ font-family: "Roboto", "Helvetica", "Arial", sans-serif;
245
+ outline: none;
246
+ overflow-y: hidden;
247
+ display: block;
248
+ color: gray;
249
+ font-family: "Roboto", "Helvetica", "Arial", sans-serif;
250
+ font-size: 15px;
251
+ line-height: 34px;
252
+ vertical-align: middle;
253
+ font-weight: normal;
254
+ }
255
+ .lunatic-combo-box-container.default-style .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-selection .lunatic-combo-box-selected .selection {
256
+ display: inline-block;
257
+ line-height: 34px;
258
+ font-size: 15px;
259
+ }
260
+ .lunatic-combo-box-container.default-style .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-selection .lunatic-combo-box-selected.disabled {
261
+ background-color: var(--color-disabled);
262
+ }
263
+ .lunatic-combo-box-container.default-style .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-panel {
264
+ font-family: "Roboto", "Helvetica", "Arial", sans-serif;
265
+ height: 0;
266
+ opacity: 0;
267
+ background-color: var(--color-combo-box-background);
268
+ transition: opacity 267ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 178ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
269
+ }
270
+ .lunatic-combo-box-container.default-style .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-panel.expanded {
271
+ border: solid 1px var(--color-primary-light);
272
+ opacity: 1;
273
+ min-height: 30px;
274
+ height: max-content;
275
+ box-shadow: 0 2px 2px grey;
276
+ border-radius: 4px;
277
+ }
278
+ .lunatic-combo-box-container.default-style .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-panel .lunatic-combo-box-option {
279
+ text-overflow: ellipsis;
280
+ white-space: nowrap;
281
+ overflow: hidden;
282
+ margin-bottom: 0.1em;
283
+ line-height: 2rem;
284
+ display: block;
285
+ }
286
+ .lunatic-combo-box-container.default-style .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-panel .lunatic-combo-box-option.selected {
287
+ color: var(--color-primary-dark);
288
+ background-color: var(--color-combo-box-selected);
289
+ }
290
+ .lunatic-combo-box-container.default-style .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-panel .lunatic-combo-box-option:hover {
291
+ background-color: var(--color-primary-main);
292
+ color: var(--color-combo-box-background);
293
+ }
294
+ .lunatic-combo-box-container .lunatic-combo-box-fab {
295
+ position: absolute;
296
+ right: 4px;
297
+ top: 8px;
298
+ z-index: 0;
299
+ }
300
+ .lunatic-combo-box-container .lunatic-combo-box-fab.focused {
301
+ z-index: 1;
302
+ }
303
+ .lunatic-combo-box-container .lunatic-combo-box-fab .lunatic-icon svg {
304
+ fill: white;
305
+ width: 16px;
306
+ height: 16px;
307
+ margin: auto;
308
+ }
309
+ .lunatic-combo-box-container .lunatic-combo-box {
310
+ position: relative;
311
+ z-index: 0;
312
+ }
313
+ .lunatic-combo-box-container .lunatic-combo-box:focus {
314
+ outline: none;
315
+ }
316
+ .lunatic-combo-box-container .lunatic-combo-box.focused {
317
+ z-index: 1;
318
+ }
319
+ .lunatic-combo-box-container .lunatic-combo-box .lunatic-combo-box-content {
320
+ position: absolute;
321
+ width: 100%;
322
+ }
323
+ .lunatic-combo-box-container .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-selection {
324
+ position: relative;
325
+ }
326
+ .lunatic-combo-box-container .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-selection .lunatic-combo-box-input {
327
+ border: none;
328
+ margin: 0;
329
+ padding: 0;
330
+ background-color: transparent;
331
+ width: 100%;
332
+ }
333
+ .lunatic-combo-box-container .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-selection .lunatic-combo-box-input:focus {
334
+ outline: none;
335
+ }
336
+ .lunatic-combo-box-container .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-selection .lunatic-combo-box-selected {
337
+ top: 0;
338
+ white-space: nowrap;
339
+ overflow-x: hidden;
340
+ width: 100%;
341
+ display: none;
342
+ }
343
+ .lunatic-combo-box-container .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-selection .lunatic-combo-box-selected.displayed {
344
+ display: block;
345
+ }
346
+ .lunatic-combo-box-container .lunatic-combo-box .lunatic-combo-box-content ul,
347
+ .lunatic-combo-box-container .lunatic-combo-box .lunatic-combo-box-content li,
348
+ .lunatic-combo-box-container .lunatic-combo-box .lunatic-combo-box-content div,
349
+ .lunatic-combo-box-container .lunatic-combo-box .lunatic-combo-box-content span {
350
+ margin: 0;
351
+ padding: 0;
352
+ border: none;
353
+ list-style: none;
354
+ }
355
+ .lunatic-combo-box-container .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-panel:focus {
356
+ outline: none;
357
+ }
358
+ .lunatic-combo-box-container .lunatic-combo-box .lunatic-combo-box-content .lunatic-combo-box-panel .lunatic-combo-box-option {
359
+ white-space: nowrap;
360
+ -moz-user-select: -moz-none;
361
+ -khtml-user-select: none;
362
+ -webkit-user-select: none;
363
+ }
364
+
365
+ .lunatic-errors .lunatic-error {
366
+ color: red;
367
+ }
368
+
369
+ .lunaticDatepickerFields {
370
+ display: flex;
371
+ align-items: flex-end;
372
+ gap: 1rem;
373
+ }
374
+
375
+ .lunaticDatepickerField input {
376
+ width: 3.5em;
377
+ }
378
+
379
+ .lunaticDatepickerFieldLarge input {
380
+ width: 4.5em;
381
+ }
382
+
383
+ .lunaticDatepickerHint {
384
+ display: block;
385
+ font-weight: 400;
386
+ font-size: 0.9em;
387
+ }
388
+
389
+ .lunatic-component .lunatic-declarations {
390
+ margin-bottom: 0.4rem;
391
+ }
392
+ .lunatic-component .declaration-instruction {
393
+ font-style: italic;
394
+ font-size: 80%;
395
+ }
396
+ .lunatic-component .declaration-statement {
397
+ font-style: italic;
398
+ font-size: 80%;
399
+ color: blue;
400
+ }
401
+ .lunatic-component .declaration-help {
402
+ font-style: italic;
403
+ font-size: 80%;
404
+ color: green;
405
+ }
406
+ .lunatic-component .CODECARD {
407
+ font-style: bold;
408
+ font-size: 80%;
409
+ color: grey;
410
+ border: solid 1px grey;
411
+ width: fit-content;
412
+ padding: 1em;
413
+ }
414
+ .lunatic-component .CODECARD:before {
415
+ content: "→ ";
416
+ }
417
+ .lunatic-component .declaration-message_filter {
418
+ font-size: 100%;
419
+ color: rgb(73, 66, 66);
420
+ }
421
+ .lunatic-component .declaration-message_filter:before {
422
+ content: "→ ";
423
+ }
424
+
425
+ .lunatic-component .lunatic-dropdown .lunatic-dropdown-option {
426
+ text-overflow: ellipsis;
427
+ white-space: nowrap;
428
+ overflow: hidden;
429
+ margin-bottom: 0.1em;
430
+ line-height: 2rem;
431
+ display: block;
432
+ }
433
+ .lunatic-component .lunatic-dropdown .lunatic-dropdown-option.selected {
434
+ color: var(--color-primary-dark);
435
+ background-color: goldenrod;
436
+ }
437
+ .lunatic-component .lunatic-dropdown .lunatic-dropdown-option:hover {
438
+ background-color: var(--color-primary-main);
439
+ color: white;
440
+ }
441
+ .lunatic-component .lunatic-dropdown .lunatic-dropdown-option .prefix {
442
+ color: red;
443
+ }
444
+
445
+ .duration-fields,
446
+ .duration-field {
447
+ display: flex;
448
+ align-items: center;
449
+ gap: 1rem;
450
+ }
451
+
452
+ .duration-field {
453
+ gap: 0.5rem;
454
+ }
455
+
456
+ fieldset {
457
+ border: 0;
458
+ margin: 0;
459
+ padding: 0;
460
+ }
461
+
462
+ .lunatic-icon {
463
+ display: flex;
464
+ align-items: center;
465
+ }
466
+
467
+ .lunatic-fab {
468
+ width: 32px;
469
+ height: 32px;
470
+ border-radius: 50%;
471
+ margin: 0;
472
+ padding: 0;
473
+ outline: inherit;
474
+ border: none;
475
+ background-color: royalblue;
476
+ box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
477
+ }
478
+ .lunatic-fab:hover {
479
+ cursor: pointer;
480
+ background-color: navy;
481
+ transition: background-color 1s;
482
+ }
483
+ .lunatic-fab.mini {
484
+ width: 18px;
485
+ height: 18px;
486
+ }
487
+ .lunatic-fab:focus {
488
+ border: solid 1px black;
489
+ }
490
+ .lunatic-fab:disabled {
491
+ cursor: default;
492
+ background-color: darkgray;
493
+ }
494
+
495
+ .lunatic-component .lunatic-input label,
496
+ .lunatic-component .lunatic-datepicker label,
497
+ .lunatic-component .lunatic-textarea label,
498
+ .lunatic-component .lunatic-input-number label {
499
+ font-size: 12px;
500
+ }
501
+ .lunatic-component .lunatic-input label .label-description,
502
+ .lunatic-component .lunatic-datepicker label .label-description,
503
+ .lunatic-component .lunatic-textarea label .label-description,
504
+ .lunatic-component .lunatic-input-number label .label-description {
505
+ font-size: 12px;
506
+ font-weight: lighter;
507
+ display: block;
508
+ }
509
+ .lunatic-component .lunatic-input input,
510
+ .lunatic-component .lunatic-datepicker input,
511
+ .lunatic-component .lunatic-textarea input,
512
+ .lunatic-component .lunatic-input-number input {
513
+ font: inherit;
514
+ border: 0;
515
+ border-bottom: 0.125rem double rgba(0, 0, 0, 0.42);
516
+ margin: 0;
517
+ padding: 0.375rem 0 0.375rem 0.4375rem;
518
+ display: inline-block;
519
+ min-width: 0;
520
+ box-sizing: content-box;
521
+ background: none;
522
+ }
523
+ .lunatic-component .lunatic-input input:focus,
524
+ .lunatic-component .lunatic-datepicker input:focus,
525
+ .lunatic-component .lunatic-textarea input:focus,
526
+ .lunatic-component .lunatic-input-number input:focus {
527
+ outline: none;
528
+ border-bottom: 0.125rem solid var(--color-primary-main);
529
+ }
530
+ .lunatic-component .lunatic-input input:hover,
531
+ .lunatic-component .lunatic-datepicker input:hover,
532
+ .lunatic-component .lunatic-textarea input:hover,
533
+ .lunatic-component .lunatic-input-number input:hover {
534
+ border-bottom: 0.125rem solid black;
535
+ }
536
+ .lunatic-component .lunatic-input input:read-only,
537
+ .lunatic-component .lunatic-datepicker input:read-only,
538
+ .lunatic-component .lunatic-textarea input:read-only,
539
+ .lunatic-component .lunatic-input-number input:read-only {
540
+ background-color: var(--color-disabled);
541
+ }
542
+ .lunatic-component .lunatic-input .warning,
543
+ .lunatic-component .lunatic-datepicker .warning,
544
+ .lunatic-component .lunatic-textarea .warning,
545
+ .lunatic-component .lunatic-input-number .warning {
546
+ box-sizing: border-box;
547
+ border: solid 2px var(--color-error);
548
+ background-color: var(--color-error);
549
+ }
550
+
551
+ .lunatic-component .lunatic-input-number {
552
+ display: inline-block;
553
+ }
554
+ .lunatic-component .lunatic-input-number .label-description {
555
+ display: block;
556
+ }
557
+
558
+ .lunatic-label .label-description {
559
+ font-weight: lighter;
560
+ display: block;
561
+ }
562
+
563
+ .missing-buttons {
564
+ margin-top: 1em;
565
+ }
566
+
567
+ .missing-buttons .button-lunatic {
568
+ width: 4em;
569
+ font-size: 1em;
570
+ font-weight: normal;
571
+ }
572
+
573
+ .missing-buttons .button-lunatic {
574
+ background-color: var(--color-very-very-light);
575
+ color: var(--color-primary-dark);
576
+ }
577
+
578
+ .missing-buttons .button-lunatic:not(:disabled):hover {
579
+ background-color: white;
580
+ color: var(--color-primary-main);
581
+ }
582
+
583
+ .missing-buttons .button-lunatic:disabled {
584
+ opacity: 0.5;
585
+ }
586
+
587
+ .missing-button-active .button-lunatic {
588
+ background-color: var(--color-primary-dark);
589
+ color: var(--color-very-very-light);
590
+ }
591
+
592
+ .missing-buttons .missing-button-active .button-lunatic:hover {
593
+ background-color: var(--color-primary-main);
594
+ color: white;
595
+ }
596
+
597
+ .lunatic-modal-controls {
598
+ position: fixed;
599
+ top: 0;
600
+ left: 0;
601
+ width: 100%;
602
+ height: 100%;
603
+ background-color: rgba(50, 50, 50, 0.5);
604
+ z-index: 101;
605
+ }
606
+ .lunatic-modal-controls .modal-content {
607
+ background-color: snow;
608
+ height: fit-content;
609
+ width: 50%;
610
+ margin: auto;
611
+ margin-top: 38vh;
612
+ display: flex;
613
+ flex-direction: column;
614
+ border-radius: 8px;
615
+ overflow-wrap: break-word;
616
+ }
617
+ .lunatic-modal-controls .modal-content .body {
618
+ color: black;
619
+ font-size: 16px;
620
+ font-family: "Roboto", "Helvetica", "Arial", sans-serif;
621
+ }
622
+ .lunatic-modal-controls .modal-content .modal-buttons {
623
+ align-self: end;
624
+ margin: 0 0.2em 0.2em 0;
625
+ }
626
+ .lunatic-modal-controls .modal-content .modal-buttons :first-child {
627
+ margin-right: 0.5em;
628
+ }
629
+ .lunatic-modal-controls .errors ul,
630
+ .lunatic-modal-controls .errors li,
631
+ .lunatic-modal-controls .errors div,
632
+ .lunatic-modal-controls .errors span {
633
+ border: none;
634
+ list-style: none;
635
+ }
636
+ .lunatic-modal-controls ul {
637
+ margin: 1em;
638
+ padding: 0;
639
+ }
640
+
641
+ .lunatic-radio-group legend .label-description {
642
+ font-weight: lighter;
643
+ }
644
+ .lunatic-radio-group .lunatic-input-radio {
645
+ display: flex;
646
+ }
647
+ .lunatic-radio-group .lunatic-input-radio .label-description {
648
+ font-weight: lighter;
649
+ }
650
+ .lunatic-radio-group .lunatic-input-radio .lunatic-label {
651
+ font-weight: normal;
652
+ display: flex;
653
+ align-items: center;
654
+ gap: 0.5em;
655
+ }
656
+
657
+ .lunatic-table {
658
+ table-layout: fixed;
659
+ border-collapse: collapse;
660
+ margin-top: 0.3em;
661
+ margin-bottom: 0.3em;
662
+ }
663
+ .lunatic-table .lunatic-table-thead .lunatic-table-th {
664
+ border: 0.15em solid var(--color-primary-dark);
665
+ padding: 0.2em;
666
+ }
667
+
668
+ .lunatic-roundabout {
669
+ background-color: transparent;
670
+ }
671
+ .lunatic-roundabout .roundabout-it-button.complete {
672
+ background-color: lightgreen;
673
+ }
674
+ .lunatic-roundabout .roundabout-it-button.partial {
675
+ background-color: cornflowerblue;
676
+ }
677
+
678
+ .lunatic-component .sequence-lunatic {
679
+ padding: 0;
680
+ font-size: 0.875rem;
681
+ color: var(--color-primary-light);
682
+ background-color: var(--color-secondary-contrast-text);
683
+ border: 0;
684
+ height: 1.875rem;
685
+ }
686
+
687
+ .lunatic-component .lunatic-suggester-message-error {
688
+ border: solid 1px darkred;
689
+ color: darkred;
690
+ background-color: tomato;
691
+ display: inline-block;
692
+ border-radius: 3px;
693
+ padding: 4px 8px;
694
+ margin: 4px 4px;
695
+ }
696
+ .lunatic-component .lunatic-suggester-default-style.lunatic-suggester-container {
697
+ margin-bottom: 10px;
698
+ }
699
+ .lunatic-component .lunatic-suggester-default-style.lunatic-suggester-container .lunatic-suggester {
700
+ min-height: 30px;
701
+ min-width: 260px;
702
+ width: 100%;
703
+ }
704
+ .lunatic-component .lunatic-suggester-default-style.lunatic-suggester-container .lunatic-suggester .lunatic-suggester-content .lunatic-suggester-selection {
705
+ border-radius: 5px;
706
+ border: 2px solid var(--color-primary-dark);
707
+ background-color: white;
708
+ }
709
+ .lunatic-component .lunatic-suggester-default-style.lunatic-suggester-container .lunatic-suggester .lunatic-suggester-content .lunatic-suggester-selection:hover {
710
+ border-color: var(--color-primary-main);
711
+ }
712
+ .lunatic-component .lunatic-suggester-default-style.lunatic-suggester-container .lunatic-suggester .lunatic-suggester-content .lunatic-suggester-selection .lunatic-suggester-input {
713
+ height: 34px;
714
+ line-height: 34px;
715
+ font-size: 15px;
716
+ padding-left: 4px;
717
+ font-family: "Roboto", "Helvetica", "Arial", sans-serif;
718
+ }
719
+ .lunatic-component .lunatic-suggester-default-style.lunatic-suggester-container .lunatic-suggester .lunatic-suggester-content .lunatic-suggester-selection .lunatic-suggester-input::placeholder {
720
+ color: gray;
721
+ font-family: "Roboto", "Helvetica", "Arial", sans-serif;
722
+ font-size: 15px;
723
+ line-height: 34px;
724
+ vertical-align: middle;
725
+ font-weight: normal;
726
+ }
727
+ .lunatic-component .lunatic-suggester-default-style.lunatic-suggester-container .lunatic-suggester .lunatic-suggester-content .lunatic-suggester-selection .lunatic-suggester-selected {
728
+ height: 34px;
729
+ line-height: 34px;
730
+ background-color: white;
731
+ border-radius: 5px;
732
+ padding-left: 4px;
733
+ font-family: "Roboto", "Helvetica", "Arial", sans-serif;
734
+ }
735
+ .lunatic-component .lunatic-suggester-default-style.lunatic-suggester-container .lunatic-suggester .lunatic-suggester-content .lunatic-suggester-selection .lunatic-suggester-selected .placeholderList {
736
+ display: block;
737
+ color: gray;
738
+ font-family: "Roboto", "Helvetica", "Arial", sans-serif;
739
+ font-size: 15px;
740
+ line-height: 34px;
741
+ vertical-align: middle;
742
+ font-weight: normal;
743
+ }
744
+ .lunatic-component .lunatic-suggester-default-style.lunatic-suggester-container .lunatic-suggester .lunatic-suggester-content .lunatic-suggester-selection .lunatic-suggester-selected .selection {
745
+ display: block;
746
+ line-height: 34px;
747
+ font-size: 15px;
748
+ }
749
+ .lunatic-component .lunatic-suggester-default-style.lunatic-suggester-container .lunatic-suggester .lunatic-suggester-content .lunatic-suggester-selection .lunatic-suggester-selected.disabled {
750
+ background-color: var(--color-disabled);
751
+ }
752
+ .lunatic-component .lunatic-suggester-default-style.lunatic-suggester-container .lunatic-suggester .lunatic-suggester-content .lunatic-suggester-panel {
753
+ font-family: "Roboto", "Helvetica", "Arial", sans-serif;
754
+ height: 0;
755
+ opacity: 0;
756
+ background-color: white;
757
+ transition: opacity 267ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 178ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
758
+ }
759
+ .lunatic-component .lunatic-suggester-default-style.lunatic-suggester-container .lunatic-suggester .lunatic-suggester-content .lunatic-suggester-panel.expended {
760
+ border: solid 1px var(--color-primary-light);
761
+ opacity: 1;
762
+ min-height: 30px;
763
+ height: max-content;
764
+ box-shadow: 0 2px 2px grey;
765
+ border-radius: 4px;
766
+ }
767
+ .lunatic-component .lunatic-suggester-default-style.lunatic-suggester-container .lunatic-suggester .lunatic-suggester-content .lunatic-suggester-panel .lunatic-suggester-option {
768
+ text-overflow: ellipsis;
769
+ white-space: nowrap;
770
+ overflow: hidden;
771
+ margin-bottom: 0.1em;
772
+ line-height: 2rem;
773
+ display: block;
774
+ }
775
+ .lunatic-component .lunatic-suggester-default-style.lunatic-suggester-container .lunatic-suggester .lunatic-suggester-content .lunatic-suggester-panel .lunatic-suggester-option.selected {
776
+ color: var(--color-primary-dark);
777
+ background-color: var(--color-dropdown-selected);
778
+ }
779
+ .lunatic-component .lunatic-suggester-default-style.lunatic-suggester-container .lunatic-suggester .lunatic-suggester-content .lunatic-suggester-panel .lunatic-suggester-option:hover {
780
+ background-color: var(--color-primary-main);
781
+ color: white;
782
+ }
783
+ .lunatic-component .lunatic-notification {
784
+ line-height: 34px;
785
+ margin: 2px 2px;
786
+ padding: 1px 1px 1px 60px;
787
+ }
788
+ .lunatic-component .lunatic-notification.info {
789
+ background-color: lightblue;
790
+ }
791
+ .lunatic-component .lunatic-notification.info::before {
792
+ --icon-size: 2rem;
793
+ display: block;
794
+ float: left;
795
+ flex: 0 0 auto;
796
+ background-color: white;
797
+ width: var(--icon-size);
798
+ height: var(--icon-size);
799
+ -webkit-mask-size: 100% 100%;
800
+ mask-size: 100% 100%;
801
+ -webkit-mask-image: url("./icons/wait-icon.svg");
802
+ mask-image: url("./icons/wait-icon.svg");
803
+ content: "";
804
+ margin-left: -48px;
805
+ margin-top: 12px;
806
+ }
807
+ .lunatic-component .lunatic-notification.warn {
808
+ background-color: orange;
809
+ }
810
+ .lunatic-component .lunatic-notification.warn::before {
811
+ --icon-size: 2rem;
812
+ display: block;
813
+ float: left;
814
+ flex: 0 0 auto;
815
+ background-color: white;
816
+ width: var(--icon-size);
817
+ height: var(--icon-size);
818
+ -webkit-mask-size: 100% 100%;
819
+ mask-size: 100% 100%;
820
+ -webkit-mask-image: url("./icons/warn-icon.svg");
821
+ mask-image: url("./icons/warn-icon.svg");
822
+ content: "";
823
+ margin-left: -48px;
824
+ margin-top: 12px;
825
+ }
826
+ .lunatic-component .lunatic-notification.error {
827
+ background-color: crimson;
828
+ }
829
+ .lunatic-component .lunatic-notification.error::before {
830
+ --icon-size: 2rem;
831
+ display: block;
832
+ float: left;
833
+ flex: 0 0 auto;
834
+ background-color: white;
835
+ width: var(--icon-size);
836
+ height: var(--icon-size);
837
+ -webkit-mask-size: 100% 100%;
838
+ mask-size: 100% 100%;
839
+ -webkit-mask-image: url("./icons/alert-icon.svg");
840
+ mask-image: url("./icons/alert-icon.svg");
841
+ content: "";
842
+ margin-left: -48px;
843
+ margin-top: 12px;
844
+ }
845
+ .lunatic-component .lunatic-notification .lunatic-notification-container {
846
+ background-color: white;
847
+ padding: 0 15px;
848
+ }
849
+ .lunatic-component .lunatic-notification .lunatic-notification-container .title {
850
+ font-weight: bold;
851
+ font-size: large;
852
+ margin-bottom: 3px;
853
+ }
854
+
855
+ .lunatic-component .lunatic-table {
856
+ table-layout: fixed;
857
+ border-collapse: collapse;
858
+ margin-top: 0.3em;
859
+ margin-bottom: 0.3em;
860
+ }
861
+ .lunatic-component .lunatic-table td,
862
+ .lunatic-component .lunatic-table th {
863
+ border: 0.15em solid var(--color-primary-dark);
864
+ padding: 0.2em;
865
+ font-size: 13px;
866
+ }
867
+ .lunatic-component .lunatic-table td .field,
868
+ .lunatic-component .lunatic-table td .field-with-tooltip {
869
+ display: flex;
870
+ justify-content: center;
871
+ align-items: center;
872
+ }
873
+ .lunatic-component .table-lunatic .tooltip-lunatic img {
874
+ height: 20px;
875
+ width: 20px;
876
+ }
877
+
878
+ .lunatic-component .textarea-lunatic {
879
+ height: 3em;
880
+ width: 100%;
881
+ }
882
+
883
+ .lunatic-component-container-test {
884
+ display: flex;
885
+ /* Tooltip container */
886
+ /* Tooltip text */
887
+ }
888
+ .lunatic-component-container-test .lunatic-component-body {
889
+ width: 80%;
890
+ }
891
+ .lunatic-component-container-test .tooltip-lunatic {
892
+ margin: auto;
893
+ width: 20%;
894
+ position: relative;
895
+ display: block;
896
+ margin-left: auto;
897
+ margin-right: auto;
898
+ }
899
+ .lunatic-component-container-test .tooltip-lunatic .tooltip-text {
900
+ min-width: 10em;
901
+ max-width: 20em;
902
+ background-color: var(--color-primary-dark);
903
+ color: #fff;
904
+ padding: 0.5em;
905
+ border-radius: 6px;
906
+ font-size: 1em;
907
+ }
908
+ .lunatic-component-container-test .tooltip-lunatic .tooltip-text.place-left::before {
909
+ border-left: 10px solid var(--color-primary-dark);
910
+ }
911
+ .lunatic-component-container-test .tooltip-lunatic .tooltip-text.place-left::after {
912
+ content: none;
913
+ }
914
+
915
+ .lunatic-dragger {
916
+ display: inline-block;
917
+ width: 100%;
918
+ height: 100%;
919
+ -moz-user-select: -moz-none;
920
+ -khtml-user-select: none;
921
+ -webkit-user-select: none;
922
+ }
923
+
924
+ .lunatic-suggester-widget-container.absolute {
925
+ position: fixed;
926
+ z-index: 1;
927
+ }
928
+ .lunatic-suggester-widget-container .lunatic-suggester-widget {
929
+ position: relative;
930
+ border: solid darkred 2px;
931
+ background-color: #e9d0d0;
932
+ padding: 4px 4px;
933
+ border: 2px 2px;
934
+ width: 400px;
935
+ box-shadow: #320000 0px 3px 8px;
936
+ }
937
+ .lunatic-suggester-widget-container .lunatic-suggester-widget.drag {
938
+ box-shadow: goldenrod 0px 3px 8px;
939
+ transition: box-shadow 0.5s;
940
+ }
941
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .widget-row {
942
+ height: 22px;
943
+ display: flex;
944
+ flex-direction: row;
945
+ margin-bottom: 1px;
946
+ }
947
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .widget-row .store-name {
948
+ width: 60%;
949
+ color: darkred;
950
+ font-size: 18px;
951
+ white-space: nowrap;
952
+ overflow-x: hidden;
953
+ }
954
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .widget-row .stats {
955
+ color: darkred;
956
+ font-size: 18px;
957
+ white-space: nowrap;
958
+ overflow-x: hidden;
959
+ width: 40%;
960
+ }
961
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .widget-row .widget-button {
962
+ margin: 0 1px 0 0;
963
+ padding: 0;
964
+ border: none;
965
+ width: 18px;
966
+ height: 18px;
967
+ background-color: darkred;
968
+ }
969
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .widget-row .widget-button.disabled {
970
+ background-color: gray;
971
+ cursor: default;
972
+ }
973
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .widget-row .widget-button:hover {
974
+ background-color: #320000;
975
+ transition: background-color 1s;
976
+ cursor: pointer;
977
+ }
978
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .widget-row .widget-button .lunatic-suggester-icon svg {
979
+ width: 18px;
980
+ height: 18px;
981
+ fill: #e9d0d0;
982
+ }
983
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .widget-row .lunatic-suggester-loader-progress {
984
+ height: inherit;
985
+ border: solid 1px darkred;
986
+ border-radius: 2px;
987
+ width: 70%;
988
+ }
989
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .widget-row .lunatic-suggester-loader-progress.done:hover {
990
+ border-color: #320000;
991
+ transition: border-color 1s;
992
+ cursor: pointer;
993
+ }
994
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .widget-row .lunatic-suggester-loader-progress.done:hover .progress {
995
+ background-color: #320000;
996
+ transition: background-color 1s;
997
+ }
998
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .widget-row .lunatic-suggester-loader-progress .content {
999
+ padding: 2px 2px;
1000
+ height: 100%;
1001
+ width: 100%;
1002
+ }
1003
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .widget-row .lunatic-suggester-loader-progress .content .progress {
1004
+ background-color: darkred;
1005
+ height: 100%;
1006
+ }
1007
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .suggester-widget-network {
1008
+ position: absolute;
1009
+ border: solid darkred 2px;
1010
+ left: 6px;
1011
+ background-color: #e9d0d0;
1012
+ border-radius: 50%;
1013
+ padding: 2px 2px;
1014
+ left: -22px;
1015
+ top: -22px;
1016
+ box-shadow: #320000 0px 3px 8px;
1017
+ }
1018
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .suggester-widget-network.online svg {
1019
+ fill: forestgreen;
1020
+ }
1021
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .suggester-widget-network svg {
1022
+ width: 24px;
1023
+ height: 24px;
1024
+ fill: darkred;
1025
+ }
1026
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .suggester-widget-network.drag {
1027
+ box-shadow: goldenrod 0px 3px 8px;
1028
+ transition: box-shadow 0.5s;
1029
+ }
1030
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .lunatic-widget-tools {
1031
+ position: absolute;
1032
+ right: 0;
1033
+ top: -18px;
1034
+ margin-top: -4px;
1035
+ }
1036
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .lunatic-widget-tools .lunatic-action-tool {
1037
+ display: inline-block;
1038
+ height: 18px;
1039
+ width: 18px;
1040
+ background-color: darkred;
1041
+ border-radius: 50%;
1042
+ margin-left: 2px;
1043
+ }
1044
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .lunatic-widget-tools .lunatic-action-tool:hover {
1045
+ box-shadow: #320000 0px 3px 8px;
1046
+ }
1047
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .lunatic-widget-tools .lunatic-action-tool.drag {
1048
+ background-color: goldenrod;
1049
+ transition: background-color 0.5s;
1050
+ }
1051
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .lunatic-widget-tools .lunatic-action-tool .on-drag-icon {
1052
+ cursor: grab;
1053
+ }
1054
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .lunatic-widget-tools .lunatic-action-tool .on-drag-icon.drag {
1055
+ cursor: grabbing;
1056
+ }
1057
+ .lunatic-suggester-widget-container .lunatic-suggester-widget .lunatic-widget-tools .lunatic-action-tool .on-drag-icon svg {
1058
+ width: 16px;
1059
+ height: 16px;
1060
+ fill: #e9d0d0;
1061
+ }
1062
+
1063
+ /*# sourceMappingURL=main.css.map */