@crediblemark/build 0.25.11 → 0.25.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ArrayField-LRIG75HP.mjs +17 -0
- package/dist/{ObjectField-YPHZU7G2.css → ArrayField-QVQ36K6O.css} +348 -343
- package/dist/{Editor-CVT4RKSU.css → Editor-6U6G5YLU.css} +62 -57
- package/dist/{Editor-P3UUWNSZ.mjs → Editor-7JTCMSHZ.mjs} +8 -8
- package/dist/ObjectField-M2VTKEXM.mjs +17 -0
- package/dist/{ArrayField-MCFJLKAL.css → ObjectField-VE3JKAWT.css} +348 -343
- package/dist/{Render-I6PZ5MEA.mjs → Render-5WYR4VZX.mjs} +1 -1
- package/dist/{Render-DOE2LXKX.css → Render-HVM2KISU.css} +1 -1
- package/dist/{chunk-T2LBDQLG.mjs → chunk-ARM3KXOM.mjs} +11 -11
- package/dist/{chunk-HAWIIGOV.mjs → chunk-CKELXGDW.mjs} +24 -24
- package/dist/{chunk-KN26YZZJ.mjs → chunk-D4WFZ3K2.mjs} +1 -1
- package/dist/{chunk-AZFZRLP7.mjs → chunk-D7HE7E2A.mjs} +13 -13
- package/dist/{chunk-PFHKXXSV.mjs → chunk-GEYNLWCZ.mjs} +1 -1
- package/dist/{chunk-ISXFLTBM.mjs → chunk-H6RPI3T6.mjs} +1 -1
- package/dist/{chunk-XLRMLBFR.mjs → chunk-J4ZMH6JZ.mjs} +1 -1
- package/dist/{chunk-E4F5M5JH.mjs → chunk-LBXFITWQ.mjs} +2 -2
- package/dist/{chunk-P2AZFZ7Q.mjs → chunk-SOAJKHLV.mjs} +3 -3
- package/dist/{chunk-S32JZ2HU.mjs → chunk-TOU7Y6T4.mjs} +1 -1
- package/dist/{chunk-44PQTFGV.mjs → chunk-U4NHUPA4.mjs} +5 -5
- package/dist/{chunk-Z7DDX2XU.mjs → chunk-U7AIA2UJ.mjs} +2 -2
- package/dist/{chunk-4GA5GVA7.mjs → chunk-VEQIM5ZE.mjs} +15 -15
- package/dist/{full-C7RVGAUA.css → full-2LSQUWEM.css} +61 -56
- package/dist/{full-3VRJOFG5.mjs → full-B3RS4LV3.mjs} +5 -5
- package/dist/index.css +109 -98
- package/dist/index.js +86 -86
- package/dist/index.mjs +13 -13
- package/dist/{loaded-4FAPBCAU.css → loaded-FY2TCG5Y.css} +1 -1
- package/dist/{loaded-C2JGMUXV.mjs → loaded-JIR6E6RO.mjs} +2 -2
- package/dist/{loaded-NTEK7RT3.mjs → loaded-VCMCWG55.mjs} +2 -2
- package/dist/{loaded-FJHWTGH6.mjs → loaded-XEI7CJSF.mjs} +2 -2
- package/dist/no-external.css +93 -88
- package/dist/no-external.js +86 -86
- package/dist/no-external.mjs +13 -13
- package/dist/rsc.css +74 -69
- package/dist/rsc.js +67 -67
- package/dist/rsc.mjs +12 -12
- package/package.json +1 -1
- package/dist/ArrayField-HYHS4HCO.mjs +0 -17
- package/dist/ObjectField-4N5XWAFL.mjs +0 -17
|
@@ -1,57 +1,263 @@
|
|
|
1
|
-
/* css-module:/
|
|
2
|
-
.
|
|
1
|
+
/* css-module:/media/rasyiqi/PROJECT/credibuild-project/credbuild/components/AutoField/fields/ArrayField/styles.module.css/#css-module-data */
|
|
2
|
+
._ArrayField_rvhj3_5 {
|
|
3
3
|
display: flex;
|
|
4
4
|
flex-direction: column;
|
|
5
|
-
background-color
|
|
6
|
-
|
|
5
|
+
background: var(--credbuild-color-azure-11);
|
|
6
|
+
border: 1px solid var(--credbuild-color-grey-09);
|
|
7
|
+
border-radius: 4px;
|
|
8
|
+
}
|
|
9
|
+
._ArrayField--isDraggingFrom_rvhj3_13 {
|
|
10
|
+
background-color: var(--credbuild-color-azure-11);
|
|
7
11
|
overflow: hidden;
|
|
8
|
-
transition: all 0.2s ease;
|
|
9
12
|
}
|
|
10
|
-
.
|
|
11
|
-
background-color:
|
|
13
|
+
._ArrayField-addButton_rvhj3_18 {
|
|
14
|
+
background-color: var(--credbuild-color-white);
|
|
15
|
+
border: none;
|
|
16
|
+
border-radius: 3px;
|
|
17
|
+
display: flex;
|
|
18
|
+
color: var(--credbuild-color-azure-05);
|
|
19
|
+
justify-content: center;
|
|
20
|
+
cursor: pointer;
|
|
21
|
+
width: 100%;
|
|
22
|
+
margin: 0;
|
|
23
|
+
padding: 14px;
|
|
24
|
+
text-align: left;
|
|
25
|
+
transition: background-color 50ms ease-in;
|
|
12
26
|
}
|
|
13
|
-
.
|
|
14
|
-
|
|
27
|
+
._ArrayField--hasItems_rvhj3_33 > ._ArrayField-addButton_rvhj3_18 {
|
|
28
|
+
border-top: 1px solid var(--credbuild-color-grey-09);
|
|
29
|
+
border-top-left-radius: 0;
|
|
30
|
+
border-top-right-radius: 0;
|
|
15
31
|
}
|
|
16
|
-
.
|
|
32
|
+
._ArrayField-addButton_rvhj3_18:focus-visible {
|
|
33
|
+
outline: 2px solid var(--credbuild-color-azure-05);
|
|
34
|
+
outline-offset: 2px;
|
|
35
|
+
position: relative;
|
|
36
|
+
}
|
|
37
|
+
@media (hover: hover) and (pointer: fine) {
|
|
38
|
+
._ArrayField_rvhj3_5:not(._ArrayField--isDraggingFrom_rvhj3_13) > ._ArrayField-addButton_rvhj3_18:hover {
|
|
39
|
+
background: var(--credbuild-color-azure-12);
|
|
40
|
+
color: var(--credbuild-color-azure-04);
|
|
41
|
+
transition: none;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
._ArrayField_rvhj3_5:not(._ArrayField--isDraggingFrom_rvhj3_13) > ._ArrayField-addButton_rvhj3_18:active {
|
|
45
|
+
background: var(--credbuild-color-azure-11);
|
|
46
|
+
color: var(--credbuild-color-azure-04);
|
|
47
|
+
transition: none;
|
|
48
|
+
}
|
|
49
|
+
._ArrayField-inner_rvhj3_59 {
|
|
50
|
+
margin-top: -1px;
|
|
51
|
+
}
|
|
52
|
+
._ArrayFieldItem_rvhj3_67 {
|
|
53
|
+
border-top-left-radius: 3px;
|
|
54
|
+
border-top-right-radius: 3px;
|
|
55
|
+
display: block;
|
|
56
|
+
position: relative;
|
|
57
|
+
}
|
|
58
|
+
._ArrayFieldItem_rvhj3_67 {
|
|
59
|
+
border-top: 1px solid var(--credbuild-color-grey-09);
|
|
60
|
+
}
|
|
61
|
+
._ArrayFieldItem--isDragging_rvhj3_78 {
|
|
62
|
+
border-top: transparent;
|
|
63
|
+
}
|
|
64
|
+
._ArrayFieldItem--isExpanded_rvhj3_82::before {
|
|
65
|
+
display: none;
|
|
66
|
+
}
|
|
67
|
+
._ArrayFieldItem--isExpanded_rvhj3_82 {
|
|
68
|
+
border-bottom: 0;
|
|
69
|
+
outline-offset: 0px !important;
|
|
70
|
+
outline: 1px solid var(--credbuild-color-azure-07) !important;
|
|
71
|
+
z-index: 2;
|
|
72
|
+
}
|
|
73
|
+
._ArrayFieldItem--isDragging_rvhj3_78 {
|
|
74
|
+
outline: 2px var(--credbuild-color-azure-09) solid !important;
|
|
75
|
+
}
|
|
76
|
+
._ArrayFieldItem--isDragging_rvhj3_78 ._ArrayFieldItem-summary_rvhj3_97:active {
|
|
77
|
+
background-color: var(--credbuild-color-white);
|
|
78
|
+
}
|
|
79
|
+
._ArrayFieldItem_rvhj3_67 + ._ArrayFieldItem_rvhj3_67 {
|
|
80
|
+
border-top-left-radius: 0;
|
|
81
|
+
border-top-right-radius: 0;
|
|
82
|
+
}
|
|
83
|
+
._ArrayFieldItem-summary_rvhj3_97 {
|
|
84
|
+
background: var(--credbuild-color-white);
|
|
85
|
+
color: var(--credbuild-color-grey-04);
|
|
86
|
+
cursor: pointer;
|
|
87
|
+
display: flex;
|
|
88
|
+
align-items: center;
|
|
89
|
+
gap: 4px;
|
|
90
|
+
justify-content: space-between;
|
|
91
|
+
font-size: 11px;
|
|
92
|
+
list-style: none;
|
|
93
|
+
padding: 4px 10px;
|
|
94
|
+
position: relative;
|
|
95
|
+
overflow: hidden;
|
|
96
|
+
transition: background-color 50ms ease-in;
|
|
97
|
+
}
|
|
98
|
+
._ArrayFieldItem--noFields_rvhj3_122 > ._ArrayFieldItem-summary_rvhj3_97 {
|
|
99
|
+
cursor: grab;
|
|
100
|
+
}
|
|
101
|
+
._ArrayFieldItem_rvhj3_67:first-of-type > ._ArrayFieldItem-summary_rvhj3_97 {
|
|
102
|
+
border-top-left-radius: 3px;
|
|
103
|
+
border-top-right-radius: 3px;
|
|
104
|
+
}
|
|
105
|
+
._ArrayField--addDisabled_rvhj3_131 > ._ArrayField-inner_rvhj3_59 > ._ArrayFieldItem_rvhj3_67:last-of-type:not(._ArrayFieldItem--isExpanded_rvhj3_82) > ._ArrayFieldItem-summary_rvhj3_97 {
|
|
106
|
+
border-bottom-left-radius: 3px;
|
|
107
|
+
border-bottom-right-radius: 3px;
|
|
108
|
+
}
|
|
109
|
+
._ArrayField--addDisabled_rvhj3_131 > ._ArrayField-inner_rvhj3_59 > ._ArrayFieldItem--isExpanded_rvhj3_82:last-of-type {
|
|
110
|
+
border-bottom-left-radius: 3px;
|
|
111
|
+
border-bottom-right-radius: 3px;
|
|
112
|
+
}
|
|
113
|
+
._ArrayFieldItem-summary_rvhj3_97:focus-visible {
|
|
114
|
+
outline: 2px solid var(--credbuild-color-azure-05);
|
|
115
|
+
outline-offset: 2px;
|
|
116
|
+
}
|
|
117
|
+
@media (hover: hover) and (pointer: fine) {
|
|
118
|
+
._ArrayFieldItem-summary_rvhj3_97:hover {
|
|
119
|
+
background-color: var(--credbuild-color-azure-12);
|
|
120
|
+
transition: none;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
._ArrayFieldItem-summary_rvhj3_97:active {
|
|
124
|
+
background-color: var(--credbuild-color-azure-11);
|
|
125
|
+
transition: none;
|
|
126
|
+
}
|
|
127
|
+
._ArrayFieldItem--isExpanded_rvhj3_82 > ._ArrayFieldItem-summary_rvhj3_97 {
|
|
128
|
+
background: var(--credbuild-color-azure-11);
|
|
129
|
+
color: var(--credbuild-color-azure-04);
|
|
130
|
+
font-weight: 600;
|
|
131
|
+
transition: none;
|
|
132
|
+
}
|
|
133
|
+
._ArrayFieldItem-body_rvhj3_170 {
|
|
134
|
+
background: var(--credbuild-color-white);
|
|
135
|
+
display: none;
|
|
136
|
+
}
|
|
137
|
+
._ArrayFieldItem--isExpanded_rvhj3_82 > ._ArrayFieldItem-body_rvhj3_170 {
|
|
138
|
+
display: block;
|
|
139
|
+
}
|
|
140
|
+
._ArrayFieldItem-fieldset_rvhj3_179 {
|
|
17
141
|
border: none;
|
|
142
|
+
border-top: 1px solid var(--credbuild-color-grey-09);
|
|
18
143
|
margin: 0;
|
|
19
144
|
min-width: 0;
|
|
20
|
-
padding:
|
|
145
|
+
padding: 6px 10px;
|
|
146
|
+
}
|
|
147
|
+
._ArrayFieldItem-rhs_rvhj3_187 {
|
|
21
148
|
display: flex;
|
|
22
|
-
flex-direction: column;
|
|
23
149
|
gap: 4px;
|
|
24
|
-
|
|
25
|
-
margin-left: 8px;
|
|
150
|
+
align-items: center;
|
|
26
151
|
}
|
|
27
|
-
.
|
|
28
|
-
|
|
29
|
-
border: 0;
|
|
30
|
-
color: var(--credbuild-color-grey-05);
|
|
31
|
-
cursor: pointer;
|
|
152
|
+
._ArrayFieldItem-actions_rvhj3_193 {
|
|
153
|
+
color: var(--credbuild-color-grey-04);
|
|
32
154
|
display: flex;
|
|
33
|
-
font: inherit;
|
|
34
|
-
font-size: var(--credbuild-font-size-xxxs);
|
|
35
|
-
list-style: none;
|
|
36
|
-
margin-bottom: 2px;
|
|
37
|
-
padding: 4px 8px;
|
|
38
|
-
transition: background-color 50ms ease-in, color 50ms ease-in;
|
|
39
155
|
gap: 4px;
|
|
40
|
-
|
|
41
|
-
|
|
156
|
+
opacity: 0;
|
|
157
|
+
}
|
|
158
|
+
._ArrayFieldItem-summary_rvhj3_97:focus-within > ._ArrayFieldItem-rhs_rvhj3_187 > ._ArrayFieldItem-actions_rvhj3_193,
|
|
159
|
+
._ArrayFieldItem-summary_rvhj3_97:hover > ._ArrayFieldItem-rhs_rvhj3_187 > ._ArrayFieldItem-actions_rvhj3_193 {
|
|
160
|
+
opacity: 1;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
/* css-module:/media/rasyiqi/PROJECT/credibuild-project/credbuild/components/IconButton/IconButton.module.css/#css-module-data */
|
|
164
|
+
._IconButton_1a0fz_1 {
|
|
42
165
|
align-items: center;
|
|
166
|
+
background: transparent;
|
|
167
|
+
border: none;
|
|
168
|
+
border-radius: var(--cb-radius-m);
|
|
169
|
+
color: currentColor;
|
|
170
|
+
display: flex;
|
|
171
|
+
font-family: var(--credbuild-font-family);
|
|
172
|
+
justify-content: center;
|
|
173
|
+
padding: 2px;
|
|
174
|
+
transition: all 0.2s ease;
|
|
43
175
|
}
|
|
44
|
-
.
|
|
45
|
-
background-color: var(--credbuild-color-azure-11);
|
|
176
|
+
._IconButton--active_1a0fz_14 {
|
|
46
177
|
color: var(--credbuild-color-azure-04);
|
|
47
178
|
}
|
|
48
|
-
.
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
179
|
+
._IconButton_1a0fz_1:focus-visible {
|
|
180
|
+
outline: 2px solid var(--credbuild-color-azure-05);
|
|
181
|
+
outline-offset: -2px;
|
|
182
|
+
}
|
|
183
|
+
@media (hover: hover) and (pointer: fine) {
|
|
184
|
+
._IconButton_1a0fz_1:hover:not(._IconButton--disabled_1a0fz_24) {
|
|
185
|
+
background: var(--credbuild-color-grey-10);
|
|
186
|
+
color: var(--credbuild-color-azure-04);
|
|
187
|
+
cursor: pointer;
|
|
188
|
+
transition: none;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
._IconButton_1a0fz_1:active {
|
|
192
|
+
background: var(--credbuild-color-azure-11);
|
|
193
|
+
transition: none;
|
|
194
|
+
}
|
|
195
|
+
._IconButton-title_1a0fz_37 {
|
|
196
|
+
clip: rect(0 0 0 0);
|
|
197
|
+
clip-path: inset(100%);
|
|
198
|
+
height: 1px;
|
|
199
|
+
overflow: hidden;
|
|
200
|
+
position: absolute;
|
|
201
|
+
white-space: nowrap;
|
|
202
|
+
width: 1px;
|
|
203
|
+
}
|
|
204
|
+
._IconButton--disabled_1a0fz_24 {
|
|
205
|
+
color: var(--credbuild-color-grey-07);
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
/* css-module:/media/rasyiqi/PROJECT/credibuild-project/credbuild/components/Loader/styles.module.css/#css-module-data */
|
|
209
|
+
@keyframes _loader-animation_nacdm_1 {
|
|
210
|
+
0% {
|
|
211
|
+
transform: rotate(0deg) scale(1);
|
|
212
|
+
}
|
|
213
|
+
50% {
|
|
214
|
+
transform: rotate(180deg) scale(0.8);
|
|
215
|
+
}
|
|
216
|
+
100% {
|
|
217
|
+
transform: rotate(360deg) scale(1);
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
._Loader_nacdm_13 {
|
|
221
|
+
background: transparent;
|
|
222
|
+
border-radius: 100%;
|
|
223
|
+
border: 2px solid currentColor;
|
|
224
|
+
border-bottom-color: transparent;
|
|
225
|
+
display: inline-block;
|
|
226
|
+
animation: _loader-animation_nacdm_1 1s 0s infinite linear;
|
|
227
|
+
animation-fill-mode: both;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
/* css-module:/media/rasyiqi/PROJECT/credibuild-project/credbuild/components/DragIcon/styles.module.css/#css-module-data */
|
|
231
|
+
._DragIcon_ei1r9_1 {
|
|
232
|
+
color: var(--credbuild-color-grey-05);
|
|
233
|
+
cursor: grab;
|
|
234
|
+
padding: 4px;
|
|
235
|
+
border-radius: 4px;
|
|
236
|
+
}
|
|
237
|
+
._DragIcon--disabled_ei1r9_8 {
|
|
238
|
+
cursor: no-drop;
|
|
239
|
+
}
|
|
240
|
+
@media (hover: hover) and (pointer: fine) {
|
|
241
|
+
._DragIcon_ei1r9_1:not(._DragIcon--disabled_ei1r9_8):hover {
|
|
242
|
+
color: var(--credbuild-color-azure-05);
|
|
243
|
+
background-color: var(--credbuild-color-azure-12);
|
|
244
|
+
}
|
|
52
245
|
}
|
|
53
246
|
|
|
54
|
-
/*
|
|
247
|
+
/* components/Sortable/styles.css */
|
|
248
|
+
[data-dnd-placeholder] * {
|
|
249
|
+
opacity: 0 !important;
|
|
250
|
+
}
|
|
251
|
+
[data-dnd-placeholder] {
|
|
252
|
+
background: var(--credbuild-color-azure-09) !important;
|
|
253
|
+
border: none !important;
|
|
254
|
+
color: #00000000 !important;
|
|
255
|
+
opacity: 0.3 !important;
|
|
256
|
+
outline: none !important;
|
|
257
|
+
transition: none !important;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
/* css-module:/media/rasyiqi/PROJECT/credibuild-project/credbuild/components/AutoField/styles.module.css/#css-module-data */
|
|
55
261
|
._InputWrapper_1l0eg_1:not(._InputWrapper--object_1l0eg_1):not(._InputWrapper--array_1l0eg_1) {
|
|
56
262
|
border: 1px solid var(--credbuild-color-grey-10);
|
|
57
263
|
border-radius: 5px;
|
|
@@ -225,7 +431,7 @@ textarea._Input-input_1l0eg_44 {
|
|
|
225
431
|
margin-bottom: -4px;
|
|
226
432
|
}
|
|
227
433
|
|
|
228
|
-
/* css-module:/
|
|
434
|
+
/* css-module:/media/rasyiqi/PROJECT/credibuild-project/credbuild/components/ExternalInput/styles.module.css/#css-module-data */
|
|
229
435
|
._ExternalInput-actions_1gpb4_1 {
|
|
230
436
|
display: flex;
|
|
231
437
|
}
|
|
@@ -517,7 +723,7 @@ textarea._Input-input_1l0eg_44 {
|
|
|
517
723
|
display: block;
|
|
518
724
|
}
|
|
519
725
|
|
|
520
|
-
/* css-module:/
|
|
726
|
+
/* css-module:/media/rasyiqi/PROJECT/credibuild-project/credbuild/components/Modal/styles.module.css/#css-module-data */
|
|
521
727
|
._Modal_b422s_1 {
|
|
522
728
|
background: color-mix(in srgb, var(--credbuild-color-black) 75%, transparent);
|
|
523
729
|
display: none;
|
|
@@ -545,7 +751,7 @@ textarea._Input-input_1l0eg_44 {
|
|
|
545
751
|
max-height: 90dvh;
|
|
546
752
|
}
|
|
547
753
|
|
|
548
|
-
/* css-module:/
|
|
754
|
+
/* css-module:/media/rasyiqi/PROJECT/credibuild-project/credbuild/components/Heading/styles.module.css/#css-module-data */
|
|
549
755
|
._Heading_1tpsl_1 {
|
|
550
756
|
display: block;
|
|
551
757
|
color: var(--credbuild-color-black);
|
|
@@ -582,29 +788,7 @@ textarea._Input-input_1l0eg_44 {
|
|
|
582
788
|
font-size: var(--credbuild-font-size-xs);
|
|
583
789
|
}
|
|
584
790
|
|
|
585
|
-
/* css-module:/
|
|
586
|
-
@keyframes _loader-animation_nacdm_1 {
|
|
587
|
-
0% {
|
|
588
|
-
transform: rotate(0deg) scale(1);
|
|
589
|
-
}
|
|
590
|
-
50% {
|
|
591
|
-
transform: rotate(180deg) scale(0.8);
|
|
592
|
-
}
|
|
593
|
-
100% {
|
|
594
|
-
transform: rotate(360deg) scale(1);
|
|
595
|
-
}
|
|
596
|
-
}
|
|
597
|
-
._Loader_nacdm_13 {
|
|
598
|
-
background: transparent;
|
|
599
|
-
border-radius: 100%;
|
|
600
|
-
border: 2px solid currentColor;
|
|
601
|
-
border-bottom-color: transparent;
|
|
602
|
-
display: inline-block;
|
|
603
|
-
animation: _loader-animation_nacdm_1 1s 0s infinite linear;
|
|
604
|
-
animation-fill-mode: both;
|
|
605
|
-
}
|
|
606
|
-
|
|
607
|
-
/* css-module:/home/runner/work/credbuild/credbuild/components/Button/Button.module.css/#css-module-data */
|
|
791
|
+
/* css-module:/media/rasyiqi/PROJECT/credibuild-project/credbuild/components/Button/Button.module.css/#css-module-data */
|
|
608
792
|
._Button_164uz_1 {
|
|
609
793
|
appearance: none;
|
|
610
794
|
background: none;
|
|
@@ -683,66 +867,21 @@ textarea._Input-input_1l0eg_44 {
|
|
|
683
867
|
._Button--flush_164uz_80 {
|
|
684
868
|
border-radius: 0;
|
|
685
869
|
}
|
|
686
|
-
._Button--disabled_164uz_84,
|
|
687
|
-
._Button--disabled_164uz_84:hover {
|
|
688
|
-
background-color: var(--credbuild-color-grey-07);
|
|
689
|
-
color: var(--credbuild-color-grey-03);
|
|
690
|
-
cursor: not-allowed;
|
|
691
|
-
}
|
|
692
|
-
._Button--fullWidth_164uz_92 {
|
|
693
|
-
justify-content: center;
|
|
694
|
-
width: 100%;
|
|
695
|
-
}
|
|
696
|
-
._Button-spinner_164uz_97 {
|
|
697
|
-
padding-inline-start: 8px;
|
|
698
|
-
}
|
|
699
|
-
|
|
700
|
-
/* css-module:/home/runner/work/credbuild/credbuild/components/IconButton/IconButton.module.css/#css-module-data */
|
|
701
|
-
._IconButton_1a0fz_1 {
|
|
702
|
-
align-items: center;
|
|
703
|
-
background: transparent;
|
|
704
|
-
border: none;
|
|
705
|
-
border-radius: var(--cb-radius-m);
|
|
706
|
-
color: currentColor;
|
|
707
|
-
display: flex;
|
|
708
|
-
font-family: var(--credbuild-font-family);
|
|
709
|
-
justify-content: center;
|
|
710
|
-
padding: 2px;
|
|
711
|
-
transition: all 0.2s ease;
|
|
712
|
-
}
|
|
713
|
-
._IconButton--active_1a0fz_14 {
|
|
714
|
-
color: var(--credbuild-color-azure-04);
|
|
715
|
-
}
|
|
716
|
-
._IconButton_1a0fz_1:focus-visible {
|
|
717
|
-
outline: 2px solid var(--credbuild-color-azure-05);
|
|
718
|
-
outline-offset: -2px;
|
|
719
|
-
}
|
|
720
|
-
@media (hover: hover) and (pointer: fine) {
|
|
721
|
-
._IconButton_1a0fz_1:hover:not(._IconButton--disabled_1a0fz_24) {
|
|
722
|
-
background: var(--credbuild-color-grey-10);
|
|
723
|
-
color: var(--credbuild-color-azure-04);
|
|
724
|
-
cursor: pointer;
|
|
725
|
-
transition: none;
|
|
726
|
-
}
|
|
727
|
-
}
|
|
728
|
-
._IconButton_1a0fz_1:active {
|
|
729
|
-
background: var(--credbuild-color-azure-11);
|
|
730
|
-
transition: none;
|
|
870
|
+
._Button--disabled_164uz_84,
|
|
871
|
+
._Button--disabled_164uz_84:hover {
|
|
872
|
+
background-color: var(--credbuild-color-grey-07);
|
|
873
|
+
color: var(--credbuild-color-grey-03);
|
|
874
|
+
cursor: not-allowed;
|
|
731
875
|
}
|
|
732
|
-
.
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
height: 1px;
|
|
736
|
-
overflow: hidden;
|
|
737
|
-
position: absolute;
|
|
738
|
-
white-space: nowrap;
|
|
739
|
-
width: 1px;
|
|
876
|
+
._Button--fullWidth_164uz_92 {
|
|
877
|
+
justify-content: center;
|
|
878
|
+
width: 100%;
|
|
740
879
|
}
|
|
741
|
-
.
|
|
742
|
-
|
|
880
|
+
._Button-spinner_164uz_97 {
|
|
881
|
+
padding-inline-start: 8px;
|
|
743
882
|
}
|
|
744
883
|
|
|
745
|
-
/* css-module:/
|
|
884
|
+
/* css-module:/media/rasyiqi/PROJECT/credibuild-project/credbuild/components/RichTextMenu/styles.module.css/#css-module-data */
|
|
746
885
|
._RichTextMenu_193iw_1 {
|
|
747
886
|
display: flex;
|
|
748
887
|
flex-direction: row;
|
|
@@ -784,102 +923,107 @@ textarea._Input-input_1l0eg_44 {
|
|
|
784
923
|
border-left: 0.5px solid var(--credbuild-color-grey-05);
|
|
785
924
|
}
|
|
786
925
|
|
|
787
|
-
/* css-module:/
|
|
788
|
-
.
|
|
926
|
+
/* css-module:/media/rasyiqi/PROJECT/credibuild-project/credbuild/components/ActionBar/styles.module.css/#css-module-data */
|
|
927
|
+
._ActionBar_1xjbo_1 {
|
|
789
928
|
align-items: center;
|
|
790
929
|
cursor: default;
|
|
791
930
|
display: flex;
|
|
792
931
|
width: auto;
|
|
793
|
-
padding:
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
border
|
|
797
|
-
|
|
798
|
-
border-radius: 8px;
|
|
799
|
-
background: var(--credbuild-color-grey-01);
|
|
800
|
-
color: var(--credbuild-color-white);
|
|
932
|
+
padding: 0px 2px;
|
|
933
|
+
border-radius: 5px;
|
|
934
|
+
background: #09090b !important;
|
|
935
|
+
border: 1px solid rgba(255, 255, 255, 0.08) !important;
|
|
936
|
+
color: #ffffff !important;
|
|
801
937
|
font-family: var(--credbuild-font-family);
|
|
802
|
-
min-height:
|
|
938
|
+
min-height: 20px;
|
|
939
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
|
|
803
940
|
}
|
|
804
|
-
._ActionBar-
|
|
805
|
-
color:
|
|
806
|
-
font-size:
|
|
807
|
-
font-weight:
|
|
808
|
-
padding-inline-start:
|
|
809
|
-
padding-inline-end:
|
|
810
|
-
|
|
811
|
-
margin-inline-end: 4px;
|
|
941
|
+
._ActionBar-label_1xjbo_16 {
|
|
942
|
+
color: #a1a1aa !important;
|
|
943
|
+
font-size: 10px;
|
|
944
|
+
font-weight: 600;
|
|
945
|
+
padding-inline-start: 4px;
|
|
946
|
+
padding-inline-end: 4px;
|
|
947
|
+
letter-spacing: -0.01em;
|
|
812
948
|
text-overflow: ellipsis;
|
|
813
949
|
white-space: nowrap;
|
|
814
950
|
}
|
|
815
|
-
.
|
|
951
|
+
._ActionBarAction_1xjbo_27 + ._ActionBar-label_1xjbo_16 {
|
|
816
952
|
padding-inline-start: 0;
|
|
817
953
|
}
|
|
818
|
-
._ActionBar-
|
|
954
|
+
._ActionBar-label_1xjbo_16 + ._ActionBarAction_1xjbo_27 {
|
|
819
955
|
margin-inline-start: -4px;
|
|
820
956
|
}
|
|
821
|
-
._ActionBar-
|
|
957
|
+
._ActionBar-group_1xjbo_35 {
|
|
822
958
|
align-items: center;
|
|
823
|
-
border-inline-start:
|
|
959
|
+
border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
|
|
824
960
|
display: flex;
|
|
825
961
|
height: 100%;
|
|
826
|
-
padding-inline-start:
|
|
827
|
-
padding-inline-end:
|
|
962
|
+
padding-inline-start: 2px;
|
|
963
|
+
padding-inline-end: 2px;
|
|
828
964
|
}
|
|
829
|
-
._ActionBar-
|
|
965
|
+
._ActionBar-group_1xjbo_35:first-of-type {
|
|
830
966
|
border-inline-start: 0;
|
|
831
967
|
}
|
|
832
|
-
._ActionBar-
|
|
968
|
+
._ActionBar-group_1xjbo_35:empty {
|
|
833
969
|
display: none;
|
|
834
970
|
}
|
|
835
|
-
.
|
|
971
|
+
._ActionBarAction_1xjbo_27 {
|
|
836
972
|
background: transparent;
|
|
837
973
|
border: none;
|
|
838
|
-
color:
|
|
974
|
+
color: #a1a1aa !important;
|
|
839
975
|
cursor: pointer;
|
|
840
|
-
padding:
|
|
841
|
-
margin-inline-start:
|
|
842
|
-
margin-inline-end:
|
|
843
|
-
border-radius:
|
|
976
|
+
padding: 2px;
|
|
977
|
+
margin-inline-start: 1px;
|
|
978
|
+
margin-inline-end: 1px;
|
|
979
|
+
border-radius: 3px;
|
|
844
980
|
overflow: hidden;
|
|
845
981
|
display: flex;
|
|
846
982
|
align-items: center;
|
|
847
983
|
justify-content: center;
|
|
848
|
-
transition:
|
|
984
|
+
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
849
985
|
}
|
|
850
|
-
._ActionBarAction--
|
|
986
|
+
._ActionBarAction--disabled_1xjbo_68 {
|
|
851
987
|
cursor: auto;
|
|
852
|
-
color:
|
|
988
|
+
color: rgba(255, 255, 255, 0.3) !important;
|
|
853
989
|
}
|
|
854
|
-
.
|
|
990
|
+
._ActionBarAction_1xjbo_27 svg {
|
|
855
991
|
max-width: none !important;
|
|
992
|
+
width: 12px;
|
|
993
|
+
height: 12px;
|
|
994
|
+
stroke-width: 2px;
|
|
995
|
+
transition: transform 0.2s ease;
|
|
856
996
|
}
|
|
857
|
-
.
|
|
858
|
-
outline: 2px solid var(--
|
|
997
|
+
._ActionBarAction_1xjbo_27:focus-visible {
|
|
998
|
+
outline: 2px solid var(--cb-gold);
|
|
859
999
|
outline-offset: -2px;
|
|
860
1000
|
}
|
|
861
1001
|
@media (hover: hover) and (pointer: fine) {
|
|
862
|
-
.
|
|
863
|
-
color:
|
|
864
|
-
|
|
1002
|
+
._ActionBarAction_1xjbo_27:hover:not(._ActionBarAction--disabled_1xjbo_68) {
|
|
1003
|
+
color: #ffffff !important;
|
|
1004
|
+
background: rgba(255, 255, 255, 0.08) !important;
|
|
1005
|
+
}
|
|
1006
|
+
._ActionBarAction_1xjbo_27:hover svg {
|
|
1007
|
+
transform: scale(1.05);
|
|
865
1008
|
}
|
|
866
1009
|
}
|
|
867
|
-
.
|
|
868
|
-
._ActionBarAction--
|
|
869
|
-
color: var(--
|
|
870
|
-
|
|
1010
|
+
._ActionBarAction_1xjbo_27:active:not(._ActionBarAction--disabled_1xjbo_68),
|
|
1011
|
+
._ActionBarAction--active_1xjbo_97 {
|
|
1012
|
+
color: var(--cb-gold) !important;
|
|
1013
|
+
background: rgba(255, 255, 255, 0.12) !important;
|
|
1014
|
+
transform: scale(0.95);
|
|
871
1015
|
}
|
|
872
|
-
._ActionBar-
|
|
1016
|
+
._ActionBar-group_1xjbo_35 * {
|
|
873
1017
|
margin: 0;
|
|
874
1018
|
}
|
|
875
|
-
._ActionBar-
|
|
876
|
-
background:
|
|
1019
|
+
._ActionBar-separator_1xjbo_107 {
|
|
1020
|
+
background: rgba(255, 255, 255, 0.08);
|
|
877
1021
|
margin-inline: 4px;
|
|
878
|
-
width:
|
|
879
|
-
height:
|
|
1022
|
+
width: 1px;
|
|
1023
|
+
height: 12px;
|
|
880
1024
|
}
|
|
881
1025
|
|
|
882
|
-
/* css-module:/
|
|
1026
|
+
/* css-module:/media/rasyiqi/PROJECT/credibuild-project/credbuild/components/RichTextMenu/components/Control/styles.module.css/#css-module-data */
|
|
883
1027
|
._Control_1aveu_1 .lucide {
|
|
884
1028
|
height: 18px;
|
|
885
1029
|
width: 18px;
|
|
@@ -889,7 +1033,7 @@ textarea._Input-input_1l0eg_44 {
|
|
|
889
1033
|
width: 16px;
|
|
890
1034
|
}
|
|
891
1035
|
|
|
892
|
-
/* css-module:/
|
|
1036
|
+
/* css-module:/media/rasyiqi/PROJECT/credibuild-project/credbuild/components/Select/styles.module.css/#css-module-data */
|
|
893
1037
|
._Select_16son_1 {
|
|
894
1038
|
position: relative;
|
|
895
1039
|
z-index: 1;
|
|
@@ -977,7 +1121,7 @@ textarea._Input-input_1l0eg_44 {
|
|
|
977
1121
|
color: var(--credbuild-color-azure-04);
|
|
978
1122
|
}
|
|
979
1123
|
|
|
980
|
-
/* css-module:/
|
|
1124
|
+
/* css-module:/media/rasyiqi/PROJECT/credibuild-project/credbuild/components/RichTextEditor/styles.module.css/#css-module-data */
|
|
981
1125
|
._RichTextEditor_hp4qf_1 .ProseMirror {
|
|
982
1126
|
white-space: pre-wrap;
|
|
983
1127
|
word-wrap: break-word;
|
|
@@ -1080,194 +1224,55 @@ textarea._Input-input_1l0eg_44 {
|
|
|
1080
1224
|
border-bottom: 1px solid var(--credbuild-color-grey-09);
|
|
1081
1225
|
}
|
|
1082
1226
|
|
|
1083
|
-
/* css-module:/
|
|
1084
|
-
.
|
|
1227
|
+
/* css-module:/media/rasyiqi/PROJECT/credibuild-project/credbuild/components/AutoField/fields/ObjectField/styles.module.css/#css-module-data */
|
|
1228
|
+
._ObjectField_12pvo_1 {
|
|
1085
1229
|
display: flex;
|
|
1086
1230
|
flex-direction: column;
|
|
1087
|
-
background:
|
|
1088
|
-
|
|
1089
|
-
border-radius: 4px;
|
|
1090
|
-
}
|
|
1091
|
-
._ArrayField--isDraggingFrom_rvhj3_13 {
|
|
1092
|
-
background-color: var(--credbuild-color-azure-11);
|
|
1093
|
-
overflow: hidden;
|
|
1094
|
-
}
|
|
1095
|
-
._ArrayField-addButton_rvhj3_18 {
|
|
1096
|
-
background-color: var(--credbuild-color-white);
|
|
1097
|
-
border: none;
|
|
1098
|
-
border-radius: 3px;
|
|
1099
|
-
display: flex;
|
|
1100
|
-
color: var(--credbuild-color-azure-05);
|
|
1101
|
-
justify-content: center;
|
|
1102
|
-
cursor: pointer;
|
|
1103
|
-
width: 100%;
|
|
1104
|
-
margin: 0;
|
|
1105
|
-
padding: 14px;
|
|
1106
|
-
text-align: left;
|
|
1107
|
-
transition: background-color 50ms ease-in;
|
|
1108
|
-
}
|
|
1109
|
-
._ArrayField--hasItems_rvhj3_33 > ._ArrayField-addButton_rvhj3_18 {
|
|
1110
|
-
border-top: 1px solid var(--credbuild-color-grey-09);
|
|
1111
|
-
border-top-left-radius: 0;
|
|
1112
|
-
border-top-right-radius: 0;
|
|
1113
|
-
}
|
|
1114
|
-
._ArrayField-addButton_rvhj3_18:focus-visible {
|
|
1115
|
-
outline: 2px solid var(--credbuild-color-azure-05);
|
|
1116
|
-
outline-offset: 2px;
|
|
1117
|
-
position: relative;
|
|
1118
|
-
}
|
|
1119
|
-
@media (hover: hover) and (pointer: fine) {
|
|
1120
|
-
._ArrayField_rvhj3_5:not(._ArrayField--isDraggingFrom_rvhj3_13) > ._ArrayField-addButton_rvhj3_18:hover {
|
|
1121
|
-
background: var(--credbuild-color-azure-12);
|
|
1122
|
-
color: var(--credbuild-color-azure-04);
|
|
1123
|
-
transition: none;
|
|
1124
|
-
}
|
|
1125
|
-
}
|
|
1126
|
-
._ArrayField_rvhj3_5:not(._ArrayField--isDraggingFrom_rvhj3_13) > ._ArrayField-addButton_rvhj3_18:active {
|
|
1127
|
-
background: var(--credbuild-color-azure-11);
|
|
1128
|
-
color: var(--credbuild-color-azure-04);
|
|
1129
|
-
transition: none;
|
|
1130
|
-
}
|
|
1131
|
-
._ArrayField-inner_rvhj3_59 {
|
|
1132
|
-
margin-top: -1px;
|
|
1133
|
-
}
|
|
1134
|
-
._ArrayFieldItem_rvhj3_67 {
|
|
1135
|
-
border-top-left-radius: 3px;
|
|
1136
|
-
border-top-right-radius: 3px;
|
|
1137
|
-
display: block;
|
|
1138
|
-
position: relative;
|
|
1139
|
-
}
|
|
1140
|
-
._ArrayFieldItem_rvhj3_67 {
|
|
1141
|
-
border-top: 1px solid var(--credbuild-color-grey-09);
|
|
1142
|
-
}
|
|
1143
|
-
._ArrayFieldItem--isDragging_rvhj3_78 {
|
|
1144
|
-
border-top: transparent;
|
|
1145
|
-
}
|
|
1146
|
-
._ArrayFieldItem--isExpanded_rvhj3_82::before {
|
|
1147
|
-
display: none;
|
|
1148
|
-
}
|
|
1149
|
-
._ArrayFieldItem--isExpanded_rvhj3_82 {
|
|
1150
|
-
border-bottom: 0;
|
|
1151
|
-
outline-offset: 0px !important;
|
|
1152
|
-
outline: 1px solid var(--credbuild-color-azure-07) !important;
|
|
1153
|
-
z-index: 2;
|
|
1154
|
-
}
|
|
1155
|
-
._ArrayFieldItem--isDragging_rvhj3_78 {
|
|
1156
|
-
outline: 2px var(--credbuild-color-azure-09) solid !important;
|
|
1157
|
-
}
|
|
1158
|
-
._ArrayFieldItem--isDragging_rvhj3_78 ._ArrayFieldItem-summary_rvhj3_97:active {
|
|
1159
|
-
background-color: var(--credbuild-color-white);
|
|
1160
|
-
}
|
|
1161
|
-
._ArrayFieldItem_rvhj3_67 + ._ArrayFieldItem_rvhj3_67 {
|
|
1162
|
-
border-top-left-radius: 0;
|
|
1163
|
-
border-top-right-radius: 0;
|
|
1164
|
-
}
|
|
1165
|
-
._ArrayFieldItem-summary_rvhj3_97 {
|
|
1166
|
-
background: var(--credbuild-color-white);
|
|
1167
|
-
color: var(--credbuild-color-grey-04);
|
|
1168
|
-
cursor: pointer;
|
|
1169
|
-
display: flex;
|
|
1170
|
-
align-items: center;
|
|
1171
|
-
gap: 4px;
|
|
1172
|
-
justify-content: space-between;
|
|
1173
|
-
font-size: 11px;
|
|
1174
|
-
list-style: none;
|
|
1175
|
-
padding: 4px 10px;
|
|
1176
|
-
position: relative;
|
|
1231
|
+
background-color: transparent;
|
|
1232
|
+
margin-bottom: 0;
|
|
1177
1233
|
overflow: hidden;
|
|
1178
|
-
transition:
|
|
1179
|
-
}
|
|
1180
|
-
._ArrayFieldItem--noFields_rvhj3_122 > ._ArrayFieldItem-summary_rvhj3_97 {
|
|
1181
|
-
cursor: grab;
|
|
1182
|
-
}
|
|
1183
|
-
._ArrayFieldItem_rvhj3_67:first-of-type > ._ArrayFieldItem-summary_rvhj3_97 {
|
|
1184
|
-
border-top-left-radius: 3px;
|
|
1185
|
-
border-top-right-radius: 3px;
|
|
1186
|
-
}
|
|
1187
|
-
._ArrayField--addDisabled_rvhj3_131 > ._ArrayField-inner_rvhj3_59 > ._ArrayFieldItem_rvhj3_67:last-of-type:not(._ArrayFieldItem--isExpanded_rvhj3_82) > ._ArrayFieldItem-summary_rvhj3_97 {
|
|
1188
|
-
border-bottom-left-radius: 3px;
|
|
1189
|
-
border-bottom-right-radius: 3px;
|
|
1190
|
-
}
|
|
1191
|
-
._ArrayField--addDisabled_rvhj3_131 > ._ArrayField-inner_rvhj3_59 > ._ArrayFieldItem--isExpanded_rvhj3_82:last-of-type {
|
|
1192
|
-
border-bottom-left-radius: 3px;
|
|
1193
|
-
border-bottom-right-radius: 3px;
|
|
1194
|
-
}
|
|
1195
|
-
._ArrayFieldItem-summary_rvhj3_97:focus-visible {
|
|
1196
|
-
outline: 2px solid var(--credbuild-color-azure-05);
|
|
1197
|
-
outline-offset: 2px;
|
|
1198
|
-
}
|
|
1199
|
-
@media (hover: hover) and (pointer: fine) {
|
|
1200
|
-
._ArrayFieldItem-summary_rvhj3_97:hover {
|
|
1201
|
-
background-color: var(--credbuild-color-azure-12);
|
|
1202
|
-
transition: none;
|
|
1203
|
-
}
|
|
1204
|
-
}
|
|
1205
|
-
._ArrayFieldItem-summary_rvhj3_97:active {
|
|
1206
|
-
background-color: var(--credbuild-color-azure-11);
|
|
1207
|
-
transition: none;
|
|
1208
|
-
}
|
|
1209
|
-
._ArrayFieldItem--isExpanded_rvhj3_82 > ._ArrayFieldItem-summary_rvhj3_97 {
|
|
1210
|
-
background: var(--credbuild-color-azure-11);
|
|
1211
|
-
color: var(--credbuild-color-azure-04);
|
|
1212
|
-
font-weight: 600;
|
|
1213
|
-
transition: none;
|
|
1234
|
+
transition: all 0.2s ease;
|
|
1214
1235
|
}
|
|
1215
|
-
.
|
|
1216
|
-
background:
|
|
1217
|
-
display: none;
|
|
1236
|
+
._ObjectField--isOpen_12pvo_10 {
|
|
1237
|
+
background-color: transparent;
|
|
1218
1238
|
}
|
|
1219
|
-
.
|
|
1220
|
-
|
|
1239
|
+
._ObjectField-content_12pvo_14 {
|
|
1240
|
+
background-color: transparent;
|
|
1221
1241
|
}
|
|
1222
|
-
.
|
|
1242
|
+
._ObjectField-fieldset_12pvo_18 {
|
|
1223
1243
|
border: none;
|
|
1224
|
-
border-top: 1px solid var(--credbuild-color-grey-09);
|
|
1225
1244
|
margin: 0;
|
|
1226
1245
|
min-width: 0;
|
|
1227
|
-
padding:
|
|
1228
|
-
}
|
|
1229
|
-
._ArrayFieldItem-rhs_rvhj3_187 {
|
|
1246
|
+
padding: 0 0 8px 12px;
|
|
1230
1247
|
display: flex;
|
|
1248
|
+
flex-direction: column;
|
|
1231
1249
|
gap: 4px;
|
|
1232
|
-
|
|
1250
|
+
border-left: 1px solid var(--credbuild-color-grey-10);
|
|
1251
|
+
margin-left: 8px;
|
|
1233
1252
|
}
|
|
1234
|
-
.
|
|
1235
|
-
color:
|
|
1253
|
+
._ObjectField-header_12pvo_30 {
|
|
1254
|
+
background-color: transparent;
|
|
1255
|
+
border: 0;
|
|
1256
|
+
color: var(--credbuild-color-grey-05);
|
|
1257
|
+
cursor: pointer;
|
|
1236
1258
|
display: flex;
|
|
1259
|
+
font: inherit;
|
|
1260
|
+
font-size: var(--credbuild-font-size-xxxs);
|
|
1261
|
+
list-style: none;
|
|
1262
|
+
margin-bottom: 2px;
|
|
1263
|
+
padding: 4px 8px;
|
|
1264
|
+
transition: background-color 50ms ease-in, color 50ms ease-in;
|
|
1237
1265
|
gap: 4px;
|
|
1238
|
-
opacity: 0;
|
|
1239
|
-
}
|
|
1240
|
-
._ArrayFieldItem-summary_rvhj3_97:focus-within > ._ArrayFieldItem-rhs_rvhj3_187 > ._ArrayFieldItem-actions_rvhj3_193,
|
|
1241
|
-
._ArrayFieldItem-summary_rvhj3_97:hover > ._ArrayFieldItem-rhs_rvhj3_187 > ._ArrayFieldItem-actions_rvhj3_193 {
|
|
1242
|
-
opacity: 1;
|
|
1243
|
-
}
|
|
1244
|
-
|
|
1245
|
-
/* css-module:/home/runner/work/credbuild/credbuild/components/DragIcon/styles.module.css/#css-module-data */
|
|
1246
|
-
._DragIcon_ei1r9_1 {
|
|
1247
|
-
color: var(--credbuild-color-grey-05);
|
|
1248
|
-
cursor: grab;
|
|
1249
|
-
padding: 4px;
|
|
1250
1266
|
border-radius: 4px;
|
|
1267
|
+
width: 100%;
|
|
1268
|
+
align-items: center;
|
|
1251
1269
|
}
|
|
1252
|
-
.
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
@media (hover: hover) and (pointer: fine) {
|
|
1256
|
-
._DragIcon_ei1r9_1:not(._DragIcon--disabled_ei1r9_8):hover {
|
|
1257
|
-
color: var(--credbuild-color-azure-05);
|
|
1258
|
-
background-color: var(--credbuild-color-azure-12);
|
|
1259
|
-
}
|
|
1260
|
-
}
|
|
1261
|
-
|
|
1262
|
-
/* components/Sortable/styles.css */
|
|
1263
|
-
[data-dnd-placeholder] * {
|
|
1264
|
-
opacity: 0 !important;
|
|
1270
|
+
._ObjectField-header_12pvo_30:hover {
|
|
1271
|
+
background-color: var(--credbuild-color-azure-11);
|
|
1272
|
+
color: var(--credbuild-color-azure-04);
|
|
1265
1273
|
}
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
opacity: 0.3 !important;
|
|
1271
|
-
outline: none !important;
|
|
1272
|
-
transition: none !important;
|
|
1274
|
+
._ObjectField-headerIcon_12pvo_53 {
|
|
1275
|
+
margin-inline-start: auto;
|
|
1276
|
+
display: flex;
|
|
1277
|
+
align-items: center;
|
|
1273
1278
|
}
|