@riverbankcms/sdk 0.60.0 → 0.60.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/README.md +20 -3
- package/dist/_dts/api/src/bookingManagementEndpoints.d.ts +1 -3
- package/dist/_dts/api/src/bookingRecords.d.ts +1 -0
- package/dist/_dts/api/src/endpoints.d.ts +1 -1
- package/dist/_dts/billing/src/plans/types.d.ts +27 -0
- package/dist/_dts/blocks/src/system/blocks/events/event-calendar.d.ts +1 -0
- package/dist/_dts/blocks/src/system/runtime/components/registry.client.d.ts +173 -2
- package/dist/_dts/blocks/src/system/runtime/components/runtime-backed-blocks.d.ts +24 -2
- package/dist/_dts/blocks/src/system/runtime/header/shared.d.ts +1 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/booking-form.client.d.ts +1 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/events/shared/AgendaEventCard.d.ts +2 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/events/shared/DayEventsModal.d.ts +2 -1
- package/dist/_dts/blocks/src/system/runtime/nodes/events/shared/EventDetailModal.d.ts +2 -1
- package/dist/_dts/blocks/src/system/runtime/nodes/events/shared/EventModals.d.ts +2 -1
- package/dist/_dts/blocks/src/system/runtime/nodes/events/shared/WeekAgendaView.d.ts +1 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/events/shared/WeekTimetableView.d.ts +1 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/events/shared/eventCapacity.d.ts +16 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/events/shared/timetableModel.d.ts +2 -0
- package/dist/_dts/content-editor/src/index.d.ts +2 -2
- package/dist/_dts/content-editor/src/primitives/shared/activePreviewField.d.ts +9 -0
- package/dist/_dts/content-editor/src/primitives/shared/index.d.ts +1 -0
- package/dist/_dts/content-editor/src/ui/editorUiStore.d.ts +10 -0
- package/dist/_dts/editor-blocks/src/BlockEditor.d.ts +3 -0
- package/dist/_dts/editor-blocks/src/BlockForm.d.ts +4 -0
- package/dist/_dts/editor-blocks/src/block-editor/BlockCard.d.ts +8 -5
- package/dist/_dts/editor-blocks/src/block-editor/BlockCardHeader.d.ts +7 -5
- package/dist/_dts/editor-blocks/src/block-editor/SortableBlockItem.d.ts +2 -0
- package/dist/_dts/editor-blocks/src/block-editor/reorderControlMode.d.ts +3 -0
- package/dist/_dts/editor-blocks/src/block-editor/types.d.ts +4 -0
- package/dist/_dts/media-react/src/hooks/useApiMediaUploader.d.ts +14 -0
- package/dist/_dts/media-react/src/index.d.ts +1 -1
- package/dist/_dts/preview-next/src/client/index.d.ts +2 -0
- package/dist/_dts/preview-next/src/client/preview/PageDesignEditorStateContext.d.ts +11 -28
- package/dist/_dts/preview-next/src/client/preview/PreviewEditorUI.d.ts +1 -1
- package/dist/_dts/preview-next/src/client/preview/previewChromeSurface.d.ts +12 -0
- package/dist/_dts/preview-next/src/client/preview/previewCustomizeHistory.d.ts +41 -0
- package/dist/_dts/preview-next/src/client/preview/previewCustomizeRuntimePatch.d.ts +15 -0
- package/dist/_dts/preview-next/src/client/preview/previewCustomizeWorkflowState.d.ts +106 -0
- package/dist/_dts/preview-next/src/client/preview/previewUndoDomains.d.ts +34 -0
- package/dist/_dts/preview-next/src/client/preview/sidebarTabPreference.d.ts +2 -1
- package/dist/_dts/preview-next/src/client/preview/useOnboardingConfirmationCheck.d.ts +4 -9
- package/dist/_dts/preview-next/src/constants.d.ts +0 -1
- package/dist/_dts/preview-next/src/index.d.ts +1 -0
- package/dist/_dts/preview-next/src/onboarding-preview-planner.d.ts +89 -0
- package/dist/_dts/preview-next/src/route-contract.d.ts +37 -0
- package/dist/_dts/sdk/src/rendering/components/Block.d.ts +7 -76
- package/dist/_dts/sdk/src/rendering/components/Block.server.d.ts +9 -0
- package/dist/_dts/sdk/src/rendering/components/Block.shared.d.ts +78 -0
- package/dist/_dts/sdk/src/rendering/components/Layout.d.ts +5 -5
- package/dist/_dts/sdk/src/rendering/server.d.ts +2 -2
- package/dist/_dts/sdk/src/version.d.ts +1 -1
- package/dist/_dts/theme-core/src/generated/containerResponsiveThemeCss.d.ts +1 -1
- package/dist/_dts/theme-core/src/index.d.ts +17 -16
- package/dist/_dts/theme-core/src/responsiveDisplay.d.ts +23 -0
- package/dist/_dts/theme-core/src/responsiveMode.d.ts +21 -0
- package/dist/_dts/theme-core/src/site-styles/index.d.ts +1 -0
- package/dist/_dts/theme-core/src/site-styles/pageDesignEditorErrors.d.ts +1 -0
- package/dist/_dts/ui/src/command-multi-select.d.ts +2 -2
- package/dist/cli/index.mjs +120 -40
- package/dist/client/bookings.mjs +27 -0
- package/dist/client/client.mjs +889 -497
- package/dist/client/hooks.mjs +61 -21
- package/dist/client/rendering/client.mjs +319 -128
- package/dist/client/rendering/islands.mjs +122 -44
- package/dist/client/rendering.mjs +959 -486
- package/dist/preview-next/before-render.mjs +5525 -0
- package/dist/preview-next/client/runtime.mjs +104162 -102561
- package/dist/preview-next/constants.mjs +0 -2
- package/dist/preview-next/index.mjs +0 -2
- package/dist/preview-next/middleware.mjs +5535 -1
- package/dist/server/components.mjs +7880 -7522
- package/dist/server/config-validation.mjs +61 -21
- package/dist/server/config.mjs +61 -21
- package/dist/server/data.mjs +61 -21
- package/dist/server/index.mjs +2 -2
- package/dist/server/next.mjs +783 -429
- package/dist/server/page-converter.mjs +60 -20
- package/dist/server/prebuild.mjs +1 -1
- package/dist/server/rendering/server.mjs +2461 -837
- package/dist/server/rendering.mjs +9276 -8840
- package/dist/server/routing.mjs +102 -39
- package/dist/server/server.mjs +62 -22
- package/dist/server/theme-bridge.mjs +639 -358
- package/dist/styles/index.css +343 -299
- package/package.json +1 -1
- package/dist/_dts/preview-next/src/client/blocks/runOptimisticCustomizeAction.d.ts +0 -21
|
@@ -2052,6 +2052,44 @@ function escapeStyleContent(css) {
|
|
|
2052
2052
|
// ../theme-core/src/responsiveMode.ts
|
|
2053
2053
|
var DEFAULT_THEME_RESPONSIVE_MODE = "viewport";
|
|
2054
2054
|
var THEME_RESPONSIVE_CONTAINER_NAME = "rb-site";
|
|
2055
|
+
var THEME_RESPONSIVE_MODE_ATTR = "data-rb-responsive-mode";
|
|
2056
|
+
function getResponsiveScopeSpec(mode = DEFAULT_THEME_RESPONSIVE_MODE) {
|
|
2057
|
+
if (mode === "container") {
|
|
2058
|
+
return {
|
|
2059
|
+
kind: "container",
|
|
2060
|
+
selector: `[${THEME_RESPONSIVE_MODE_ATTR}="container"]`,
|
|
2061
|
+
containerName: THEME_RESPONSIVE_CONTAINER_NAME
|
|
2062
|
+
};
|
|
2063
|
+
}
|
|
2064
|
+
return {
|
|
2065
|
+
kind: "viewport",
|
|
2066
|
+
selector: `[${THEME_RESPONSIVE_MODE_ATTR}="viewport"]`
|
|
2067
|
+
};
|
|
2068
|
+
}
|
|
2069
|
+
function escapeRegExp(value) {
|
|
2070
|
+
return value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
2071
|
+
}
|
|
2072
|
+
var RESPONSIVE_SCOPE_RULE_PATTERN = new RegExp(
|
|
2073
|
+
buildResponsiveScopeRulePatternSource(),
|
|
2074
|
+
"g"
|
|
2075
|
+
);
|
|
2076
|
+
var RESPONSIVE_SCOPE_RULE_AT_PATTERN = new RegExp(
|
|
2077
|
+
buildResponsiveScopeRulePatternSource(),
|
|
2078
|
+
"y"
|
|
2079
|
+
);
|
|
2080
|
+
function buildResponsiveScopeRulePatternSource() {
|
|
2081
|
+
return [
|
|
2082
|
+
"@scope",
|
|
2083
|
+
"\\(\\[",
|
|
2084
|
+
escapeRegExp(THEME_RESPONSIVE_MODE_ATTR),
|
|
2085
|
+
'="(?:viewport|container)"\\]\\)',
|
|
2086
|
+
"to",
|
|
2087
|
+
"\\((?::scope )?\\[",
|
|
2088
|
+
escapeRegExp(THEME_RESPONSIVE_MODE_ATTR),
|
|
2089
|
+
"\\]\\)",
|
|
2090
|
+
"\\{"
|
|
2091
|
+
].join("\\s*");
|
|
2092
|
+
}
|
|
2055
2093
|
|
|
2056
2094
|
// ../theme-core/src/mock-themes/components/swatch.tsx
|
|
2057
2095
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
@@ -3738,45 +3776,53 @@ var containerResponsiveThemeCss = `/*
|
|
|
3738
3776
|
flex-basis: 16.666667%;
|
|
3739
3777
|
}
|
|
3740
3778
|
@container rb-site (min-width: 768px) {
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3779
|
+
|
|
3780
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
3781
|
+
.rb-md-basis-full {
|
|
3782
|
+
flex-basis: 100%;
|
|
3783
|
+
}
|
|
3784
|
+
.rb-md-basis-1-2 {
|
|
3785
|
+
flex-basis: 50%;
|
|
3786
|
+
}
|
|
3787
|
+
.rb-md-basis-1-3 {
|
|
3788
|
+
flex-basis: 33.333333%;
|
|
3789
|
+
}
|
|
3790
|
+
.rb-md-basis-1-4 {
|
|
3791
|
+
flex-basis: 25%;
|
|
3792
|
+
}
|
|
3793
|
+
.rb-md-basis-1-5 {
|
|
3794
|
+
flex-basis: 20%;
|
|
3795
|
+
}
|
|
3796
|
+
.rb-md-basis-1-6 {
|
|
3797
|
+
flex-basis: 16.666667%;
|
|
3798
|
+
}
|
|
3758
3799
|
}
|
|
3759
|
-
|
|
3800
|
+
|
|
3801
|
+
}
|
|
3760
3802
|
@container rb-site (min-width: 1024px) {
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
|
|
3803
|
+
|
|
3804
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
3805
|
+
.rb-lg-basis-full {
|
|
3806
|
+
flex-basis: 100%;
|
|
3807
|
+
}
|
|
3808
|
+
.rb-lg-basis-1-2 {
|
|
3809
|
+
flex-basis: 50%;
|
|
3810
|
+
}
|
|
3811
|
+
.rb-lg-basis-1-3 {
|
|
3812
|
+
flex-basis: 33.333333%;
|
|
3813
|
+
}
|
|
3814
|
+
.rb-lg-basis-1-4 {
|
|
3815
|
+
flex-basis: 25%;
|
|
3816
|
+
}
|
|
3817
|
+
.rb-lg-basis-1-5 {
|
|
3818
|
+
flex-basis: 20%;
|
|
3819
|
+
}
|
|
3820
|
+
.rb-lg-basis-1-6 {
|
|
3821
|
+
flex-basis: 16.666667%;
|
|
3822
|
+
}
|
|
3778
3823
|
}
|
|
3779
|
-
|
|
3824
|
+
|
|
3825
|
+
}
|
|
3780
3826
|
.rb-shrink-0 {
|
|
3781
3827
|
flex-shrink: 0;
|
|
3782
3828
|
}
|
|
@@ -3798,64 +3844,80 @@ var containerResponsiveThemeCss = `/*
|
|
|
3798
3844
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
3799
3845
|
}
|
|
3800
3846
|
@container rb-site (min-width: 640px) {
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
3807
|
-
|
|
3808
|
-
|
|
3847
|
+
|
|
3848
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
3849
|
+
.rb-sm-grid-cols-2 {
|
|
3850
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3851
|
+
}
|
|
3852
|
+
.rb-sm-grid-cols-3 {
|
|
3853
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3854
|
+
}
|
|
3855
|
+
.rb-sm-grid-cols-4 {
|
|
3856
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
3857
|
+
}
|
|
3809
3858
|
}
|
|
3810
|
-
|
|
3859
|
+
|
|
3860
|
+
}
|
|
3811
3861
|
@container rb-site (min-width: 768px) {
|
|
3812
|
-
|
|
3813
|
-
|
|
3814
|
-
|
|
3815
|
-
|
|
3816
|
-
|
|
3817
|
-
|
|
3818
|
-
|
|
3819
|
-
|
|
3862
|
+
|
|
3863
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
3864
|
+
.rb-md-grid-cols-2 {
|
|
3865
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3866
|
+
}
|
|
3867
|
+
.rb-md-grid-cols-3 {
|
|
3868
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3869
|
+
}
|
|
3870
|
+
.rb-md-grid-cols-4 {
|
|
3871
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
3872
|
+
}
|
|
3820
3873
|
}
|
|
3821
|
-
|
|
3874
|
+
|
|
3875
|
+
}
|
|
3822
3876
|
@container rb-site (min-width: 1024px) {
|
|
3823
|
-
|
|
3824
|
-
|
|
3825
|
-
|
|
3826
|
-
|
|
3827
|
-
|
|
3828
|
-
|
|
3829
|
-
|
|
3830
|
-
|
|
3831
|
-
|
|
3832
|
-
|
|
3833
|
-
|
|
3834
|
-
|
|
3835
|
-
|
|
3836
|
-
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
|
|
3840
|
-
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3877
|
+
|
|
3878
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
3879
|
+
.rb-lg-grid-cols-2 {
|
|
3880
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3881
|
+
}
|
|
3882
|
+
.rb-lg-grid-cols-3 {
|
|
3883
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3884
|
+
}
|
|
3885
|
+
.rb-lg-grid-cols-4 {
|
|
3886
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
3887
|
+
}
|
|
3888
|
+
.rb-lg-w-3\\/4 {
|
|
3889
|
+
width: 75%;
|
|
3890
|
+
}
|
|
3891
|
+
.rb-lg-col-span-1 {
|
|
3892
|
+
grid-column: span 1 / span 1;
|
|
3893
|
+
}
|
|
3894
|
+
.rb-lg-col-span-2 {
|
|
3895
|
+
grid-column: span 2 / span 2;
|
|
3896
|
+
}
|
|
3897
|
+
.rb-lg-col-span-3 {
|
|
3898
|
+
grid-column: span 3 / span 3;
|
|
3899
|
+
}
|
|
3900
|
+
.rb-lg-col-span-4 {
|
|
3901
|
+
grid-column: span 4 / span 4;
|
|
3902
|
+
}
|
|
3846
3903
|
}
|
|
3847
|
-
|
|
3904
|
+
|
|
3905
|
+
}
|
|
3848
3906
|
@container rb-site (min-width: 1280px) {
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3907
|
+
|
|
3908
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
3909
|
+
.rb-xl-grid-cols-2 {
|
|
3910
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3911
|
+
}
|
|
3912
|
+
.rb-xl-grid-cols-3 {
|
|
3913
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3914
|
+
}
|
|
3915
|
+
.rb-xl-grid-cols-4 {
|
|
3916
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
3917
|
+
}
|
|
3857
3918
|
}
|
|
3858
|
-
|
|
3919
|
+
|
|
3920
|
+
}
|
|
3859
3921
|
|
|
3860
3922
|
/* Alignment */
|
|
3861
3923
|
.rb-items-start {
|
|
@@ -3924,13 +3986,17 @@ var containerResponsiveThemeCss = `/*
|
|
|
3924
3986
|
row-gap: 0.75rem;
|
|
3925
3987
|
}
|
|
3926
3988
|
@container rb-site (min-width: 768px) {
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
|
|
3931
|
-
|
|
3989
|
+
|
|
3990
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
3991
|
+
.rb-md-gap-0 {
|
|
3992
|
+
gap: 0;
|
|
3993
|
+
}
|
|
3994
|
+
.rb-md-gap-10 {
|
|
3995
|
+
gap: 2.5rem;
|
|
3996
|
+
}
|
|
3932
3997
|
}
|
|
3933
|
-
|
|
3998
|
+
|
|
3999
|
+
}
|
|
3934
4000
|
|
|
3935
4001
|
.rb-space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
3936
4002
|
margin-top: 0.25rem;
|
|
@@ -4032,137 +4098,149 @@ var containerResponsiveThemeCss = `/*
|
|
|
4032
4098
|
}
|
|
4033
4099
|
|
|
4034
4100
|
@container rb-site (min-width: 640px) {
|
|
4035
|
-
.rb-sm-py-16 {
|
|
4036
|
-
padding-top: 4rem;
|
|
4037
|
-
padding-bottom: 4rem;
|
|
4038
|
-
}
|
|
4039
|
-
.rb-sm-py-20 {
|
|
4040
|
-
padding-top: 5rem;
|
|
4041
|
-
padding-bottom: 5rem;
|
|
4042
|
-
}
|
|
4043
|
-
.rb-sm-p-6 {
|
|
4044
|
-
padding: 1.5rem;
|
|
4045
|
-
}
|
|
4046
|
-
.rb-sm-flex {
|
|
4047
|
-
display: flex;
|
|
4048
|
-
}
|
|
4049
|
-
.rb-sm-block {
|
|
4050
|
-
display: block;
|
|
4051
|
-
}
|
|
4052
|
-
.rb-sm-inline {
|
|
4053
|
-
display: inline;
|
|
4054
|
-
}
|
|
4055
|
-
.rb-sm-inline-block {
|
|
4056
|
-
display: inline-block;
|
|
4057
|
-
}
|
|
4058
|
-
.rb-sm-inline-flex {
|
|
4059
|
-
display: inline-flex;
|
|
4060
|
-
}
|
|
4061
|
-
.rb-sm-grid {
|
|
4062
|
-
display: grid;
|
|
4063
|
-
}
|
|
4064
|
-
.rb-sm-hidden {
|
|
4065
|
-
display: none;
|
|
4066
|
-
}
|
|
4067
|
-
.rb-sm-flex-row {
|
|
4068
|
-
flex-direction: row;
|
|
4069
|
-
}
|
|
4070
|
-
.rb-sm-items-start {
|
|
4071
|
-
align-items: flex-start;
|
|
4072
|
-
}
|
|
4073
|
-
.rb-sm-items-center {
|
|
4074
|
-
align-items: center;
|
|
4075
|
-
}
|
|
4076
|
-
.rb-sm-justify-between {
|
|
4077
|
-
justify-content: space-between;
|
|
4078
|
-
}
|
|
4079
|
-
.rb-sm-p-8 {
|
|
4080
|
-
padding: 2rem;
|
|
4081
|
-
}
|
|
4082
|
-
.rb-sm-text-lg {
|
|
4083
|
-
font-size: 1.125rem;
|
|
4084
|
-
line-height: 1.75rem;
|
|
4085
|
-
}
|
|
4086
|
-
.rb-sm-text-xl {
|
|
4087
|
-
font-size: 1.25rem;
|
|
4088
|
-
line-height: 1.75rem;
|
|
4089
|
-
}
|
|
4090
|
-
.rb-sm-text-4xl {
|
|
4091
|
-
font-size: 2.25rem;
|
|
4092
|
-
line-height: 2.5rem;
|
|
4093
|
-
}
|
|
4094
4101
|
|
|
4095
|
-
|
|
4096
|
-
|
|
4102
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
4103
|
+
.rb-sm-py-16 {
|
|
4104
|
+
padding-top: 4rem;
|
|
4105
|
+
padding-bottom: 4rem;
|
|
4106
|
+
}
|
|
4107
|
+
.rb-sm-py-20 {
|
|
4108
|
+
padding-top: 5rem;
|
|
4109
|
+
padding-bottom: 5rem;
|
|
4110
|
+
}
|
|
4111
|
+
.rb-sm-p-6 {
|
|
4112
|
+
padding: 1.5rem;
|
|
4113
|
+
}
|
|
4114
|
+
.rb-sm-flex {
|
|
4115
|
+
display: flex;
|
|
4116
|
+
}
|
|
4117
|
+
.rb-sm-block {
|
|
4118
|
+
display: block;
|
|
4119
|
+
}
|
|
4120
|
+
.rb-sm-inline {
|
|
4121
|
+
display: inline;
|
|
4122
|
+
}
|
|
4123
|
+
.rb-sm-inline-block {
|
|
4124
|
+
display: inline-block;
|
|
4125
|
+
}
|
|
4126
|
+
.rb-sm-inline-flex {
|
|
4127
|
+
display: inline-flex;
|
|
4128
|
+
}
|
|
4129
|
+
.rb-sm-grid {
|
|
4130
|
+
display: grid;
|
|
4131
|
+
}
|
|
4132
|
+
.rb-sm-hidden {
|
|
4133
|
+
display: none;
|
|
4134
|
+
}
|
|
4135
|
+
.rb-sm-flex-row {
|
|
4136
|
+
flex-direction: row;
|
|
4137
|
+
}
|
|
4138
|
+
.rb-sm-items-start {
|
|
4139
|
+
align-items: flex-start;
|
|
4140
|
+
}
|
|
4141
|
+
.rb-sm-items-center {
|
|
4142
|
+
align-items: center;
|
|
4143
|
+
}
|
|
4144
|
+
.rb-sm-justify-between {
|
|
4145
|
+
justify-content: space-between;
|
|
4146
|
+
}
|
|
4147
|
+
.rb-sm-p-8 {
|
|
4148
|
+
padding: 2rem;
|
|
4149
|
+
}
|
|
4150
|
+
.rb-sm-text-lg {
|
|
4151
|
+
font-size: 1.125rem;
|
|
4152
|
+
line-height: 1.75rem;
|
|
4153
|
+
}
|
|
4154
|
+
.rb-sm-text-xl {
|
|
4155
|
+
font-size: 1.25rem;
|
|
4156
|
+
line-height: 1.75rem;
|
|
4157
|
+
}
|
|
4158
|
+
.rb-sm-text-4xl {
|
|
4159
|
+
font-size: 2.25rem;
|
|
4160
|
+
line-height: 2.5rem;
|
|
4161
|
+
}
|
|
4162
|
+
|
|
4163
|
+
.rb-sm-w-auto {
|
|
4164
|
+
width: auto;
|
|
4165
|
+
}
|
|
4097
4166
|
}
|
|
4098
|
-
|
|
4167
|
+
|
|
4168
|
+
}
|
|
4099
4169
|
@container rb-site (min-width: 768px) {
|
|
4100
|
-
.rb-md-py-20 {
|
|
4101
|
-
padding-top: 5rem;
|
|
4102
|
-
padding-bottom: 5rem;
|
|
4103
|
-
}
|
|
4104
|
-
.rb-md-py-24 {
|
|
4105
|
-
padding-top: 6rem;
|
|
4106
|
-
padding-bottom: 6rem;
|
|
4107
|
-
}
|
|
4108
|
-
.rb-md-w-1\\/3 {
|
|
4109
|
-
width: 33.333333%;
|
|
4110
|
-
}
|
|
4111
4170
|
|
|
4112
|
-
|
|
4113
|
-
|
|
4114
|
-
|
|
4115
|
-
|
|
4116
|
-
|
|
4117
|
-
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
flex
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
|
|
4171
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
4172
|
+
.rb-md-py-20 {
|
|
4173
|
+
padding-top: 5rem;
|
|
4174
|
+
padding-bottom: 5rem;
|
|
4175
|
+
}
|
|
4176
|
+
.rb-md-py-24 {
|
|
4177
|
+
padding-top: 6rem;
|
|
4178
|
+
padding-bottom: 6rem;
|
|
4179
|
+
}
|
|
4180
|
+
.rb-md-w-1\\/3 {
|
|
4181
|
+
width: 33.333333%;
|
|
4182
|
+
}
|
|
4183
|
+
|
|
4184
|
+
.rb-md-flex {
|
|
4185
|
+
display: flex;
|
|
4186
|
+
}
|
|
4187
|
+
.rb-md-block {
|
|
4188
|
+
display: block;
|
|
4189
|
+
}
|
|
4190
|
+
.rb-md-inline {
|
|
4191
|
+
display: inline;
|
|
4192
|
+
}
|
|
4193
|
+
.rb-md-inline-block {
|
|
4194
|
+
display: inline-block;
|
|
4195
|
+
}
|
|
4196
|
+
.rb-md-inline-flex {
|
|
4197
|
+
display: inline-flex;
|
|
4198
|
+
}
|
|
4199
|
+
.rb-md-grid {
|
|
4200
|
+
display: grid;
|
|
4201
|
+
}
|
|
4202
|
+
.rb-md-hidden {
|
|
4203
|
+
display: none;
|
|
4204
|
+
}
|
|
4205
|
+
.rb-md-flex-row {
|
|
4206
|
+
flex-direction: row;
|
|
4207
|
+
}
|
|
4208
|
+
.rb-md-flex-row-reverse {
|
|
4209
|
+
flex-direction: row-reverse;
|
|
4210
|
+
}
|
|
4211
|
+
.rb-md-items-start {
|
|
4212
|
+
align-items: flex-start;
|
|
4213
|
+
}
|
|
4141
4214
|
}
|
|
4142
|
-
|
|
4215
|
+
|
|
4216
|
+
}
|
|
4143
4217
|
@container rb-site (min-width: 1024px) {
|
|
4144
|
-
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
|
|
4152
|
-
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
|
|
4156
|
-
|
|
4157
|
-
|
|
4158
|
-
|
|
4159
|
-
|
|
4160
|
-
|
|
4161
|
-
|
|
4162
|
-
|
|
4163
|
-
|
|
4218
|
+
|
|
4219
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
4220
|
+
.rb-lg-flex {
|
|
4221
|
+
display: flex;
|
|
4222
|
+
}
|
|
4223
|
+
.rb-lg-block {
|
|
4224
|
+
display: block;
|
|
4225
|
+
}
|
|
4226
|
+
.rb-lg-inline {
|
|
4227
|
+
display: inline;
|
|
4228
|
+
}
|
|
4229
|
+
.rb-lg-inline-block {
|
|
4230
|
+
display: inline-block;
|
|
4231
|
+
}
|
|
4232
|
+
.rb-lg-inline-flex {
|
|
4233
|
+
display: inline-flex;
|
|
4234
|
+
}
|
|
4235
|
+
.rb-lg-grid {
|
|
4236
|
+
display: grid;
|
|
4237
|
+
}
|
|
4238
|
+
.rb-lg-hidden {
|
|
4239
|
+
display: none;
|
|
4240
|
+
}
|
|
4164
4241
|
}
|
|
4165
|
-
|
|
4242
|
+
|
|
4243
|
+
}
|
|
4166
4244
|
|
|
4167
4245
|
/* Margin */
|
|
4168
4246
|
.rb-m-0 {
|
|
@@ -4419,8 +4497,9 @@ var containerResponsiveThemeCss = `/*
|
|
|
4419
4497
|
font-weight: 700;
|
|
4420
4498
|
}
|
|
4421
4499
|
.rb-font-mono {
|
|
4422
|
-
font-family:
|
|
4423
|
-
|
|
4500
|
+
font-family:
|
|
4501
|
+
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
4502
|
+
"Courier New", monospace;
|
|
4424
4503
|
}
|
|
4425
4504
|
.rb-leading-relaxed {
|
|
4426
4505
|
line-height: 1.625;
|
|
@@ -4638,39 +4717,44 @@ var containerResponsiveThemeCss = `/*
|
|
|
4638
4717
|
}
|
|
4639
4718
|
|
|
4640
4719
|
@container rb-site (max-width: 639px) {
|
|
4641
|
-
.rb-image-gallery-marquee {
|
|
4642
|
-
overflow-x: auto;
|
|
4643
|
-
overflow-y: hidden;
|
|
4644
|
-
-webkit-overflow-scrolling: touch;
|
|
4645
|
-
touch-action: pan-x;
|
|
4646
|
-
scrollbar-width: none;
|
|
4647
|
-
}
|
|
4648
4720
|
|
|
4649
|
-
|
|
4650
|
-
|
|
4651
|
-
|
|
4721
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
4722
|
+
.rb-image-gallery-marquee {
|
|
4723
|
+
overflow-x: auto;
|
|
4724
|
+
overflow-y: hidden;
|
|
4725
|
+
-webkit-overflow-scrolling: touch;
|
|
4726
|
+
touch-action: pan-x;
|
|
4727
|
+
scrollbar-width: none;
|
|
4728
|
+
}
|
|
4652
4729
|
|
|
4653
|
-
|
|
4654
|
-
|
|
4655
|
-
|
|
4656
|
-
animation-play-state: paused;
|
|
4657
|
-
}
|
|
4730
|
+
.rb-image-gallery-marquee::-webkit-scrollbar {
|
|
4731
|
+
display: none;
|
|
4732
|
+
}
|
|
4658
4733
|
|
|
4659
|
-
|
|
4660
|
-
|
|
4661
|
-
|
|
4662
|
-
|
|
4734
|
+
/* Let users swipe smoothly without fighting autoplay while interacting. */
|
|
4735
|
+
.rb-image-gallery-marquee:active .rb-animate-marquee,
|
|
4736
|
+
.rb-image-gallery-marquee:focus-within .rb-animate-marquee {
|
|
4737
|
+
animation-play-state: paused;
|
|
4738
|
+
}
|
|
4663
4739
|
|
|
4664
|
-
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
4740
|
+
.rb-container-full.rb-image-gallery-marquee-container {
|
|
4741
|
+
padding-left: 0;
|
|
4742
|
+
padding-right: 0;
|
|
4743
|
+
}
|
|
4744
|
+
|
|
4745
|
+
/* Marquee variant: keep images in color on mobile for legibility. */
|
|
4746
|
+
.rb-image-gallery-marquee-container .rb-filter-grayscale,
|
|
4747
|
+
.rb-image-gallery-marquee-container .rb-filter-grayscale-hover-reveal {
|
|
4748
|
+
filter: none;
|
|
4749
|
+
}
|
|
4669
4750
|
|
|
4670
|
-
|
|
4671
|
-
|
|
4751
|
+
.rb-image-gallery-marquee-container
|
|
4752
|
+
.rb-filter-grayscale-hover-reveal:hover {
|
|
4753
|
+
filter: none;
|
|
4754
|
+
}
|
|
4672
4755
|
}
|
|
4673
|
-
|
|
4756
|
+
|
|
4757
|
+
}
|
|
4674
4758
|
|
|
4675
4759
|
@media (prefers-reduced-motion: reduce) {
|
|
4676
4760
|
.rb-animate-marquee {
|
|
@@ -4775,12 +4859,16 @@ var containerResponsiveThemeCss = `/*
|
|
|
4775
4859
|
}
|
|
4776
4860
|
|
|
4777
4861
|
@container rb-site (min-width: 640px) {
|
|
4778
|
-
|
|
4779
|
-
|
|
4780
|
-
|
|
4781
|
-
|
|
4862
|
+
|
|
4863
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
4864
|
+
.rb-container,
|
|
4865
|
+
.rb-container-full {
|
|
4866
|
+
padding-left: 1.5rem;
|
|
4867
|
+
padding-right: 1.5rem;
|
|
4868
|
+
}
|
|
4782
4869
|
}
|
|
4783
|
-
|
|
4870
|
+
|
|
4871
|
+
}
|
|
4784
4872
|
|
|
4785
4873
|
/* Flex alignment */
|
|
4786
4874
|
.rb-self-start {
|
|
@@ -4814,27 +4902,31 @@ var containerResponsiveThemeCss = `/*
|
|
|
4814
4902
|
}
|
|
4815
4903
|
|
|
4816
4904
|
@container rb-site (min-width: 640px) {
|
|
4817
|
-
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
|
|
4821
|
-
|
|
4822
|
-
|
|
4823
|
-
|
|
4824
|
-
|
|
4825
|
-
|
|
4826
|
-
|
|
4827
|
-
|
|
4828
|
-
|
|
4829
|
-
|
|
4830
|
-
|
|
4831
|
-
|
|
4832
|
-
|
|
4833
|
-
|
|
4834
|
-
|
|
4835
|
-
|
|
4905
|
+
|
|
4906
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
4907
|
+
.rb-section-pad-compact {
|
|
4908
|
+
padding-top: 2rem;
|
|
4909
|
+
padding-bottom: 2rem;
|
|
4910
|
+
}
|
|
4911
|
+
.rb-section-pad-cozy {
|
|
4912
|
+
padding-top: 3.5rem;
|
|
4913
|
+
padding-bottom: 3.5rem;
|
|
4914
|
+
}
|
|
4915
|
+
.rb-section-pad-medium {
|
|
4916
|
+
padding-top: 4rem;
|
|
4917
|
+
padding-bottom: 4rem;
|
|
4918
|
+
}
|
|
4919
|
+
.rb-section-pad-comfortable {
|
|
4920
|
+
padding-top: 5rem;
|
|
4921
|
+
padding-bottom: 5rem;
|
|
4922
|
+
}
|
|
4923
|
+
.rb-section-pad-spacious {
|
|
4924
|
+
padding-top: 7rem;
|
|
4925
|
+
padding-bottom: 7rem;
|
|
4926
|
+
}
|
|
4836
4927
|
}
|
|
4837
|
-
|
|
4928
|
+
|
|
4929
|
+
}
|
|
4838
4930
|
|
|
4839
4931
|
.rb-container-pad-none {
|
|
4840
4932
|
padding: 0;
|
|
@@ -4856,22 +4948,26 @@ var containerResponsiveThemeCss = `/*
|
|
|
4856
4948
|
}
|
|
4857
4949
|
|
|
4858
4950
|
@container rb-site (min-width: 640px) {
|
|
4859
|
-
|
|
4860
|
-
|
|
4861
|
-
|
|
4862
|
-
|
|
4863
|
-
|
|
4864
|
-
|
|
4865
|
-
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
|
-
|
|
4869
|
-
|
|
4870
|
-
|
|
4871
|
-
|
|
4872
|
-
|
|
4951
|
+
|
|
4952
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
4953
|
+
.rb-container-pad-compact {
|
|
4954
|
+
padding: 1.5rem;
|
|
4955
|
+
}
|
|
4956
|
+
.rb-container-pad-cozy {
|
|
4957
|
+
padding: 2rem;
|
|
4958
|
+
}
|
|
4959
|
+
.rb-container-pad-medium {
|
|
4960
|
+
padding: 2rem;
|
|
4961
|
+
}
|
|
4962
|
+
.rb-container-pad-comfortable {
|
|
4963
|
+
padding: 2.5rem;
|
|
4964
|
+
}
|
|
4965
|
+
.rb-container-pad-spacious {
|
|
4966
|
+
padding: 3.5rem;
|
|
4967
|
+
}
|
|
4873
4968
|
}
|
|
4874
|
-
|
|
4969
|
+
|
|
4970
|
+
}
|
|
4875
4971
|
|
|
4876
4972
|
/* Semantic gap tokens (theme-aware via --space-mult) */
|
|
4877
4973
|
.rb-gap-semantic-none {
|
|
@@ -4900,27 +4996,31 @@ var containerResponsiveThemeCss = `/*
|
|
|
4900
4996
|
}
|
|
4901
4997
|
|
|
4902
4998
|
@container rb-site (min-width: 768px) {
|
|
4903
|
-
|
|
4904
|
-
|
|
4905
|
-
|
|
4906
|
-
|
|
4907
|
-
|
|
4908
|
-
|
|
4909
|
-
|
|
4910
|
-
|
|
4911
|
-
|
|
4912
|
-
|
|
4913
|
-
|
|
4914
|
-
|
|
4915
|
-
|
|
4916
|
-
|
|
4917
|
-
|
|
4918
|
-
|
|
4919
|
-
|
|
4920
|
-
|
|
4921
|
-
|
|
4999
|
+
|
|
5000
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
5001
|
+
.rb-gap-semantic-compact {
|
|
5002
|
+
--rb-semantic-gap: calc(1.25rem * var(--space-mult, 1));
|
|
5003
|
+
gap: calc(1.25rem * var(--space-mult, 1));
|
|
5004
|
+
}
|
|
5005
|
+
.rb-gap-semantic-cozy {
|
|
5006
|
+
--rb-semantic-gap: calc(2.25rem * var(--space-mult, 1));
|
|
5007
|
+
gap: calc(2.25rem * var(--space-mult, 1));
|
|
5008
|
+
}
|
|
5009
|
+
.rb-gap-semantic-medium {
|
|
5010
|
+
--rb-semantic-gap: calc(3.5rem * var(--space-mult, 1));
|
|
5011
|
+
gap: calc(3.5rem * var(--space-mult, 1));
|
|
5012
|
+
}
|
|
5013
|
+
.rb-gap-semantic-comfortable {
|
|
5014
|
+
--rb-semantic-gap: calc(5.75rem * var(--space-mult, 1));
|
|
5015
|
+
gap: calc(5.75rem * var(--space-mult, 1));
|
|
5016
|
+
}
|
|
5017
|
+
.rb-gap-semantic-spacious {
|
|
5018
|
+
--rb-semantic-gap: calc(8.75rem * var(--space-mult, 1));
|
|
5019
|
+
gap: calc(8.75rem * var(--space-mult, 1));
|
|
5020
|
+
}
|
|
4922
5021
|
}
|
|
4923
|
-
|
|
5022
|
+
|
|
5023
|
+
}
|
|
4924
5024
|
|
|
4925
5025
|
/* Backdrop blur helpers */
|
|
4926
5026
|
.rb-backdrop-blur {
|
|
@@ -5274,11 +5374,13 @@ var containerResponsiveThemeCss = `/*
|
|
|
5274
5374
|
line-height: var(--rb-prose-lg-line-height);
|
|
5275
5375
|
}
|
|
5276
5376
|
@container rb-site (min-width: 640px) {
|
|
5277
|
-
|
|
5377
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
5378
|
+
:where(.theme-scope) .rb-prose-xl-sm {
|
|
5278
5379
|
font-size: var(--rb-prose-xl-sm-font-size);
|
|
5279
5380
|
line-height: var(--rb-prose-xl-sm-line-height);
|
|
5280
5381
|
}
|
|
5281
5382
|
}
|
|
5383
|
+
}
|
|
5282
5384
|
|
|
5283
5385
|
/* Neutral prose uses theme text color by default */
|
|
5284
5386
|
:where(.theme-scope) .rb-prose-neutral {
|
|
@@ -5362,22 +5464,28 @@ var containerResponsiveThemeCss = `/*
|
|
|
5362
5464
|
}
|
|
5363
5465
|
|
|
5364
5466
|
@container rb-site (min-width: 768px) {
|
|
5365
|
-
|
|
5467
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
5468
|
+
:where(.theme-scope) .rb-columns-equal-height {
|
|
5366
5469
|
--rb-columns-cols: var(--rb-columns-cols-md, var(--rb-columns-cols));
|
|
5367
5470
|
}
|
|
5368
5471
|
}
|
|
5472
|
+
}
|
|
5369
5473
|
|
|
5370
5474
|
@container rb-site (min-width: 1024px) {
|
|
5371
|
-
|
|
5475
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
5476
|
+
:where(.theme-scope) .rb-columns-equal-height {
|
|
5372
5477
|
--rb-columns-cols: var(--rb-columns-cols-lg, var(--rb-columns-cols));
|
|
5373
5478
|
}
|
|
5374
5479
|
}
|
|
5480
|
+
}
|
|
5375
5481
|
|
|
5376
5482
|
@container rb-site (min-width: 1280px) {
|
|
5377
|
-
|
|
5483
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
5484
|
+
:where(.theme-scope) .rb-columns-equal-height {
|
|
5378
5485
|
--rb-columns-cols: var(--rb-columns-cols-xl, var(--rb-columns-cols));
|
|
5379
5486
|
}
|
|
5380
5487
|
}
|
|
5488
|
+
}
|
|
5381
5489
|
|
|
5382
5490
|
:where(.theme-scope) .rb-columns-equal-height > * {
|
|
5383
5491
|
height: var(--rb-columns-tile-h);
|
|
@@ -5999,7 +6107,8 @@ var containerResponsiveThemeCss = `/*
|
|
|
5999
6107
|
|
|
6000
6108
|
/* Mobile: reduce site title size (~30%) to keep header compact */
|
|
6001
6109
|
@container rb-site (max-width: 767px) {
|
|
6002
|
-
|
|
6110
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
6111
|
+
:where(.theme-scope) .header-logo-text {
|
|
6003
6112
|
font-size: 0.8rem;
|
|
6004
6113
|
line-height: 1.25rem;
|
|
6005
6114
|
}
|
|
@@ -6010,6 +6119,7 @@ var containerResponsiveThemeCss = `/*
|
|
|
6010
6119
|
line-height: 1.25rem;
|
|
6011
6120
|
}
|
|
6012
6121
|
}
|
|
6122
|
+
}
|
|
6013
6123
|
|
|
6014
6124
|
/* Centered/editorial variants use larger title */
|
|
6015
6125
|
:where(.theme-scope) .header-variant-centered .header-logo-text,
|
|
@@ -6033,10 +6143,12 @@ var containerResponsiveThemeCss = `/*
|
|
|
6033
6143
|
}
|
|
6034
6144
|
|
|
6035
6145
|
@container rb-site (max-width: 767px) {
|
|
6036
|
-
|
|
6146
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
6147
|
+
:where(.theme-scope) .rb-header-shrink.header-scrolled .header-logo-text {
|
|
6037
6148
|
font-size: 0.75rem;
|
|
6038
6149
|
}
|
|
6039
6150
|
}
|
|
6151
|
+
}
|
|
6040
6152
|
|
|
6041
6153
|
/* =================================================================
|
|
6042
6154
|
Accessibility: Reduced Motion
|
|
@@ -6480,10 +6592,12 @@ var containerResponsiveThemeCss = `/*
|
|
|
6480
6592
|
}
|
|
6481
6593
|
|
|
6482
6594
|
@container rb-site (min-width: 768px) {
|
|
6483
|
-
|
|
6595
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
6596
|
+
:where(.theme-scope) :where([data-block="event-registration"]) .er-event-grid {
|
|
6484
6597
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
6485
6598
|
}
|
|
6486
6599
|
}
|
|
6600
|
+
}
|
|
6487
6601
|
|
|
6488
6602
|
:where(.theme-scope) :where([data-block="event-registration"]) .er-row {
|
|
6489
6603
|
display: flex;
|
|
@@ -6716,12 +6830,14 @@ var containerResponsiveThemeCss = `/*
|
|
|
6716
6830
|
}
|
|
6717
6831
|
|
|
6718
6832
|
@container rb-site (min-width: 768px) {
|
|
6719
|
-
|
|
6833
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
6834
|
+
:where(.theme-scope) :where([data-block="event-registration"]) .er-layout {
|
|
6720
6835
|
/* Desktop: main + sidebar */
|
|
6721
6836
|
grid-template-columns: 1fr 300px;
|
|
6722
6837
|
grid-template-areas: "main summary";
|
|
6723
6838
|
}
|
|
6724
6839
|
}
|
|
6840
|
+
}
|
|
6725
6841
|
|
|
6726
6842
|
:where(.theme-scope) :where([data-block="event-registration"]) .er-layout-main {
|
|
6727
6843
|
grid-area: main;
|
|
@@ -6803,10 +6919,12 @@ var containerResponsiveThemeCss = `/*
|
|
|
6803
6919
|
}
|
|
6804
6920
|
|
|
6805
6921
|
@container rb-site (min-width: 640px) {
|
|
6806
|
-
|
|
6922
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
6923
|
+
:where(.theme-scope) :where([data-block="event-registration"]) .er-step-label {
|
|
6807
6924
|
display: inline;
|
|
6808
6925
|
}
|
|
6809
6926
|
}
|
|
6927
|
+
}
|
|
6810
6928
|
|
|
6811
6929
|
/* Sticky order summary */
|
|
6812
6930
|
:where(.theme-scope) :where([data-block="event-registration"]) .er-summary {
|
|
@@ -6823,11 +6941,13 @@ var containerResponsiveThemeCss = `/*
|
|
|
6823
6941
|
}
|
|
6824
6942
|
|
|
6825
6943
|
@container rb-site (min-width: 768px) {
|
|
6826
|
-
|
|
6944
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
6945
|
+
:where(.theme-scope) :where([data-block="event-registration"]) .er-summary {
|
|
6827
6946
|
position: sticky;
|
|
6828
6947
|
top: 1rem;
|
|
6829
6948
|
}
|
|
6830
6949
|
}
|
|
6950
|
+
}
|
|
6831
6951
|
|
|
6832
6952
|
:where(.theme-scope) :where([data-block="event-registration"]) .er-summary-event {
|
|
6833
6953
|
font-weight: 600;
|
|
@@ -6897,12 +7017,14 @@ var containerResponsiveThemeCss = `/*
|
|
|
6897
7017
|
}
|
|
6898
7018
|
|
|
6899
7019
|
@container rb-site (min-width: 768px) {
|
|
6900
|
-
|
|
7020
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
7021
|
+
:where(.theme-scope) :where([data-block="event-registration"]) .er-guest-card {
|
|
6901
7022
|
grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
|
|
6902
7023
|
column-gap: 1rem;
|
|
6903
7024
|
align-items: start;
|
|
6904
7025
|
}
|
|
6905
7026
|
}
|
|
7027
|
+
}
|
|
6906
7028
|
|
|
6907
7029
|
/* Shake animation for validation errors */
|
|
6908
7030
|
@keyframes er-shake {
|
|
@@ -7047,7 +7169,8 @@ var containerResponsiveThemeCss = `/*
|
|
|
7047
7169
|
* ============================================================================= */
|
|
7048
7170
|
|
|
7049
7171
|
@container rb-site (min-width: 768px) {
|
|
7050
|
-
|
|
7172
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
7173
|
+
:where(.theme-scope)
|
|
7051
7174
|
:where([data-block="event-listing"], [data-block="event-spotlight"], [data-block="event-calendar"], [data-block="event-combined"])
|
|
7052
7175
|
.event-card[data-orientation="horizontal"] {
|
|
7053
7176
|
display: flex;
|
|
@@ -7098,6 +7221,7 @@ var containerResponsiveThemeCss = `/*
|
|
|
7098
7221
|
text-align: right;
|
|
7099
7222
|
}
|
|
7100
7223
|
}
|
|
7224
|
+
}
|
|
7101
7225
|
|
|
7102
7226
|
/* Keep token list in sync with \`EVENT_CATEGORY_BADGE_TOKENS\` in \`packages/blocks/src/system/constants/events.ts\`. */
|
|
7103
7227
|
:where(.theme-scope)
|
|
@@ -7177,7 +7301,8 @@ var containerResponsiveThemeCss = `/*
|
|
|
7177
7301
|
}
|
|
7178
7302
|
|
|
7179
7303
|
@container rb-site (min-width: 768px) {
|
|
7180
|
-
|
|
7304
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
7305
|
+
:where(.theme-scope) :where([data-block="event-registration"]) .er-payment-layout {
|
|
7181
7306
|
grid-template-columns: 1fr 260px;
|
|
7182
7307
|
grid-template-areas:
|
|
7183
7308
|
"main sidebar"
|
|
@@ -7192,6 +7317,7 @@ var containerResponsiveThemeCss = `/*
|
|
|
7192
7317
|
"footer";
|
|
7193
7318
|
}
|
|
7194
7319
|
}
|
|
7320
|
+
}
|
|
7195
7321
|
|
|
7196
7322
|
:where(.theme-scope) :where([data-block="event-registration"]) .er-payment-layout-main {
|
|
7197
7323
|
grid-area: main;
|
|
@@ -8471,7 +8597,8 @@ var containerResponsiveThemeCss = `/*
|
|
|
8471
8597
|
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-event-time,
|
|
8472
8598
|
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-event-title,
|
|
8473
8599
|
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-event-teacher,
|
|
8474
|
-
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-event-meta
|
|
8600
|
+
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-event-meta,
|
|
8601
|
+
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-event-capacity {
|
|
8475
8602
|
display: block;
|
|
8476
8603
|
min-width: 0;
|
|
8477
8604
|
overflow: hidden;
|
|
@@ -8497,6 +8624,17 @@ var containerResponsiveThemeCss = `/*
|
|
|
8497
8624
|
opacity: 0.72;
|
|
8498
8625
|
}
|
|
8499
8626
|
|
|
8627
|
+
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-event-capacity {
|
|
8628
|
+
font-size: 0.6875rem;
|
|
8629
|
+
font-weight: 600;
|
|
8630
|
+
opacity: 0.85;
|
|
8631
|
+
}
|
|
8632
|
+
|
|
8633
|
+
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-event-capacity--full {
|
|
8634
|
+
color: rgb(var(--tb-danger, 220 38 38));
|
|
8635
|
+
opacity: 1;
|
|
8636
|
+
}
|
|
8637
|
+
|
|
8500
8638
|
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-day-empty {
|
|
8501
8639
|
margin: 0;
|
|
8502
8640
|
padding: 1rem 0.5rem;
|
|
@@ -8513,7 +8651,8 @@ var containerResponsiveThemeCss = `/*
|
|
|
8513
8651
|
}
|
|
8514
8652
|
|
|
8515
8653
|
@container rb-site (max-width: 767px) {
|
|
8516
|
-
|
|
8654
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
8655
|
+
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-day-selector {
|
|
8517
8656
|
display: flex;
|
|
8518
8657
|
}
|
|
8519
8658
|
|
|
@@ -8543,6 +8682,7 @@ var containerResponsiveThemeCss = `/*
|
|
|
8543
8682
|
padding-inline: 0.75rem;
|
|
8544
8683
|
}
|
|
8545
8684
|
}
|
|
8685
|
+
}
|
|
8546
8686
|
|
|
8547
8687
|
/* -----------------------------------------------------------------------------
|
|
8548
8688
|
* Event Calendar Modals
|
|
@@ -8681,7 +8821,8 @@ var containerResponsiveThemeCss = `/*
|
|
|
8681
8821
|
|
|
8682
8822
|
/* Responsive adjustments */
|
|
8683
8823
|
@container rb-site (max-width: 640px) {
|
|
8684
|
-
|
|
8824
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
8825
|
+
:where(.theme-scope) :where([data-block="event-calendar"]) .event-calendar-container {
|
|
8685
8826
|
margin-left: -1.5rem;
|
|
8686
8827
|
margin-right: -1.5rem;
|
|
8687
8828
|
border-left: none;
|
|
@@ -8742,6 +8883,7 @@ var containerResponsiveThemeCss = `/*
|
|
|
8742
8883
|
margin: 0 0.5rem;
|
|
8743
8884
|
}
|
|
8744
8885
|
}
|
|
8886
|
+
}
|
|
8745
8887
|
|
|
8746
8888
|
/*
|
|
8747
8889
|
* Shared: Tab bar (underline style)
|
|
@@ -9104,10 +9246,12 @@ var containerResponsiveThemeCss = `/*
|
|
|
9104
9246
|
}
|
|
9105
9247
|
|
|
9106
9248
|
@container rb-site (min-width: 768px) {
|
|
9107
|
-
|
|
9249
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
9250
|
+
:where(.theme-scope) :where([data-block="form"]) .fb-row-2 {
|
|
9108
9251
|
grid-template-columns: 1fr 1fr;
|
|
9109
9252
|
}
|
|
9110
9253
|
}
|
|
9254
|
+
}
|
|
9111
9255
|
|
|
9112
9256
|
/* Field wrapper */
|
|
9113
9257
|
:where(.theme-scope) :where([data-block="form"]) .fb-field {
|
|
@@ -9188,10 +9332,12 @@ var containerResponsiveThemeCss = `/*
|
|
|
9188
9332
|
}
|
|
9189
9333
|
|
|
9190
9334
|
@container rb-site (min-width: 640px) {
|
|
9191
|
-
|
|
9335
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
9336
|
+
:where(.theme-scope) :where([data-block="hero"]) .hero-subheadline {
|
|
9192
9337
|
font-size: 1.25rem;
|
|
9193
9338
|
}
|
|
9194
9339
|
}
|
|
9340
|
+
}
|
|
9195
9341
|
|
|
9196
9342
|
/* =============================================================================
|
|
9197
9343
|
* Shared: Heading Group (used by CTA, single-button, etc.)
|
|
@@ -9405,16 +9551,19 @@ var containerResponsiveThemeCss = `/*
|
|
|
9405
9551
|
}
|
|
9406
9552
|
|
|
9407
9553
|
@container rb-site (min-width: 768px) {
|
|
9408
|
-
|
|
9554
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
9555
|
+
:where(.theme-scope) .carousel-root {
|
|
9409
9556
|
--rb-carousel-slides-to-show: var(
|
|
9410
9557
|
--rb-carousel-slides-to-show-tablet,
|
|
9411
9558
|
var(--rb-carousel-slides-to-show-mobile, 1)
|
|
9412
9559
|
);
|
|
9413
9560
|
}
|
|
9414
9561
|
}
|
|
9562
|
+
}
|
|
9415
9563
|
|
|
9416
9564
|
@container rb-site (min-width: 1024px) {
|
|
9417
|
-
|
|
9565
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
9566
|
+
:where(.theme-scope) .carousel-root {
|
|
9418
9567
|
--rb-carousel-slides-to-show: var(
|
|
9419
9568
|
--rb-carousel-slides-to-show-desktop,
|
|
9420
9569
|
var(
|
|
@@ -9424,6 +9573,7 @@ var containerResponsiveThemeCss = `/*
|
|
|
9424
9573
|
);
|
|
9425
9574
|
}
|
|
9426
9575
|
}
|
|
9576
|
+
}
|
|
9427
9577
|
|
|
9428
9578
|
/* Slides take exact percentage width with internal padding for gaps.
|
|
9429
9579
|
* Padding is more reliable than margin (no collapsing, consistent on all slides). */
|
|
@@ -9697,10 +9847,12 @@ var containerResponsiveThemeCss = `/*
|
|
|
9697
9847
|
|
|
9698
9848
|
/* Responsive grid */
|
|
9699
9849
|
@container rb-site (max-width: 768px) {
|
|
9700
|
-
|
|
9850
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
9851
|
+
:where(.theme-scope) .shop__products--grid {
|
|
9701
9852
|
grid-template-columns: 1fr;
|
|
9702
9853
|
}
|
|
9703
9854
|
}
|
|
9855
|
+
}
|
|
9704
9856
|
|
|
9705
9857
|
:where(.theme-scope) .shop__modal-product {
|
|
9706
9858
|
font-size: 0.9375rem;
|
|
@@ -9802,11 +9954,13 @@ var containerResponsiveThemeCss = `/*
|
|
|
9802
9954
|
|
|
9803
9955
|
/* Mobile: full-width CTA buttons inside cards */
|
|
9804
9956
|
@container rb-site (max-width: 640px) {
|
|
9805
|
-
|
|
9957
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
9958
|
+
:where(.theme-scope) .shop__cta {
|
|
9806
9959
|
align-self: stretch;
|
|
9807
9960
|
width: 100%;
|
|
9808
9961
|
}
|
|
9809
9962
|
}
|
|
9963
|
+
}
|
|
9810
9964
|
|
|
9811
9965
|
/* =============================================================================
|
|
9812
9966
|
* Block: Customer Portal
|
|
@@ -10512,7 +10666,8 @@ var containerResponsiveThemeCss = `/*
|
|
|
10512
10666
|
|
|
10513
10667
|
/* Responsive: show everything without horizontal scrolling */
|
|
10514
10668
|
@container rb-site (max-width: 640px) {
|
|
10515
|
-
|
|
10669
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
10670
|
+
:where(.theme-scope) :where([data-block="customer-portal"]) .cp-only-mobile {
|
|
10516
10671
|
display: flex;
|
|
10517
10672
|
}
|
|
10518
10673
|
|
|
@@ -10552,6 +10707,7 @@ var containerResponsiveThemeCss = `/*
|
|
|
10552
10707
|
align-self: stretch;
|
|
10553
10708
|
}
|
|
10554
10709
|
}
|
|
10710
|
+
}
|
|
10555
10711
|
|
|
10556
10712
|
/* Placeholder (SSR) */
|
|
10557
10713
|
:where(.theme-scope) :where([data-block="customer-portal"]) .cp-placeholder {
|
|
@@ -10641,7 +10797,8 @@ var containerResponsiveThemeCss = `/*
|
|
|
10641
10797
|
|
|
10642
10798
|
/* Position arrows outside the carousel content area */
|
|
10643
10799
|
@container rb-site (max-width: 639px) {
|
|
10644
|
-
|
|
10800
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
10801
|
+
:where(.theme-scope) :where([data-block="testimonials"]) .rb-testimonials-carousel.carousel-root .carousel-nav-btn--prev {
|
|
10645
10802
|
/* Move arrows closer to viewport edge than container edge on mobile. */
|
|
10646
10803
|
left: calc(0.5rem - 1.5rem);
|
|
10647
10804
|
}
|
|
@@ -10651,10 +10808,12 @@ var containerResponsiveThemeCss = `/*
|
|
|
10651
10808
|
right: calc(0.5rem - 1.5rem);
|
|
10652
10809
|
}
|
|
10653
10810
|
}
|
|
10811
|
+
}
|
|
10654
10812
|
|
|
10655
10813
|
/* Position arrows further out on larger breakpoints */
|
|
10656
10814
|
@container rb-site (min-width: 640px) {
|
|
10657
|
-
|
|
10815
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
10816
|
+
:where(.theme-scope) :where([data-block="testimonials"]) .rb-testimonials-carousel.carousel-root .carousel-nav-btn--prev {
|
|
10658
10817
|
left: calc(-1 * (var(--rb-testimonial-carousel-arrow-size) / 2 + var(--rb-testimonial-carousel-arrow-gap)));
|
|
10659
10818
|
}
|
|
10660
10819
|
|
|
@@ -10662,6 +10821,7 @@ var containerResponsiveThemeCss = `/*
|
|
|
10662
10821
|
right: calc(-1 * (var(--rb-testimonial-carousel-arrow-size) / 2 + var(--rb-testimonial-carousel-arrow-gap)));
|
|
10663
10822
|
}
|
|
10664
10823
|
}
|
|
10824
|
+
}
|
|
10665
10825
|
|
|
10666
10826
|
/*
|
|
10667
10827
|
* Event Details (runtime node)
|
|
@@ -10713,10 +10873,12 @@ var containerResponsiveThemeCss = `/*
|
|
|
10713
10873
|
}
|
|
10714
10874
|
|
|
10715
10875
|
@container rb-site (min-width: 768px) {
|
|
10716
|
-
|
|
10876
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
10877
|
+
:where(.theme-scope) .rb-tiles-grid {
|
|
10717
10878
|
grid-template-columns: repeat(var(--rb-tiles-grid-cols-md, var(--rb-tiles-grid-cols-sm, 2)), minmax(0, 1fr));
|
|
10718
10879
|
}
|
|
10719
10880
|
}
|
|
10881
|
+
}
|
|
10720
10882
|
|
|
10721
10883
|
:where(.theme-scope) :where(.rb-tile--interactive, .er-event-card) {
|
|
10722
10884
|
cursor: pointer;
|
|
@@ -10821,10 +10983,12 @@ var containerResponsiveThemeCss = `/*
|
|
|
10821
10983
|
}
|
|
10822
10984
|
|
|
10823
10985
|
@container rb-site (min-width: 768px) {
|
|
10824
|
-
|
|
10986
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
10987
|
+
:where(.theme-scope) :where([data-block="course-registration"]) .cr-layout--with-sidebar {
|
|
10825
10988
|
grid-template-columns: 1fr 280px;
|
|
10826
10989
|
}
|
|
10827
10990
|
}
|
|
10991
|
+
}
|
|
10828
10992
|
|
|
10829
10993
|
:where(.theme-scope) :where([data-block="course-registration"]) .cr-layout__main {
|
|
10830
10994
|
min-width: 0;
|
|
@@ -10835,10 +10999,12 @@ var containerResponsiveThemeCss = `/*
|
|
|
10835
10999
|
}
|
|
10836
11000
|
|
|
10837
11001
|
@container rb-site (min-width: 768px) {
|
|
10838
|
-
|
|
11002
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
11003
|
+
:where(.theme-scope) :where([data-block="course-registration"]) .cr-layout__sidebar {
|
|
10839
11004
|
display: block;
|
|
10840
11005
|
}
|
|
10841
11006
|
}
|
|
11007
|
+
}
|
|
10842
11008
|
|
|
10843
11009
|
/* =============================================================================
|
|
10844
11010
|
* Step Indicator
|
|
@@ -10889,10 +11055,12 @@ var containerResponsiveThemeCss = `/*
|
|
|
10889
11055
|
}
|
|
10890
11056
|
|
|
10891
11057
|
@container rb-site (min-width: 640px) {
|
|
10892
|
-
|
|
11058
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
11059
|
+
:where(.theme-scope) :where([data-block="course-registration"]) .cr-step-label {
|
|
10893
11060
|
display: block;
|
|
10894
11061
|
}
|
|
10895
11062
|
}
|
|
11063
|
+
}
|
|
10896
11064
|
|
|
10897
11065
|
:where(.theme-scope) :where([data-block="course-registration"]) .cr-step-label--active {
|
|
10898
11066
|
color: var(--cr-on-surface);
|
|
@@ -11775,7 +11943,8 @@ var containerResponsiveThemeCss = `/*
|
|
|
11775
11943
|
|
|
11776
11944
|
/* Mobile fallback for inline variant */
|
|
11777
11945
|
@container rb-site (max-width: 640px) {
|
|
11778
|
-
|
|
11946
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
11947
|
+
:where(.theme-scope) .newsletter-inline .newsletter-form-fields {
|
|
11779
11948
|
flex-direction: column;
|
|
11780
11949
|
}
|
|
11781
11950
|
|
|
@@ -11783,6 +11952,7 @@ var containerResponsiveThemeCss = `/*
|
|
|
11783
11952
|
min-width: 100%;
|
|
11784
11953
|
}
|
|
11785
11954
|
}
|
|
11955
|
+
}
|
|
11786
11956
|
|
|
11787
11957
|
/* =============================================================================
|
|
11788
11958
|
* Success State
|
|
@@ -11820,12 +11990,14 @@ var containerResponsiveThemeCss = `/*
|
|
|
11820
11990
|
}
|
|
11821
11991
|
|
|
11822
11992
|
@container rb-site (min-width: 1024px) {
|
|
11823
|
-
|
|
11993
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
11994
|
+
:where(.theme-scope) :where([data-block="team-members"]) :where(.rb-team-members[data-layout-width="lg-3-4-left"]) {
|
|
11824
11995
|
width: 75%;
|
|
11825
11996
|
margin-left: 0;
|
|
11826
11997
|
margin-right: auto;
|
|
11827
11998
|
}
|
|
11828
11999
|
}
|
|
12000
|
+
}
|
|
11829
12001
|
|
|
11830
12002
|
:where(.theme-scope) :where([data-block="team-members"]) .rb-team-member-photo {
|
|
11831
12003
|
display: block;
|
|
@@ -11900,7 +12072,8 @@ var containerResponsiveThemeCss = `/*
|
|
|
11900
12072
|
}
|
|
11901
12073
|
|
|
11902
12074
|
@container rb-site (min-width: 768px) {
|
|
11903
|
-
|
|
12075
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
12076
|
+
/* Stack variant: enforce real column ratio at md+ (fixes transform/fallback pitfalls). */
|
|
11904
12077
|
:where(.theme-scope) :where([data-block="team-members"][data-block-variant="stack"]) :where(.rb-team-member-photo-col) {
|
|
11905
12078
|
flex: 0 0 var(--rb-team-image-basis);
|
|
11906
12079
|
}
|
|
@@ -11924,6 +12097,7 @@ var containerResponsiveThemeCss = `/*
|
|
|
11924
12097
|
flex-direction: row-reverse;
|
|
11925
12098
|
}
|
|
11926
12099
|
}
|
|
12100
|
+
}
|
|
11927
12101
|
|
|
11928
12102
|
/* Thumbnail padding (space around image inside the item) */
|
|
11929
12103
|
:where(.theme-scope) :where([data-block="team-members"]) .rb-team-members[data-thumb-pad="sm"] .rb-team-member-photo-wrap {
|
|
@@ -12126,18 +12300,19 @@ function ThemeScopeCore({
|
|
|
12126
12300
|
children,
|
|
12127
12301
|
className
|
|
12128
12302
|
}) {
|
|
12129
|
-
const
|
|
12303
|
+
const responsiveScope = getResponsiveScopeSpec(responsiveMode);
|
|
12304
|
+
const isContainerResponsive = responsiveScope.kind === "container";
|
|
12130
12305
|
const wrapperStyle = isContainerResponsive ? {
|
|
12131
12306
|
...cssVars,
|
|
12132
12307
|
containerType: "inline-size",
|
|
12133
|
-
containerName:
|
|
12308
|
+
containerName: responsiveScope.containerName
|
|
12134
12309
|
} : cssVars;
|
|
12135
12310
|
return /* @__PURE__ */ jsxs3(
|
|
12136
12311
|
"div",
|
|
12137
12312
|
{
|
|
12138
12313
|
className: className ? `theme-scope ${className}` : "theme-scope",
|
|
12139
12314
|
style: wrapperStyle,
|
|
12140
|
-
"data-rb-responsive-mode":
|
|
12315
|
+
"data-rb-responsive-mode": responsiveScope.kind,
|
|
12141
12316
|
...dataAttrs,
|
|
12142
12317
|
suppressHydrationWarning,
|
|
12143
12318
|
children: [
|
|
@@ -12145,25 +12320,131 @@ function ThemeScopeCore({
|
|
|
12145
12320
|
"style",
|
|
12146
12321
|
{
|
|
12147
12322
|
"data-container-responsive-overrides": true,
|
|
12148
|
-
dangerouslySetInnerHTML: {
|
|
12323
|
+
dangerouslySetInnerHTML: {
|
|
12324
|
+
__html: escapeStyleContent(containerResponsiveThemeCss)
|
|
12325
|
+
}
|
|
12326
|
+
}
|
|
12327
|
+
),
|
|
12328
|
+
layoutCss && /* @__PURE__ */ jsx3(
|
|
12329
|
+
"style",
|
|
12330
|
+
{
|
|
12331
|
+
"data-layout-styles": true,
|
|
12332
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(layoutCss) }
|
|
12333
|
+
}
|
|
12334
|
+
),
|
|
12335
|
+
buttonCss && /* @__PURE__ */ jsx3(
|
|
12336
|
+
"style",
|
|
12337
|
+
{
|
|
12338
|
+
"data-button-effects": true,
|
|
12339
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(buttonCss) }
|
|
12340
|
+
}
|
|
12341
|
+
),
|
|
12342
|
+
headerCss && /* @__PURE__ */ jsx3(
|
|
12343
|
+
"style",
|
|
12344
|
+
{
|
|
12345
|
+
"data-header-styles": true,
|
|
12346
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(headerCss) }
|
|
12347
|
+
}
|
|
12348
|
+
),
|
|
12349
|
+
footerCss && /* @__PURE__ */ jsx3(
|
|
12350
|
+
"style",
|
|
12351
|
+
{
|
|
12352
|
+
"data-footer-styles": true,
|
|
12353
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(footerCss) }
|
|
12354
|
+
}
|
|
12355
|
+
),
|
|
12356
|
+
cardCss && /* @__PURE__ */ jsx3(
|
|
12357
|
+
"style",
|
|
12358
|
+
{
|
|
12359
|
+
"data-card-styles": true,
|
|
12360
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(cardCss) }
|
|
12361
|
+
}
|
|
12362
|
+
),
|
|
12363
|
+
accordionCss && /* @__PURE__ */ jsx3(
|
|
12364
|
+
"style",
|
|
12365
|
+
{
|
|
12366
|
+
"data-accordion-styles": true,
|
|
12367
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(accordionCss) }
|
|
12368
|
+
}
|
|
12369
|
+
),
|
|
12370
|
+
inputCss && /* @__PURE__ */ jsx3(
|
|
12371
|
+
"style",
|
|
12372
|
+
{
|
|
12373
|
+
"data-input-styles": true,
|
|
12374
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(inputCss) }
|
|
12375
|
+
}
|
|
12376
|
+
),
|
|
12377
|
+
statusCss && /* @__PURE__ */ jsx3(
|
|
12378
|
+
"style",
|
|
12379
|
+
{
|
|
12380
|
+
"data-status-styles": true,
|
|
12381
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(statusCss) }
|
|
12382
|
+
}
|
|
12383
|
+
),
|
|
12384
|
+
progressCss && /* @__PURE__ */ jsx3(
|
|
12385
|
+
"style",
|
|
12386
|
+
{
|
|
12387
|
+
"data-progress-styles": true,
|
|
12388
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(progressCss) }
|
|
12389
|
+
}
|
|
12390
|
+
),
|
|
12391
|
+
typographyCss && /* @__PURE__ */ jsx3(
|
|
12392
|
+
"style",
|
|
12393
|
+
{
|
|
12394
|
+
"data-typography-styles": true,
|
|
12395
|
+
dangerouslySetInnerHTML: {
|
|
12396
|
+
__html: escapeStyleContent(typographyCss)
|
|
12397
|
+
}
|
|
12398
|
+
}
|
|
12399
|
+
),
|
|
12400
|
+
eventCalendarCss && /* @__PURE__ */ jsx3(
|
|
12401
|
+
"style",
|
|
12402
|
+
{
|
|
12403
|
+
"data-event-calendar-styles": true,
|
|
12404
|
+
dangerouslySetInnerHTML: {
|
|
12405
|
+
__html: escapeStyleContent(eventCalendarCss)
|
|
12406
|
+
}
|
|
12407
|
+
}
|
|
12408
|
+
),
|
|
12409
|
+
blockVarsCss && /* @__PURE__ */ jsx3(
|
|
12410
|
+
"style",
|
|
12411
|
+
{
|
|
12412
|
+
"data-block-vars-styles": true,
|
|
12413
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(blockVarsCss) }
|
|
12414
|
+
}
|
|
12415
|
+
),
|
|
12416
|
+
blockCustomVarsCss && /* @__PURE__ */ jsx3(
|
|
12417
|
+
"style",
|
|
12418
|
+
{
|
|
12419
|
+
"data-block-custom-vars-styles": true,
|
|
12420
|
+
dangerouslySetInnerHTML: {
|
|
12421
|
+
__html: escapeStyleContent(blockCustomVarsCss)
|
|
12422
|
+
}
|
|
12423
|
+
}
|
|
12424
|
+
),
|
|
12425
|
+
blockCustomCss && /* @__PURE__ */ jsx3(
|
|
12426
|
+
"style",
|
|
12427
|
+
{
|
|
12428
|
+
"data-block-custom-styles": true,
|
|
12429
|
+
dangerouslySetInnerHTML: {
|
|
12430
|
+
__html: escapeStyleContent(blockCustomCss)
|
|
12431
|
+
}
|
|
12432
|
+
}
|
|
12433
|
+
),
|
|
12434
|
+
atRulesCss && /* @__PURE__ */ jsx3(
|
|
12435
|
+
"style",
|
|
12436
|
+
{
|
|
12437
|
+
"data-at-rules-styles": true,
|
|
12438
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(atRulesCss) }
|
|
12439
|
+
}
|
|
12440
|
+
),
|
|
12441
|
+
customCss && /* @__PURE__ */ jsx3(
|
|
12442
|
+
"style",
|
|
12443
|
+
{
|
|
12444
|
+
"data-custom-theme-styles": true,
|
|
12445
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(customCss) }
|
|
12149
12446
|
}
|
|
12150
12447
|
),
|
|
12151
|
-
layoutCss && /* @__PURE__ */ jsx3("style", { "data-layout-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(layoutCss) } }),
|
|
12152
|
-
buttonCss && /* @__PURE__ */ jsx3("style", { "data-button-effects": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(buttonCss) } }),
|
|
12153
|
-
headerCss && /* @__PURE__ */ jsx3("style", { "data-header-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(headerCss) } }),
|
|
12154
|
-
footerCss && /* @__PURE__ */ jsx3("style", { "data-footer-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(footerCss) } }),
|
|
12155
|
-
cardCss && /* @__PURE__ */ jsx3("style", { "data-card-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(cardCss) } }),
|
|
12156
|
-
accordionCss && /* @__PURE__ */ jsx3("style", { "data-accordion-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(accordionCss) } }),
|
|
12157
|
-
inputCss && /* @__PURE__ */ jsx3("style", { "data-input-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(inputCss) } }),
|
|
12158
|
-
statusCss && /* @__PURE__ */ jsx3("style", { "data-status-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(statusCss) } }),
|
|
12159
|
-
progressCss && /* @__PURE__ */ jsx3("style", { "data-progress-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(progressCss) } }),
|
|
12160
|
-
typographyCss && /* @__PURE__ */ jsx3("style", { "data-typography-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(typographyCss) } }),
|
|
12161
|
-
eventCalendarCss && /* @__PURE__ */ jsx3("style", { "data-event-calendar-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(eventCalendarCss) } }),
|
|
12162
|
-
blockVarsCss && /* @__PURE__ */ jsx3("style", { "data-block-vars-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(blockVarsCss) } }),
|
|
12163
|
-
blockCustomVarsCss && /* @__PURE__ */ jsx3("style", { "data-block-custom-vars-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(blockCustomVarsCss) } }),
|
|
12164
|
-
blockCustomCss && /* @__PURE__ */ jsx3("style", { "data-block-custom-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(blockCustomCss) } }),
|
|
12165
|
-
atRulesCss && /* @__PURE__ */ jsx3("style", { "data-at-rules-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(atRulesCss) } }),
|
|
12166
|
-
customCss && /* @__PURE__ */ jsx3("style", { "data-custom-theme-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(customCss) } }),
|
|
12167
12448
|
children
|
|
12168
12449
|
]
|
|
12169
12450
|
}
|