@pinuts/bsr-uikit-relaunch 0.2.60 → 0.2.62
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/index.js +1 -1
- package/dist/items/BSRAddressSelector/BSRAddressButtons.js +1 -1
- package/dist/items/eventWizardItems/EventDatePicker/CalendarToolbar.js +1 -1
- package/dist/items/eventWizardItems/EventDatePicker/Header.js +3 -1
- package/dist/items/eventWizardItems/EventPicker/Components/RadioField.js +1 -1
- package/dist/items/eventWizardItems/FormTitle/FormTitle.js +2 -2
- package/dist/items/eventWizardItems/Intro/Intro.js +1 -1
- package/dist/styles/_form.scss +23 -2
- package/package.json +1 -1
|
@@ -32,7 +32,7 @@ const CalendarToolbar = _ref => {
|
|
|
32
32
|
height: 16,
|
|
33
33
|
stroke: "currentColor"
|
|
34
34
|
}), /*#__PURE__*/_react.default.createElement("span", null, "zur\xFCck")), /*#__PURE__*/_react.default.createElement("h4", {
|
|
35
|
-
className: "rbc-toolbar-label"
|
|
35
|
+
className: "rbc-toolbar-label text-black"
|
|
36
36
|
}, label), /*#__PURE__*/_react.default.createElement(_reactBootstrap.Button, {
|
|
37
37
|
variant: "secondary",
|
|
38
38
|
onClick: navigateNext,
|
|
@@ -20,7 +20,9 @@ const Header = props => {
|
|
|
20
20
|
className: "pi-header d-sm-flex align-items-center p-3 mb-1 mt-4"
|
|
21
21
|
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
22
22
|
className: "w-75"
|
|
23
|
-
}, /*#__PURE__*/_react.default.createElement("h4",
|
|
23
|
+
}, /*#__PURE__*/_react.default.createElement("h4", {
|
|
24
|
+
className: "text-black"
|
|
25
|
+
}, headline)), infoText && /*#__PURE__*/_react.default.createElement(_InfoModal.default, {
|
|
24
26
|
headline: headline,
|
|
25
27
|
infoText: infoText,
|
|
26
28
|
infoButton: infoButton
|
|
@@ -52,7 +52,7 @@ const RadioField = _ref => {
|
|
|
52
52
|
className: "d-sm-flex align-items-center p-3 pl-4",
|
|
53
53
|
htmlFor: inputProps.id
|
|
54
54
|
}, /*#__PURE__*/_react.default.createElement(_HTMLParserSanitized.HTMLParserSanitized, null, header)), hasDescription && /*#__PURE__*/_react.default.createElement("div", {
|
|
55
|
-
className: "h5 mr-4",
|
|
55
|
+
className: "h5 mr-4 ml-auto ",
|
|
56
56
|
id: descriptionId
|
|
57
57
|
}, infoLine1, usedSubtitle && /*#__PURE__*/_react.default.createElement("div", {
|
|
58
58
|
className: "small mt-1"
|
|
@@ -60,11 +60,11 @@ const FormTitle = _ref => {
|
|
|
60
60
|
"aria-describedby": labelId
|
|
61
61
|
}, header), steps && /*#__PURE__*/_react.default.createElement("p", {
|
|
62
62
|
id: labelId,
|
|
63
|
-
className: "pi-steps ml-sm-auto text-sm-right"
|
|
63
|
+
className: "pi-steps ml-sm-auto text-sm-right text-black"
|
|
64
64
|
}, /*#__PURE__*/_react.default.createElement("small", {
|
|
65
65
|
className: "mr-1 mr-sm-0"
|
|
66
66
|
}, "Schritt"), steps.current > 0 && /*#__PURE__*/_react.default.createElement("span", {
|
|
67
|
-
className: "h4 d-inline d-sm-block mt-0"
|
|
67
|
+
className: "h4 d-inline d-sm-block mt-0 text-brick"
|
|
68
68
|
}, `${steps.current} ${steps.total ? `von ${steps.total}` : ''}`))), steps && /*#__PURE__*/_react.default.createElement("div", {
|
|
69
69
|
className: "pi-step-indicator d-flex mb-4"
|
|
70
70
|
}, stepCreator(steps)), errorMsg && /*#__PURE__*/_react.default.createElement(_Alert.default, {
|
|
@@ -19,7 +19,7 @@ const Intro = props => {
|
|
|
19
19
|
}, /*#__PURE__*/_react.default.createElement("h4", {
|
|
20
20
|
className: "d-flex align-items-center justify-content-between"
|
|
21
21
|
}, /*#__PURE__*/_react.default.createElement("span", {
|
|
22
|
-
className: "mr-2 mr-sm-0 text-
|
|
22
|
+
className: "mr-2 mr-sm-0 text-black"
|
|
23
23
|
}, headline), infobadge && /*#__PURE__*/_react.default.createElement("span", {
|
|
24
24
|
className: "badge badge-secondary rounded-pill ml-sm-3 mt-2 mt-sm-0"
|
|
25
25
|
}, infobadge)), /*#__PURE__*/_react.default.createElement("p", null, description));
|
package/dist/styles/_form.scss
CHANGED
|
@@ -607,14 +607,29 @@ fieldset.fieldsetLegend legend, .pi-title {
|
|
|
607
607
|
}
|
|
608
608
|
}
|
|
609
609
|
|
|
610
|
+
div.form-label {
|
|
611
|
+
font-family: $fontfamily-base;
|
|
612
|
+
font-size: $input-label-font-size;
|
|
613
|
+
line-height: $input-label-line-height;
|
|
614
|
+
color: $bsr-black-90;
|
|
615
|
+
font-weight: $fontweight-bold;
|
|
616
|
+
}
|
|
610
617
|
|
|
611
|
-
|
|
618
|
+
|
|
619
|
+
fieldset.formInput:has(.topRow):has(input[type="checkbox"]):not(:has(input[name="agb"])) {
|
|
612
620
|
display: flex;
|
|
613
621
|
flex-direction: row-reverse;
|
|
614
622
|
align-items: baseline;
|
|
615
623
|
justify-content: start;
|
|
616
624
|
gap: $base-gap * 4;
|
|
617
625
|
}
|
|
626
|
+
input[name="agb"] + label {
|
|
627
|
+
font-family: $fontfamily-base;
|
|
628
|
+
font-size: $inputField-font-size !important;
|
|
629
|
+
line-height: $inputField-line-height !important;
|
|
630
|
+
color: $bsr-black-90;
|
|
631
|
+
font-weight: $fontweight-normal;
|
|
632
|
+
}
|
|
618
633
|
input.custom-control-input label.custom-control-label {
|
|
619
634
|
column-gap: $base-gap;
|
|
620
635
|
}
|
|
@@ -629,5 +644,11 @@ input.custom-control-input label.custom-control-label {
|
|
|
629
644
|
}
|
|
630
645
|
|
|
631
646
|
.pi-intro {
|
|
632
|
-
|
|
647
|
+
h2, h3, h4 {
|
|
648
|
+
font-family: $fontfamily-base;
|
|
649
|
+
font-size: $h3-fontsize;
|
|
650
|
+
line-height: $h3-lineheight;
|
|
651
|
+
font-weight: $fontweight-bold;
|
|
652
|
+
color: $bsr-black-90;
|
|
653
|
+
}
|
|
633
654
|
}
|