@pinuts/bsr-uikit-relaunch 0.0.7 → 0.0.8

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 (38) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/index.js +1 -1
  3. package/node_modules/hoist-non-react-statics/CHANGELOG.md +37 -0
  4. package/package.json +1 -1
  5. package/.idea/.name +0 -1
  6. package/.idea/misc.xml +0 -6
  7. package/.idea/modules.xml +0 -8
  8. package/.idea/vcs.xml +0 -6
  9. package/bsr-uikit-relaunch.iml +0 -9
  10. package/dist/styles/_colors.scss +0 -165
  11. package/dist/styles/bootstrap-customized.scss +0 -815
  12. package/dist/styles/fonts/hbs-fonts/hbs-fonts.css +0 -67
  13. package/dist/styles/fonts/hbs-fonts/simple-bold/SimpleHBSTT-Bold.eot +0 -0
  14. package/dist/styles/fonts/hbs-fonts/simple-bold/SimpleHBSTT-Bold.svg +0 -264
  15. package/dist/styles/fonts/hbs-fonts/simple-bold/SimpleHBSTT-Bold.ttf +0 -0
  16. package/dist/styles/fonts/hbs-fonts/simple-bold/SimpleHBSTT-Bold.woff +0 -0
  17. package/dist/styles/fonts/hbs-fonts/univers/1449347/1f2c3faa-231e-4e71-aba4-b1adb03e0322.svg +0 -4846
  18. package/dist/styles/fonts/hbs-fonts/univers/1449347/51a2e8ba-97c4-47a9-af92-e8b379eeddbd.eot +0 -0
  19. package/dist/styles/fonts/hbs-fonts/univers/1449347/77019bfb-2faa-487f-97aa-b498678dc990.ttf +0 -0
  20. package/dist/styles/fonts/hbs-fonts/univers/1449347/89420d17-2c68-4bb3-b4d4-373b0d0f016b.woff2 +0 -0
  21. package/dist/styles/fonts/hbs-fonts/univers/1449347/e79b121c-bda4-4092-a565-1c29b272ef18.woff +0 -0
  22. package/dist/styles/fonts/hbs-fonts/univers/1449355/6baa7b6e-6971-4b5f-8129-8630113d8cb7.eot +0 -0
  23. package/dist/styles/fonts/hbs-fonts/univers/1449355/aab88c6b-6b75-42f0-aec5-74a5c4ed199d.woff2 +0 -0
  24. package/dist/styles/fonts/hbs-fonts/univers/1449355/ac6c8f47-2d16-43de-96c6-4526ab446296.woff +0 -0
  25. package/dist/styles/fonts/hbs-fonts/univers/1449355/cc2006cf-463d-41db-88b0-24bf58fdf832.ttf +0 -0
  26. package/dist/styles/fonts/hbs-fonts/univers/1449355/f6946e91-a2c4-4793-bcb2-b617d23b3b80.svg +0 -5216
  27. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449383/1df6de95-3b72-4134-8e0f-f250931b1cb1.woff +0 -0
  28. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449383/27bd8c18-1ca0-4a74-a175-108571bab2fc.eot +0 -0
  29. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449383/5667db2e-a3c3-408f-ad82-3ca721a0e2e7.svg +0 -4807
  30. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449383/8282dfe6-2f66-4a8e-bc65-669a3066eee8.ttf +0 -0
  31. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449383/a92a459a-dc32-498f-b2dc-b761713792f4.woff2 +0 -0
  32. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449391/14cd37b6-7bde-488e-bbba-17c5046ee4c3.svg +0 -4666
  33. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449391/308dd9a4-aea8-4532-8c6d-a415a35f0015.woff2 +0 -0
  34. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449391/4414ced7-592d-4fdc-8521-8bf095659b6e.eot +0 -0
  35. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449391/9e1c34e4-257a-478b-9d35-84e680e8d373.ttf +0 -0
  36. package/dist/styles/fonts/hbs-fonts/univers-condensed/1449391/9f5abf71-fdd9-408f-b075-7a8a1b7c9a6e.woff +0 -0
  37. package/dist/styles/module-variables.scss +0 -13
  38. package/dist/styles/variables.scss +0 -75
@@ -1,815 +0,0 @@
1
- $white-color-background-colors: (
2
- 'primary',
3
- 'warning',
4
- 'danger',
5
- 'blue',
6
- 'dark',
7
- 'text-color',
8
- 'rot',
9
- 'orange',
10
- 'pink',
11
- 'lila',
12
- 'tuerkis',
13
- 'blau',
14
- 'sand',
15
- 'schwarz',
16
- );
17
-
18
- // Farben der Buttons festlegen
19
- @each $color, $value in $theme-colors {
20
- .btn-#{$color} {
21
-
22
- @if index($white-color-background-colors, $color) {
23
- @include button-variant(
24
- $value,
25
- $value,
26
- $color: white,
27
- $hover-background: shade-color($value, 10%),
28
- $hover-border: shade-color($value, 10%),
29
- $hover-color: white,
30
- $active-background: shade-color($value, 10%),
31
- $active-border: shade-color($value, 10%),
32
- $active-color: white,
33
- $disabled-color: white,
34
- );
35
- } @else {
36
- @include button-variant(
37
- $value,
38
- $value,
39
- $hover-background: shade-color($value, 10%),
40
- $hover-border: shade-color($value, 10%),
41
- $active-background: shade-color($value, 10%),
42
- $active-border: shade-color($value, 10%)
43
- );
44
- }
45
- }
46
- }
47
-
48
- @import './_colors.scss';
49
- @import './variables.scss';
50
- @import "~bootstrap/scss/root";
51
-
52
- // Grid
53
- $grid-columns: 12 !default;
54
- $grid-gutter-width: 30px !default;
55
-
56
- $grid-breakpoints: (
57
- xs: 0,
58
- sm: 540px,
59
- md: 720px,
60
- lg: 960px,
61
- xl: 1140px
62
- );
63
-
64
- $container-max-widths: (
65
- sm: 540px,
66
- md: 720px,
67
- lg: 960px,
68
- xl: 1140px,
69
- );
70
-
71
- $container-min-widths: (
72
- md: 541px,
73
- lg: 721px,
74
- xl: 961px,
75
- );
76
-
77
- $body-color: $hbs-schwarz;
78
-
79
- $lead-font-size: 16px;
80
- $lead-font-weight: 400;
81
- $small-font-size: 14px;
82
-
83
- $headings-font-family: $font-simplebold !important;
84
- $headings-color: $primary;
85
-
86
- $screen-xs-max: 767px;
87
- $screen-sm-min: 768px;
88
- $screen-sm-max: 991px;
89
- $screen-md-min: 992px;
90
- $screen-md-max: 1179px;
91
- $screen-lg-min: 1180px;
92
- $screen-lg-max: 1599px;
93
- $screen-xl-min: 1600px;
94
-
95
- $h1-font-size: 44px;
96
- $h2-font-size: 32px;
97
- $h3-font-size: 18px;
98
- $h4-font-size: 18px;
99
-
100
-
101
- //background-colors
102
-
103
- .bg-success-lightest {
104
- background-color: $hbs-success-lightest;
105
- }
106
-
107
- .bg-danger-lightest {
108
- background-color: $hbs-danger-lightest;
109
- }
110
-
111
- .bg-warning-lightest {
112
- background-color: $hbs-warning-lightest;
113
- }
114
-
115
- .bg-info-lightest {
116
- background-color: $hbs-info-lightest;
117
- }
118
-
119
- // Ouline Styles
120
- .outline-tuerkis {
121
- background-color: $hbs-white;
122
- border: 1px solid $hbs-tuerkis !important;
123
- color: $hbs-tuerkis !important;
124
- }
125
-
126
- .outline-primary {
127
- background-color: $hbs-white;
128
- border: 1px solid $primary !important;
129
- color: $primary !important;
130
- }
131
-
132
- .outline-orange {
133
- background-color: $hbs-white;
134
- border: 1px solid $hbs-orange !important;
135
- color: $hbs-orange !important;
136
- }
137
-
138
- .outline-blau, .outline-blue {
139
- background-color: $hbs-white;
140
- border: 1px solid $hbs-blau !important;
141
- color: $hbs-blau !important;
142
- }
143
-
144
- .outline-success {
145
- background-color: $hbs-white;
146
- border: 1px solid $success !important;
147
- color: $success !important;
148
- }
149
-
150
- .outline-lila {
151
- background-color: $hbs-white;
152
- border: 1px solid $hbs-lila !important;
153
- color: $hbs-lila !important;
154
- }
155
-
156
- .outline-secondary {
157
- background-color: $hbs-white;
158
- border: 1px solid $secondary !important;
159
- color: $secondary !important;
160
- }
161
-
162
- .outline-schwarz-50 {
163
- background-color: $hbs-white;
164
- border: 1px solid $hbs-schwarz-50 !important;
165
- color: $hbs-schwarz-50 !important;
166
- }
167
-
168
- // Filled Styles
169
- .filled-tuerkis {
170
- background-color: $hbs-tuerkis;
171
- border: 1px solid $hbs-tuerkis !important;
172
- color: $hbs-white !important;
173
- font-weight: 400 !important;
174
- }
175
-
176
- .filled-primary {
177
- background-color: $primary;
178
- border: 1px solid $primary !important;
179
- color: $hbs-white !important;
180
- font-weight: 400 !important;
181
- }
182
-
183
- .filled-orange {
184
- background-color: $hbs-orange;
185
- border: 1px solid $hbs-orange !important;
186
- color: $hbs-white !important;
187
- font-weight: 400 !important;
188
- }
189
-
190
- .filled-blue {
191
- background-color: $hbs-blau;
192
- border: 1px solid $hbs-blau !important;
193
- color: $hbs-white !important;
194
- font-weight: 400 !important;
195
- }
196
-
197
- .filled-lila {
198
- background-color: $hbs-lila;
199
- border: 1px solid $hbs-lila !important;
200
- color: $hbs-white !important;
201
- font-weight: 400 !important;
202
- }
203
-
204
- .filled-success {
205
- background-color: $success;
206
- border: 1px solid $success !important;
207
- color: $hbs-white !important;
208
- font-weight: 400 !important;
209
- }
210
-
211
- .filled-schwarz-50 {
212
- background-color: $hbs-schwarz-50;
213
- border: 1px solid $hbs-schwarz-50 !important;
214
- color: $hbs-white !important;
215
- font-weight: 400 !important;
216
- }
217
-
218
- // form elements:
219
- .form-control, .form-select {
220
- font-size: 18px;
221
- border-radius: 1px;
222
- border-width: 1px;
223
- border-color: $hbs-schwarz !important;
224
- box-shadow: none;
225
- }
226
-
227
- .form-control:focus,.form-select:focus-visible {
228
- box-shadow: $focus-shadow;
229
- }
230
-
231
- .was-validated .form-control:invalid, .form-control.is-invalid, .form-select.is-invalid,
232
- .is-invalid .form-control, .is-invalid .form-select {
233
- border-color: $hbs-pink !important;
234
- background-image: none !important;
235
- color: $hbs-schwarz !important;
236
- padding-right: 0rem !important;
237
- }
238
-
239
- .form-control.is-invalid:focus, .is-invalid .form-control:focus {
240
- // input-text
241
- font-weight: 400;
242
- font-size: 18px;
243
- line-height: 133%;
244
- box-shadow: $focus-shadow-danger;
245
- }
246
-
247
- // input-groups
248
- .form-control.input-group {
249
- padding: 0;
250
-
251
- &:focus-within {
252
- box-shadow: $focus-shadow;
253
-
254
- &.is-invalid {
255
- box-shadow: $focus-shadow-danger;
256
- }
257
-
258
- .form-control:focus,.form-select:focus-visible {
259
- box-shadow: none;
260
- }
261
- }
262
- }
263
-
264
- .input-group-text {
265
- border: none;
266
-
267
- }
268
-
269
- .input-group .form-control {
270
- border: none;
271
- }
272
-
273
- .invalid-feedback {
274
- color: $hbs-pink;
275
- }
276
-
277
- .read-only,.read-only:focus {
278
- background-color: $hbs-schwarz-10;
279
- // background-image: url(LOCK ICON) FIXME
280
- }
281
-
282
- //Buttons
283
- .btn, button {
284
- display: flex;
285
- align-items: center;
286
- justify-content: center;
287
- border-radius: $border-radius !important;
288
- font-style: normal;
289
- line-height: 133%;
290
- font-size: 18px;
291
- font-weight: 400;
292
- height: 44px;
293
- padding: 10px 32px;
294
- }
295
-
296
- .btn:focus, .btn:focus-visible, button:focus, button:focus-visible {
297
- box-shadow: $focus-shadow;
298
- }
299
-
300
- .btn-rounded {
301
- border-radius: 22px !important;
302
- padding: 16px;
303
- }
304
-
305
- .btn-circular {
306
- border-radius: 22px !important;
307
- padding: 10px;
308
- width: 44px;
309
- height: 44px;
310
- }
311
-
312
- .btn-link {
313
- text-decoration: none;
314
- }
315
-
316
- // Badge
317
- .badge {
318
- border-radius: $border-radius-badge;
319
- --bs-badge-padding-x: 8px;
320
- --bs-badge-padding-y: 4px;
321
-
322
- font-size: 15px;
323
- font-weight: 700;
324
- letter-spacing: 1px;
325
- line-height: 107%;
326
- }
327
-
328
- .form-check-label {
329
- font-weight: 400 !important;
330
- font-size: 18px !important;
331
- line-height: 133% !important;
332
- }
333
-
334
- // ToggleSwitchField
335
- .form-select.is-invalid, .is-invalid .form-select {
336
- color: $hbs-schwarz !important;
337
- &:focus {
338
- box-shadow: $focus-shadow-danger;
339
- }
340
- }
341
- .form-check-input[type="checkbox"] {
342
- background-color: $hbs-tuerkis-30 !important;
343
- background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27white%27 stroke-width=%270.5%27 stroke=%27none%27/%3e%3c/svg%3e") !important;
344
- &:checked {
345
- border: none;
346
- }
347
- }
348
-
349
- // RadioButtons
350
- .form-check-input[type="radio"] {
351
- border: 1px solid $hbs-schwarz !important;
352
- padding-right: 1px;
353
- border-radius: 12px;
354
- &:focus {
355
- border: 1.2px solid $hbs-blau !important;
356
-
357
- }
358
- &:checked {
359
- border: none !important;
360
- border-radius: 12px;
361
- }
362
- }
363
-
364
- .likert-scale-wrapper {
365
- .likert-li {
366
- position: relative;
367
- display: flex;
368
- align-items: center;
369
- justify-content: center;
370
-
371
- label {
372
- position: absolute;
373
- display: flex;
374
- align-items: center;
375
- justify-content: center;
376
- top: 0;
377
- left: 0;
378
- height: 100%;
379
- padding: 0 !important;
380
- margin: 0;
381
- cursor: pointer;
382
- }
383
-
384
- .form-check-input[type="radio"].likert-scale {
385
- margin: 0;
386
- padding: 1rem;
387
- border-radius: 50%;
388
- background-color: $hbs-tuerkis-10 !important;
389
- border: 1px solid $hbs-tuerkis-40 !important;
390
-
391
- &:checked {
392
- background-color:$hbs-blau !important;
393
- background-image: none;
394
- }
395
- }
396
-
397
- .form-check-input[type="radio"].likert-scale:checked + label {
398
- color: $hbs-white !important;
399
- }
400
- }
401
- }
402
-
403
- // classic Checkboxes
404
- .form-check-input[type=checkbox]:not(.toggle) {
405
- height: 1.5rem;
406
- width: 1.5rem;
407
- padding-right: 1px;
408
- &:checked {
409
- background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
410
- height: 1.5rem;
411
- width: 1.5rem;
412
- }
413
- &:not(:checked) {
414
- border: 1.2px solid $hbs-schwarz !important;
415
- border-radius: 3.6px !important;
416
- background-color: $hbs-white !important;
417
- }
418
- &:focus:not(:checked) {
419
- border: 1.2px solid $hbs-blau !important;
420
- }
421
-
422
- }
423
-
424
- .static-alert {
425
- font-size: 20px;
426
- line-height: 150%;
427
-
428
- .static-alert-col {
429
- max-width: 770px;
430
- }
431
- }
432
-
433
- .toast-message {
434
- width: 312px;
435
- padding: 16px 16px 16px 24px;
436
- font-size: 16px;
437
- font-weight: 700;
438
- box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
439
- }
440
-
441
- // DropDownMenu
442
-
443
- .dropdown-menu {
444
- padding: 0;
445
- padding-top: 1rem;
446
- padding-bottom: 1rem;
447
- width: 100%;
448
- border-radius: 0;
449
- border: none;
450
- box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.15);
451
-
452
- .dropdown-item {
453
- padding: 0;
454
- background-color: white !important;
455
-
456
- .dropdown-btn {
457
- display: flex;
458
- justify-content: flex-start;
459
- background-color: white !important;
460
- width: 100%;
461
- border: none;
462
- }
463
-
464
- .dropdown-btn:hover {
465
- background-color: $hbs-tuerkis-20 !important;
466
- outline: none !important;
467
- }
468
-
469
- .dropdown-btn:focus, .dropdown-btn:focus-visible {
470
- background-color: $hbs-tuerkis-20 !important;
471
- outline: none !important;
472
- box-shadow: inset 0px 0px 0px 2px rgba($hbs-blau, 0.35);
473
- border-radius: 1px;
474
- }
475
-
476
- .dropdown-btn.active {
477
- background-color:rgba(95, 187, 201, 0.3) !important;
478
- outline: none !important;
479
- box-shadow: none;
480
- }
481
-
482
- .dropdown-btn.active:focus, .dropdown-btn.active:focus-visible {
483
- box-shadow: inset 0px 0px 0px 2px rgba($hbs-blau, 0.35);
484
- border-radius: 1px;
485
- }
486
- }
487
-
488
- }
489
-
490
- .toast-body {
491
- padding-right: 18px;
492
- }
493
-
494
- .toast-message .btn-close {
495
- font-size: 12px;
496
- padding: 6px;
497
- }
498
-
499
- // Modal adjustments
500
- .modal-header {
501
- border-bottom: none;
502
- padding-top: 3rem;
503
- display: flex;
504
- justify-content: center;
505
- align-items: center;
506
- margin-bottom: 2rem;
507
- }
508
-
509
- .modal-body {
510
- border-bottom: none;
511
- padding-right: 5rem;
512
- padding-left: 5rem;
513
- }
514
-
515
- .modal-footer {
516
- padding-bottom: 3rem;
517
- border-top: none;
518
- display: flex;
519
- justify-content: center;
520
- }
521
-
522
- .modal-backdrop {
523
- background-color: $hbs-blau-20;
524
- background: rgba($hbs-blau, 0.8);
525
- backdrop-filter: blur(10px) !important;
526
- -webkit-backdrop-filter: blur(10px);
527
- }
528
-
529
- .modal-content {
530
- /* White */
531
- background: #FFFFFF;
532
- /* Dropdown Shadow */
533
- box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
534
- border-radius: 0;
535
- }
536
-
537
- // Further Custom Styles
538
- #root {
539
- overflow-x: hidden;
540
- }
541
-
542
- .bg-body {
543
- background-color: $hbs-tuerkis-20 !important;
544
- }
545
-
546
-
547
- header, body, footer {
548
- font-family: $font-univers-cd !important;
549
- font-style: normal;
550
- color: $hbs-schwarz;
551
- font-weight: 400;
552
- line-height: 125%;
553
- }
554
-
555
- h1, h2, h3, h4 {
556
- color: $primary !important;
557
- font-family: $font-simplebold !important;
558
- font-weight: 700;
559
- line-height: 110%;
560
- font-style: normal;
561
- text-transform: uppercase;
562
- }
563
-
564
- h1 {
565
- font-size: 32px;
566
- @include media-breakpoint-up(lg) {
567
- font-size: 44px;
568
- }
569
- }
570
-
571
- h2 {
572
- font-size: 24px;
573
- @include media-breakpoint-up(lg) {
574
- font-size: 32px;
575
- }
576
- }
577
-
578
- h3 {
579
- font-size: 20px;
580
- @include media-breakpoint-up(lg) {
581
- font-size: 24px;
582
- }
583
- }
584
-
585
- h4 {
586
- font-size: 18px;
587
- }
588
-
589
- h5 {
590
- font-style: normal;
591
- font-weight: 700;
592
- font-size: 18px;
593
- color: $hbs-schwarz;
594
- }
595
-
596
- a:focus, a:focus-visible {
597
- box-shadow: $focus-shadow !important;
598
- outline: none !important;
599
- }
600
-
601
- // Text
602
-
603
- .body-text-larger {
604
- font-size: 20px !important;
605
- }
606
-
607
- p.body-text-large {
608
- font-size: 18px !important;
609
- }
610
-
611
- .body-text-medium {
612
- font-size: 16px;
613
- }
614
-
615
- .body-text-large-bold {
616
- font-size: 18px;
617
- font-weight: 700;
618
- }
619
-
620
- .body-text-larger-bold {
621
- font-size: 20px !important;
622
- font-weight: 700;
623
- }
624
-
625
- .body-text-bold {
626
- font-size: 16px;
627
- font-weight: 700;
628
- }
629
-
630
- p {
631
- font-size: 16px;
632
- line-height: 150%;
633
- }
634
-
635
- .h1-subtitle {
636
- text-transform: none;
637
- font-family: $font-univers-cd !important;
638
- font-size: 30px;
639
- line-height: 125%;
640
- color: $hbs-schwarz;
641
- }
642
-
643
- .description {
644
- font-family: $font-univers-cd !important;
645
- font-weight: 400 !important;
646
- font-size: 14px !important;
647
- line-height: 128.5% !important;
648
- }
649
-
650
- .is-invalid {
651
- color: $hbs-pink !important;
652
- a.form-label {
653
- color: $hbs-pink;
654
- text-decoration: none;
655
- font-weight: 400 !important;
656
- }
657
- }
658
-
659
- label, .label, .form-label, .form-label-legend {
660
- font-family: $font-univers-cd !important;
661
- font-weight: 700 !important;
662
- font-size: 16px;
663
- line-height: 125%;
664
- margin-bottom: 0.25rem;
665
- margin-top: 0.4rem;
666
- }
667
-
668
- .form-label-legend {
669
- float: inherit !important;
670
- }
671
-
672
- .helper-text {
673
- font-family: $font-univers-cd !important;
674
- font-size: 14px;
675
- line-height: 128,5%;
676
- color: $hbs-schwarz-60;
677
- display: flex;
678
- flex-direction: row;
679
- align-items: center;
680
- }
681
-
682
- .error-text {
683
- font-size: 14px;
684
- line-height: 128,5%;
685
- color: $hbs-pink;
686
- }
687
-
688
- .validationIconWrap {
689
- margin-right: 0.3rem ;
690
- padding-bottom: 0.2rem;
691
- }
692
-
693
- .input-text {
694
- font-weight: 400;
695
- font-size: 18px;
696
- line-height: 133%;
697
- }
698
-
699
- .link-text-large {
700
- font-weight: 400;
701
- font-size: 18px;
702
- line-height: 128.5%;
703
- }
704
-
705
- .link-text-medium {
706
- font-weight: 400;
707
- font-size: 16px;
708
- line-height: 125%;
709
- }
710
-
711
- // Inputs
712
- input, select {
713
- width: auto;
714
- height: $input-height;
715
-
716
- border-radius: $input-border-radius;
717
- outline: $border-dark !important;
718
- border : 1px solid $hbs-schwarz;
719
-
720
- padding-left: 0.75rem;
721
- padding-right: 0.75rem;
722
-
723
- font-family: $font-univers-cd !important;
724
- font-style: normal;
725
- // input-text
726
- font-weight: 400;
727
- font-size: 18px;
728
- line-height: 133%;
729
- }
730
-
731
- label, label.is-invalid, .is-invalid label {
732
- font-family: $font-univers-cd !important;
733
- font-style: normal;
734
- font-weight: 700;
735
- font-size: 16px;
736
- line-height: 125% !important;
737
- align-self: stretch;
738
- border-color: $hbs-pink !important;
739
- }
740
-
741
- input:focus-visible, input[type=checkbox]:focus, input[type=radio]:focus {
742
- box-shadow: $focus-shadow;
743
- border-color: $border-dark !important;
744
- }
745
-
746
- // Checkbox
747
- input[type=checkbox] {
748
- border-radius: $border-radius-square;
749
- }
750
-
751
- .form-check-inline {
752
- display: inline-flex;
753
- }
754
-
755
- input[type=checkbox], input[type=radio] {
756
- background-color: white !important;
757
- width: 24px;
758
- height: 24px;
759
- border: $border-dark !important;
760
- }
761
-
762
- input[type=checkbox]:checked, input[type=radio]:checked {
763
- // -webkit-appearance: none;
764
- // -moz-appearance: none;
765
- background-color: $hbs-blau !important;
766
- color: white !important
767
- }
768
-
769
- // Number input
770
- input[type=number] {
771
- text-align: center;
772
- height: $input-height !important;
773
- }
774
-
775
- .progress {
776
- --bs-progress-height: 0.6rem;
777
- --bs-progress-font-size: 0.75rem;
778
- --bs-progress-bg: ;
779
- --bs-progress-border-radius: 10px;
780
- --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
781
- --bs-progress-bar-color: $weiss !important;
782
- --bs-progress-bar-bg: $rot !important;
783
- --bs-progress-bar-transition: width 0.6s ease;
784
- }
785
-
786
- .sr-only {
787
- position: absolute;
788
- width: 1px;
789
- height: 1px;
790
- padding: 0;
791
- margin: -1px;
792
- overflow: hidden;
793
- clip: rect(0,0,0,0);
794
- border: 0;
795
- }
796
-
797
- hr {
798
- margin: 1rem 0;
799
- color: inherit;
800
- border: 0;
801
- border-top: 2px solid $hbs-tuerkis !important;
802
- opacity: 0.25;
803
- }
804
-
805
- // TODO: Überprüfen, ob das weg kann
806
- // ul,ol {
807
- // padding: 0;
808
- // margin: 0;
809
- // padding-left: 0rem !important;
810
- // padding-inline-start: none;
811
- // }
812
-
813
- .flex-fill {
814
- min-width: 0;
815
- }