@bodynarf/react.components 1.14.0 → 1.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changelog.md +1 -1
- package/components/accordion/component/index.js +1 -1
- package/components/accordion/component/style.css +21 -0
- package/components/anchor/component/style.css +12 -0
- package/components/button/component/style.css +10 -0
- package/components/dropdown/component/style.css +101 -0
- package/components/dropdown/components/compact/index.d.ts.map +1 -1
- package/components/dropdown/components/compact/index.js +3 -3
- package/components/dropdown/components/label/components/empty/index.js +1 -1
- package/components/dropdown/components/label/components/withSearch/style.css +21 -0
- package/components/dropdown/types.d.ts +6 -6
- package/components/dropdown/types.d.ts.map +1 -1
- package/components/file/component/styles.css +74 -0
- package/components/icon/component/style.css +19 -0
- package/components/index.d.ts +0 -2
- package/components/index.d.ts.map +1 -1
- package/components/index.js +0 -2
- package/components/modal/component/style.css +32 -0
- package/components/multiselect/component/style.css +20 -0
- package/components/multiselect/components/withoutLabel/index.d.ts.map +1 -1
- package/components/multiselect/components/withoutLabel/index.js +3 -3
- package/components/primitives/checkbox/component/style.css +19 -0
- package/components/primitives/color/component/style.css +15 -0
- package/components/primitives/date/component/style.css +9 -0
- package/components/primitives/internal/hint/style.css +4 -0
- package/components/primitives/password/component/style.css +10 -0
- package/components/primitives/radioGroup/component/style.css +382 -0
- package/components/primitives/radioGroup/component/style.scss +2 -0
- package/components/primitives/slider/component/style.css +438 -0
- package/components/primitives/slider/component/style.scss +2 -0
- package/components/primitives/switch/component/style.css +482 -0
- package/components/primitives/switch/component/style.scss +2 -0
- package/components/primitives/timePicker/component/style.css +21 -0
- package/components/progress/component/style.css +167 -0
- package/components/search/component/style.css +18 -0
- package/components/stepper/component/style.css +510 -0
- package/components/stepper/component/style.scss +2 -0
- package/components/table/component/style.css +14 -0
- package/components/tabs/component/style.css +6 -0
- package/components/tag/component/style.css +19 -0
- package/components/timeline/component/style.css +488 -0
- package/components/timeline/component/style.scss +2 -0
- package/package.json +10 -3
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -0,0 +1,510 @@
|
|
|
1
|
+
@keyframes stepper-connector-fill {
|
|
2
|
+
from {
|
|
3
|
+
width: 0;
|
|
4
|
+
}
|
|
5
|
+
to {
|
|
6
|
+
width: 100%;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
.bbr-stepper {
|
|
10
|
+
display: flex;
|
|
11
|
+
flex-direction: row;
|
|
12
|
+
align-items: flex-start;
|
|
13
|
+
width: 100%;
|
|
14
|
+
}
|
|
15
|
+
.bbr-stepper.is-vertical {
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
}
|
|
18
|
+
.bbr-stepper.is-vertical .bbr-stepper-step {
|
|
19
|
+
flex-direction: row;
|
|
20
|
+
align-items: flex-start;
|
|
21
|
+
width: 100%;
|
|
22
|
+
padding-bottom: 1.5rem;
|
|
23
|
+
}
|
|
24
|
+
.bbr-stepper.is-vertical .bbr-stepper-step:last-child {
|
|
25
|
+
padding-bottom: 0;
|
|
26
|
+
}
|
|
27
|
+
.bbr-stepper.is-vertical .bbr-stepper-content {
|
|
28
|
+
margin-top: 0;
|
|
29
|
+
margin-left: 1rem;
|
|
30
|
+
text-align: left;
|
|
31
|
+
}
|
|
32
|
+
.bbr-stepper.is-vertical .bbr-stepper-connector {
|
|
33
|
+
position: absolute;
|
|
34
|
+
left: calc(1.25rem - 1px);
|
|
35
|
+
top: 2.5rem;
|
|
36
|
+
width: 2px;
|
|
37
|
+
height: calc(100% - 2.5rem + 0.5rem);
|
|
38
|
+
right: auto;
|
|
39
|
+
}
|
|
40
|
+
.bbr-stepper.is-vertical .bbr-stepper-connector.has-arrow {
|
|
41
|
+
height: calc(100% - 2.5rem);
|
|
42
|
+
}
|
|
43
|
+
.bbr-stepper.is-vertical .bbr-stepper-connector.has-arrow::after {
|
|
44
|
+
right: auto;
|
|
45
|
+
left: 50%;
|
|
46
|
+
top: auto;
|
|
47
|
+
bottom: -6px;
|
|
48
|
+
transform: translateX(-50%);
|
|
49
|
+
border-top: 6px solid hsl(0, 0%, 86%);
|
|
50
|
+
border-bottom: none;
|
|
51
|
+
border-left: 5px solid transparent;
|
|
52
|
+
border-right: 5px solid transparent;
|
|
53
|
+
}
|
|
54
|
+
.bbr-stepper.is-vertical .bbr-stepper-connector.has-arrow.is-completed::after {
|
|
55
|
+
border-top-color: hsl(171, 100%, 41%);
|
|
56
|
+
border-left-color: transparent;
|
|
57
|
+
}
|
|
58
|
+
.bbr-stepper.is-vertical.is-small .bbr-stepper-connector {
|
|
59
|
+
left: calc(1rem - 1px);
|
|
60
|
+
top: 2rem;
|
|
61
|
+
height: calc(100% - 2rem + 0.5rem);
|
|
62
|
+
}
|
|
63
|
+
.bbr-stepper.is-vertical.is-medium .bbr-stepper-connector {
|
|
64
|
+
left: calc(1.5rem - 1px);
|
|
65
|
+
top: 3rem;
|
|
66
|
+
height: calc(100% - 3rem + 0.5rem);
|
|
67
|
+
}
|
|
68
|
+
.bbr-stepper.is-vertical.is-large .bbr-stepper-connector {
|
|
69
|
+
left: calc(1.75rem - 1px);
|
|
70
|
+
top: 3.5rem;
|
|
71
|
+
height: calc(100% - 3.5rem + 0.5rem);
|
|
72
|
+
}
|
|
73
|
+
.bbr-stepper .bbr-stepper-step {
|
|
74
|
+
position: relative;
|
|
75
|
+
display: flex;
|
|
76
|
+
flex-direction: column;
|
|
77
|
+
align-items: center;
|
|
78
|
+
flex: 1;
|
|
79
|
+
padding: 0 0.5rem;
|
|
80
|
+
}
|
|
81
|
+
.bbr-stepper .bbr-stepper-step:first-child {
|
|
82
|
+
padding-left: 0;
|
|
83
|
+
}
|
|
84
|
+
.bbr-stepper .bbr-stepper-step:last-child {
|
|
85
|
+
padding-right: 0;
|
|
86
|
+
}
|
|
87
|
+
.bbr-stepper .bbr-stepper-step.is-clickable {
|
|
88
|
+
cursor: pointer;
|
|
89
|
+
}
|
|
90
|
+
.bbr-stepper .bbr-stepper-step.is-clickable .bbr-stepper-marker {
|
|
91
|
+
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
92
|
+
}
|
|
93
|
+
.bbr-stepper .bbr-stepper-step.is-clickable:hover .bbr-stepper-marker {
|
|
94
|
+
transform: scale(1.1);
|
|
95
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
96
|
+
}
|
|
97
|
+
.bbr-stepper .bbr-stepper-step.is-completed .bbr-stepper-marker {
|
|
98
|
+
background: hsl(171, 100%, 41%);
|
|
99
|
+
border: 2px solid hsl(171, 100%, 41%);
|
|
100
|
+
color: hsl(0, 0%, 100%);
|
|
101
|
+
}
|
|
102
|
+
.bbr-stepper .bbr-stepper-step.is-completed .bbr-stepper-title {
|
|
103
|
+
color: hsl(0, 0%, 29%);
|
|
104
|
+
font-weight: 500;
|
|
105
|
+
}
|
|
106
|
+
.bbr-stepper .bbr-stepper-step.is-current .bbr-stepper-marker {
|
|
107
|
+
background: hsl(0, 0%, 100%);
|
|
108
|
+
border: 2px solid hsl(171, 100%, 41%);
|
|
109
|
+
color: hsl(171, 100%, 41%);
|
|
110
|
+
box-shadow: 0 0 0 4px rgba(0, 209.1, 177.735, 0.2);
|
|
111
|
+
}
|
|
112
|
+
.bbr-stepper .bbr-stepper-step.is-current .bbr-stepper-title {
|
|
113
|
+
color: hsl(0, 0%, 21%);
|
|
114
|
+
font-weight: 600;
|
|
115
|
+
}
|
|
116
|
+
.bbr-stepper .bbr-stepper-step.is-upcoming .bbr-stepper-marker {
|
|
117
|
+
background: hsl(0, 0%, 100%);
|
|
118
|
+
border: 2px solid hsl(0, 0%, 86%);
|
|
119
|
+
color: hsl(0, 0%, 48%);
|
|
120
|
+
}
|
|
121
|
+
.bbr-stepper .bbr-stepper-step.is-upcoming .bbr-stepper-title {
|
|
122
|
+
color: hsl(0, 0%, 48%);
|
|
123
|
+
}
|
|
124
|
+
.bbr-stepper .bbr-stepper-marker {
|
|
125
|
+
display: flex;
|
|
126
|
+
align-items: center;
|
|
127
|
+
justify-content: center;
|
|
128
|
+
width: 2.5rem;
|
|
129
|
+
height: 2.5rem;
|
|
130
|
+
border-radius: 50%;
|
|
131
|
+
font-weight: 600;
|
|
132
|
+
font-size: 1rem;
|
|
133
|
+
transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
|
|
134
|
+
z-index: 1;
|
|
135
|
+
flex-shrink: 0;
|
|
136
|
+
}
|
|
137
|
+
.bbr-stepper .bbr-stepper-number,
|
|
138
|
+
.bbr-stepper .bbr-stepper-icon {
|
|
139
|
+
display: flex;
|
|
140
|
+
align-items: center;
|
|
141
|
+
justify-content: center;
|
|
142
|
+
}
|
|
143
|
+
.bbr-stepper .bbr-stepper-content {
|
|
144
|
+
margin-top: 0.75rem;
|
|
145
|
+
text-align: center;
|
|
146
|
+
}
|
|
147
|
+
.bbr-stepper .bbr-stepper-title {
|
|
148
|
+
font-size: 0.875rem;
|
|
149
|
+
line-height: 1.25;
|
|
150
|
+
transition: color 0.2s ease;
|
|
151
|
+
}
|
|
152
|
+
.bbr-stepper .bbr-stepper-description {
|
|
153
|
+
margin-top: 0.25rem;
|
|
154
|
+
font-size: 0.75rem;
|
|
155
|
+
color: hsl(0, 0%, 48%);
|
|
156
|
+
line-height: 1.25;
|
|
157
|
+
}
|
|
158
|
+
.bbr-stepper .bbr-stepper-connector {
|
|
159
|
+
position: absolute;
|
|
160
|
+
top: calc(1.25rem - 1px);
|
|
161
|
+
left: calc(50% + 1.25rem + 0.25rem);
|
|
162
|
+
right: calc(-50% + 1.25rem + 0.25rem);
|
|
163
|
+
height: 2px;
|
|
164
|
+
background: hsl(0, 0%, 86%);
|
|
165
|
+
z-index: 0;
|
|
166
|
+
}
|
|
167
|
+
.bbr-stepper .bbr-stepper-connector.is-completed {
|
|
168
|
+
background: hsl(171, 100%, 41%);
|
|
169
|
+
}
|
|
170
|
+
.bbr-stepper .bbr-stepper-connector.is-hidden {
|
|
171
|
+
display: none;
|
|
172
|
+
}
|
|
173
|
+
.bbr-stepper .bbr-stepper-connector.has-arrow::before {
|
|
174
|
+
content: "";
|
|
175
|
+
position: absolute;
|
|
176
|
+
right: -6px;
|
|
177
|
+
top: 50%;
|
|
178
|
+
transform: translateY(-50%);
|
|
179
|
+
width: 0;
|
|
180
|
+
height: 0;
|
|
181
|
+
border-top: 5px solid transparent;
|
|
182
|
+
border-bottom: 5px solid transparent;
|
|
183
|
+
border-left: 6px solid hsl(0, 0%, 86%);
|
|
184
|
+
z-index: 2;
|
|
185
|
+
}
|
|
186
|
+
.bbr-stepper .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
187
|
+
border-left-color: hsl(171, 100%, 41%);
|
|
188
|
+
}
|
|
189
|
+
.bbr-stepper.is-vertical .bbr-stepper-connector.has-arrow::before {
|
|
190
|
+
right: auto;
|
|
191
|
+
top: auto;
|
|
192
|
+
left: 50%;
|
|
193
|
+
bottom: -6px;
|
|
194
|
+
transform: translateX(-50%);
|
|
195
|
+
border-left: 5px solid transparent;
|
|
196
|
+
border-right: 5px solid transparent;
|
|
197
|
+
border-top: 6px solid hsl(0, 0%, 86%);
|
|
198
|
+
border-bottom: none;
|
|
199
|
+
}
|
|
200
|
+
.bbr-stepper.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
201
|
+
border-top-color: hsl(171, 100%, 41%);
|
|
202
|
+
border-left-color: transparent;
|
|
203
|
+
}
|
|
204
|
+
.bbr-stepper.is-animated .bbr-stepper-connector.is-completed {
|
|
205
|
+
position: relative;
|
|
206
|
+
background: hsl(0, 0%, 86%);
|
|
207
|
+
}
|
|
208
|
+
.bbr-stepper.is-animated .bbr-stepper-connector.is-completed::after {
|
|
209
|
+
content: "";
|
|
210
|
+
position: absolute;
|
|
211
|
+
top: 0;
|
|
212
|
+
left: 0;
|
|
213
|
+
height: 100%;
|
|
214
|
+
background: hsl(171, 100%, 41%);
|
|
215
|
+
animation: stepper-connector-fill 0.5s ease forwards;
|
|
216
|
+
}
|
|
217
|
+
.bbr-stepper.is-animated.is-vertical .bbr-stepper-connector.is-completed::after {
|
|
218
|
+
width: 100%;
|
|
219
|
+
height: 0;
|
|
220
|
+
animation: none;
|
|
221
|
+
}
|
|
222
|
+
@keyframes stepper-connector-fill-vertical {
|
|
223
|
+
from {
|
|
224
|
+
height: 0;
|
|
225
|
+
}
|
|
226
|
+
to {
|
|
227
|
+
height: 100%;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
.bbr-stepper.is-animated.is-vertical .bbr-stepper-connector.is-completed::after {
|
|
231
|
+
animation: stepper-connector-fill-vertical 0.5s ease forwards;
|
|
232
|
+
}
|
|
233
|
+
.bbr-stepper.is-small .bbr-stepper-marker {
|
|
234
|
+
width: 2rem;
|
|
235
|
+
height: 2rem;
|
|
236
|
+
font-size: 0.875rem;
|
|
237
|
+
}
|
|
238
|
+
.bbr-stepper.is-small .bbr-stepper-title {
|
|
239
|
+
font-size: 0.75rem;
|
|
240
|
+
}
|
|
241
|
+
.bbr-stepper.is-small .bbr-stepper-description {
|
|
242
|
+
font-size: 0.625rem;
|
|
243
|
+
}
|
|
244
|
+
.bbr-stepper.is-small .bbr-stepper-connector {
|
|
245
|
+
top: calc(1rem - 1px);
|
|
246
|
+
left: calc(50% + 1rem + 0.25rem);
|
|
247
|
+
right: calc(-50% + 1rem + 0.25rem);
|
|
248
|
+
}
|
|
249
|
+
.bbr-stepper.is-medium .bbr-stepper-marker {
|
|
250
|
+
width: 3rem;
|
|
251
|
+
height: 3rem;
|
|
252
|
+
font-size: 1.25rem;
|
|
253
|
+
}
|
|
254
|
+
.bbr-stepper.is-medium .bbr-stepper-title {
|
|
255
|
+
font-size: 1rem;
|
|
256
|
+
}
|
|
257
|
+
.bbr-stepper.is-medium .bbr-stepper-description {
|
|
258
|
+
font-size: 0.875rem;
|
|
259
|
+
}
|
|
260
|
+
.bbr-stepper.is-medium .bbr-stepper-connector {
|
|
261
|
+
top: calc(1.5rem - 1px);
|
|
262
|
+
left: calc(50% + 1.5rem + 0.25rem);
|
|
263
|
+
right: calc(-50% + 1.5rem + 0.25rem);
|
|
264
|
+
}
|
|
265
|
+
.bbr-stepper.is-large .bbr-stepper-marker {
|
|
266
|
+
width: 3.5rem;
|
|
267
|
+
height: 3.5rem;
|
|
268
|
+
font-size: 1.5rem;
|
|
269
|
+
}
|
|
270
|
+
.bbr-stepper.is-large .bbr-stepper-title {
|
|
271
|
+
font-size: 1.125rem;
|
|
272
|
+
}
|
|
273
|
+
.bbr-stepper.is-large .bbr-stepper-description {
|
|
274
|
+
font-size: 1rem;
|
|
275
|
+
}
|
|
276
|
+
.bbr-stepper.is-large .bbr-stepper-connector {
|
|
277
|
+
top: calc(1.75rem - 1px);
|
|
278
|
+
left: calc(50% + 1.75rem + 0.25rem);
|
|
279
|
+
right: calc(-50% + 1.75rem + 0.25rem);
|
|
280
|
+
}
|
|
281
|
+
.bbr-stepper.is-white .bbr-stepper-step.is-completed .bbr-stepper-marker {
|
|
282
|
+
background: hsl(0, 0%, 100%);
|
|
283
|
+
border-color: hsl(0, 0%, 100%);
|
|
284
|
+
color: hsl(0, 0%, 4%);
|
|
285
|
+
}
|
|
286
|
+
.bbr-stepper.is-white .bbr-stepper-step.is-current .bbr-stepper-marker {
|
|
287
|
+
border-color: hsl(0, 0%, 100%);
|
|
288
|
+
color: hsl(0, 0%, 100%);
|
|
289
|
+
box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
|
|
290
|
+
}
|
|
291
|
+
.bbr-stepper.is-white .bbr-stepper-connector.is-completed {
|
|
292
|
+
background: hsl(0, 0%, 100%);
|
|
293
|
+
}
|
|
294
|
+
.bbr-stepper.is-white .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
295
|
+
border-left-color: hsl(0, 0%, 100%);
|
|
296
|
+
}
|
|
297
|
+
.bbr-stepper.is-white.is-animated .bbr-stepper-connector.is-completed::after {
|
|
298
|
+
background: hsl(0, 0%, 100%);
|
|
299
|
+
}
|
|
300
|
+
.bbr-stepper.is-white.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
301
|
+
border-top-color: hsl(0, 0%, 100%);
|
|
302
|
+
border-left-color: transparent;
|
|
303
|
+
}
|
|
304
|
+
.bbr-stepper.is-black .bbr-stepper-step.is-completed .bbr-stepper-marker {
|
|
305
|
+
background: hsl(0, 0%, 4%);
|
|
306
|
+
border-color: hsl(0, 0%, 4%);
|
|
307
|
+
color: hsl(0, 0%, 100%);
|
|
308
|
+
}
|
|
309
|
+
.bbr-stepper.is-black .bbr-stepper-step.is-current .bbr-stepper-marker {
|
|
310
|
+
border-color: hsl(0, 0%, 4%);
|
|
311
|
+
color: hsl(0, 0%, 4%);
|
|
312
|
+
box-shadow: 0 0 0 4px rgba(10.2, 10.2, 10.2, 0.2);
|
|
313
|
+
}
|
|
314
|
+
.bbr-stepper.is-black .bbr-stepper-connector.is-completed {
|
|
315
|
+
background: hsl(0, 0%, 4%);
|
|
316
|
+
}
|
|
317
|
+
.bbr-stepper.is-black .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
318
|
+
border-left-color: hsl(0, 0%, 4%);
|
|
319
|
+
}
|
|
320
|
+
.bbr-stepper.is-black.is-animated .bbr-stepper-connector.is-completed::after {
|
|
321
|
+
background: hsl(0, 0%, 4%);
|
|
322
|
+
}
|
|
323
|
+
.bbr-stepper.is-black.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
324
|
+
border-top-color: hsl(0, 0%, 4%);
|
|
325
|
+
border-left-color: transparent;
|
|
326
|
+
}
|
|
327
|
+
.bbr-stepper.is-light .bbr-stepper-step.is-completed .bbr-stepper-marker {
|
|
328
|
+
background: hsl(0, 0%, 96%);
|
|
329
|
+
border-color: hsl(0, 0%, 96%);
|
|
330
|
+
color: rgba(0, 0, 0, 0.7);
|
|
331
|
+
}
|
|
332
|
+
.bbr-stepper.is-light .bbr-stepper-step.is-current .bbr-stepper-marker {
|
|
333
|
+
border-color: hsl(0, 0%, 96%);
|
|
334
|
+
color: hsl(0, 0%, 96%);
|
|
335
|
+
box-shadow: 0 0 0 4px rgba(244.8, 244.8, 244.8, 0.2);
|
|
336
|
+
}
|
|
337
|
+
.bbr-stepper.is-light .bbr-stepper-connector.is-completed {
|
|
338
|
+
background: hsl(0, 0%, 96%);
|
|
339
|
+
}
|
|
340
|
+
.bbr-stepper.is-light .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
341
|
+
border-left-color: hsl(0, 0%, 96%);
|
|
342
|
+
}
|
|
343
|
+
.bbr-stepper.is-light.is-animated .bbr-stepper-connector.is-completed::after {
|
|
344
|
+
background: hsl(0, 0%, 96%);
|
|
345
|
+
}
|
|
346
|
+
.bbr-stepper.is-light.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
347
|
+
border-top-color: hsl(0, 0%, 96%);
|
|
348
|
+
border-left-color: transparent;
|
|
349
|
+
}
|
|
350
|
+
.bbr-stepper.is-dark .bbr-stepper-step.is-completed .bbr-stepper-marker {
|
|
351
|
+
background: hsl(0, 0%, 21%);
|
|
352
|
+
border-color: hsl(0, 0%, 21%);
|
|
353
|
+
color: #fff;
|
|
354
|
+
}
|
|
355
|
+
.bbr-stepper.is-dark .bbr-stepper-step.is-current .bbr-stepper-marker {
|
|
356
|
+
border-color: hsl(0, 0%, 21%);
|
|
357
|
+
color: hsl(0, 0%, 21%);
|
|
358
|
+
box-shadow: 0 0 0 4px rgba(53.55, 53.55, 53.55, 0.2);
|
|
359
|
+
}
|
|
360
|
+
.bbr-stepper.is-dark .bbr-stepper-connector.is-completed {
|
|
361
|
+
background: hsl(0, 0%, 21%);
|
|
362
|
+
}
|
|
363
|
+
.bbr-stepper.is-dark .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
364
|
+
border-left-color: hsl(0, 0%, 21%);
|
|
365
|
+
}
|
|
366
|
+
.bbr-stepper.is-dark.is-animated .bbr-stepper-connector.is-completed::after {
|
|
367
|
+
background: hsl(0, 0%, 21%);
|
|
368
|
+
}
|
|
369
|
+
.bbr-stepper.is-dark.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
370
|
+
border-top-color: hsl(0, 0%, 21%);
|
|
371
|
+
border-left-color: transparent;
|
|
372
|
+
}
|
|
373
|
+
.bbr-stepper.is-primary .bbr-stepper-step.is-completed .bbr-stepper-marker {
|
|
374
|
+
background: hsl(171, 100%, 41%);
|
|
375
|
+
border-color: hsl(171, 100%, 41%);
|
|
376
|
+
color: #fff;
|
|
377
|
+
}
|
|
378
|
+
.bbr-stepper.is-primary .bbr-stepper-step.is-current .bbr-stepper-marker {
|
|
379
|
+
border-color: hsl(171, 100%, 41%);
|
|
380
|
+
color: hsl(171, 100%, 41%);
|
|
381
|
+
box-shadow: 0 0 0 4px rgba(0, 209.1, 177.735, 0.2);
|
|
382
|
+
}
|
|
383
|
+
.bbr-stepper.is-primary .bbr-stepper-connector.is-completed {
|
|
384
|
+
background: hsl(171, 100%, 41%);
|
|
385
|
+
}
|
|
386
|
+
.bbr-stepper.is-primary .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
387
|
+
border-left-color: hsl(171, 100%, 41%);
|
|
388
|
+
}
|
|
389
|
+
.bbr-stepper.is-primary.is-animated .bbr-stepper-connector.is-completed::after {
|
|
390
|
+
background: hsl(171, 100%, 41%);
|
|
391
|
+
}
|
|
392
|
+
.bbr-stepper.is-primary.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
393
|
+
border-top-color: hsl(171, 100%, 41%);
|
|
394
|
+
border-left-color: transparent;
|
|
395
|
+
}
|
|
396
|
+
.bbr-stepper.is-link .bbr-stepper-step.is-completed .bbr-stepper-marker {
|
|
397
|
+
background: hsl(229, 53%, 53%);
|
|
398
|
+
border-color: hsl(229, 53%, 53%);
|
|
399
|
+
color: #fff;
|
|
400
|
+
}
|
|
401
|
+
.bbr-stepper.is-link .bbr-stepper-step.is-current .bbr-stepper-marker {
|
|
402
|
+
border-color: hsl(229, 53%, 53%);
|
|
403
|
+
color: hsl(229, 53%, 53%);
|
|
404
|
+
box-shadow: 0 0 0 4px rgba(71.6295, 94.92035, 198.6705, 0.2);
|
|
405
|
+
}
|
|
406
|
+
.bbr-stepper.is-link .bbr-stepper-connector.is-completed {
|
|
407
|
+
background: hsl(229, 53%, 53%);
|
|
408
|
+
}
|
|
409
|
+
.bbr-stepper.is-link .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
410
|
+
border-left-color: hsl(229, 53%, 53%);
|
|
411
|
+
}
|
|
412
|
+
.bbr-stepper.is-link.is-animated .bbr-stepper-connector.is-completed::after {
|
|
413
|
+
background: hsl(229, 53%, 53%);
|
|
414
|
+
}
|
|
415
|
+
.bbr-stepper.is-link.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
416
|
+
border-top-color: hsl(229, 53%, 53%);
|
|
417
|
+
border-left-color: transparent;
|
|
418
|
+
}
|
|
419
|
+
.bbr-stepper.is-info .bbr-stepper-step.is-completed .bbr-stepper-marker {
|
|
420
|
+
background: hsl(207, 61%, 53%);
|
|
421
|
+
border-color: hsl(207, 61%, 53%);
|
|
422
|
+
color: #fff;
|
|
423
|
+
}
|
|
424
|
+
.bbr-stepper.is-info .bbr-stepper-step.is-current .bbr-stepper-marker {
|
|
425
|
+
border-color: hsl(207, 61%, 53%);
|
|
426
|
+
color: hsl(207, 61%, 53%);
|
|
427
|
+
box-shadow: 0 0 0 4px rgba(62.0415, 142.46085, 208.2585, 0.2);
|
|
428
|
+
}
|
|
429
|
+
.bbr-stepper.is-info .bbr-stepper-connector.is-completed {
|
|
430
|
+
background: hsl(207, 61%, 53%);
|
|
431
|
+
}
|
|
432
|
+
.bbr-stepper.is-info .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
433
|
+
border-left-color: hsl(207, 61%, 53%);
|
|
434
|
+
}
|
|
435
|
+
.bbr-stepper.is-info.is-animated .bbr-stepper-connector.is-completed::after {
|
|
436
|
+
background: hsl(207, 61%, 53%);
|
|
437
|
+
}
|
|
438
|
+
.bbr-stepper.is-info.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
439
|
+
border-top-color: hsl(207, 61%, 53%);
|
|
440
|
+
border-left-color: transparent;
|
|
441
|
+
}
|
|
442
|
+
.bbr-stepper.is-success .bbr-stepper-step.is-completed .bbr-stepper-marker {
|
|
443
|
+
background: hsl(153, 53%, 53%);
|
|
444
|
+
border-color: hsl(153, 53%, 53%);
|
|
445
|
+
color: #fff;
|
|
446
|
+
}
|
|
447
|
+
.bbr-stepper.is-success .bbr-stepper-step.is-current .bbr-stepper-marker {
|
|
448
|
+
border-color: hsl(153, 53%, 53%);
|
|
449
|
+
color: hsl(153, 53%, 53%);
|
|
450
|
+
box-shadow: 0 0 0 4px rgba(71.6295, 198.6705, 141.50205, 0.2);
|
|
451
|
+
}
|
|
452
|
+
.bbr-stepper.is-success .bbr-stepper-connector.is-completed {
|
|
453
|
+
background: hsl(153, 53%, 53%);
|
|
454
|
+
}
|
|
455
|
+
.bbr-stepper.is-success .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
456
|
+
border-left-color: hsl(153, 53%, 53%);
|
|
457
|
+
}
|
|
458
|
+
.bbr-stepper.is-success.is-animated .bbr-stepper-connector.is-completed::after {
|
|
459
|
+
background: hsl(153, 53%, 53%);
|
|
460
|
+
}
|
|
461
|
+
.bbr-stepper.is-success.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
462
|
+
border-top-color: hsl(153, 53%, 53%);
|
|
463
|
+
border-left-color: transparent;
|
|
464
|
+
}
|
|
465
|
+
.bbr-stepper.is-warning .bbr-stepper-step.is-completed .bbr-stepper-marker {
|
|
466
|
+
background: hsl(44, 100%, 77%);
|
|
467
|
+
border-color: hsl(44, 100%, 77%);
|
|
468
|
+
color: rgba(0, 0, 0, 0.7);
|
|
469
|
+
}
|
|
470
|
+
.bbr-stepper.is-warning .bbr-stepper-step.is-current .bbr-stepper-marker {
|
|
471
|
+
border-color: hsl(44, 100%, 77%);
|
|
472
|
+
color: hsl(44, 100%, 77%);
|
|
473
|
+
box-shadow: 0 0 0 4px rgba(255, 223.72, 137.7, 0.2);
|
|
474
|
+
}
|
|
475
|
+
.bbr-stepper.is-warning .bbr-stepper-connector.is-completed {
|
|
476
|
+
background: hsl(44, 100%, 77%);
|
|
477
|
+
}
|
|
478
|
+
.bbr-stepper.is-warning .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
479
|
+
border-left-color: hsl(44, 100%, 77%);
|
|
480
|
+
}
|
|
481
|
+
.bbr-stepper.is-warning.is-animated .bbr-stepper-connector.is-completed::after {
|
|
482
|
+
background: hsl(44, 100%, 77%);
|
|
483
|
+
}
|
|
484
|
+
.bbr-stepper.is-warning.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
485
|
+
border-top-color: hsl(44, 100%, 77%);
|
|
486
|
+
border-left-color: transparent;
|
|
487
|
+
}
|
|
488
|
+
.bbr-stepper.is-danger .bbr-stepper-step.is-completed .bbr-stepper-marker {
|
|
489
|
+
background: hsl(348, 86%, 61%);
|
|
490
|
+
border-color: hsl(348, 86%, 61%);
|
|
491
|
+
color: #fff;
|
|
492
|
+
}
|
|
493
|
+
.bbr-stepper.is-danger .bbr-stepper-step.is-current .bbr-stepper-marker {
|
|
494
|
+
border-color: hsl(348, 86%, 61%);
|
|
495
|
+
color: hsl(348, 86%, 61%);
|
|
496
|
+
box-shadow: 0 0 0 4px rgba(241.077, 70.023, 104.2338, 0.2);
|
|
497
|
+
}
|
|
498
|
+
.bbr-stepper.is-danger .bbr-stepper-connector.is-completed {
|
|
499
|
+
background: hsl(348, 86%, 61%);
|
|
500
|
+
}
|
|
501
|
+
.bbr-stepper.is-danger .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
502
|
+
border-left-color: hsl(348, 86%, 61%);
|
|
503
|
+
}
|
|
504
|
+
.bbr-stepper.is-danger.is-animated .bbr-stepper-connector.is-completed::after {
|
|
505
|
+
background: hsl(348, 86%, 61%);
|
|
506
|
+
}
|
|
507
|
+
.bbr-stepper.is-danger.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
|
|
508
|
+
border-top-color: hsl(348, 86%, 61%);
|
|
509
|
+
border-left-color: transparent;
|
|
510
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
table.bbr-table.has-sticky-header thead th {
|
|
2
|
+
position: sticky;
|
|
3
|
+
top: 0.125rem;
|
|
4
|
+
z-index: 1;
|
|
5
|
+
}
|
|
6
|
+
table.bbr-table.has-shadow-bordered-header thead th {
|
|
7
|
+
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
|
|
8
|
+
}
|
|
9
|
+
table.bbr-table.has-borderless-header thead th {
|
|
10
|
+
border: none !important;
|
|
11
|
+
}
|
|
12
|
+
table.bbr-table.has-borderless-header tbody tr:nth-child(1) td {
|
|
13
|
+
border-top: none !important;
|
|
14
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.bbr-tag {
|
|
2
|
+
border: 1px solid transparent;
|
|
3
|
+
transition: border-color 0.15s ease-in-out;
|
|
4
|
+
}
|
|
5
|
+
.bbr-tag.is-clickable {
|
|
6
|
+
cursor: pointer;
|
|
7
|
+
}
|
|
8
|
+
.bbr-tag.is-clickable.is-light:hover {
|
|
9
|
+
border-color: rgba(0, 0, 0, 0.25);
|
|
10
|
+
}
|
|
11
|
+
.bbr-tag.is-clickable.is-light:focus, .bbr-tag.is-clickable.is-light:active {
|
|
12
|
+
border-color: rgba(0, 0, 0, 0.5);
|
|
13
|
+
}
|
|
14
|
+
.bbr-tag.is-clickable:not(.is-light):hover {
|
|
15
|
+
border-color: rgba(0, 0, 0, 0.35);
|
|
16
|
+
}
|
|
17
|
+
.bbr-tag.is-clickable:not(.is-light):focus, .bbr-tag.is-clickable:not(.is-light):active {
|
|
18
|
+
border-color: rgba(0, 0, 0, 0.75);
|
|
19
|
+
}
|