@icvdeveloper/common-module 2.0.0 → 2.1.0
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 +2 -0
- package/dist/module.d.mts +1051 -2
- package/dist/module.d.ts +1051 -2
- package/dist/module.json +1 -1
- package/dist/module.mjs +21 -17
- package/dist/runtime/analytics.d.ts +1 -6
- package/dist/runtime/assets/scss/_agenda.css +1 -0
- package/dist/runtime/assets/scss/_animations.css +1 -0
- package/dist/runtime/assets/scss/_container_variants.css +1 -0
- package/dist/runtime/assets/scss/_custom.css +3 -0
- package/dist/runtime/assets/scss/_forms.css +1 -0
- package/dist/runtime/assets/scss/_header.css +0 -0
- package/dist/runtime/assets/scss/_index_production.css +1 -0
- package/dist/runtime/assets/scss/_transitions.css +1 -0
- package/dist/runtime/assets/scss/_variables.css +1 -0
- package/dist/runtime/assets/scss/_variables2.css +0 -0
- package/dist/runtime/assets/scss/_webcast.css +1 -0
- package/dist/runtime/assets/scss/index.css +1 -0
- package/dist/runtime/components/affiliates/AffiliateModal.vue +1 -1
- package/dist/runtime/components/affiliates/AffiliatePage.vue +70 -105
- package/dist/runtime/components/agenda/AgendaList.vue +18 -14
- package/dist/runtime/components/agenda/AgendaTabbed.vue +21 -24
- package/dist/runtime/components/agenda/components/AgendaListAccordion.vue +8 -3
- package/dist/runtime/components/agenda/components/Calendar.vue +17 -17
- package/dist/runtime/components/agenda/components/Favorite.vue +7 -5
- package/dist/runtime/components/agenda/components/InfoLink.vue +15 -5
- package/dist/runtime/components/agenda/components/PlayIcon.vue +2 -4
- package/dist/runtime/components/agenda/components/PresentationLink.vue +16 -9
- package/dist/runtime/components/agenda/components/Sponsor.vue +31 -24
- package/dist/runtime/components/auth/PasswordReset.vue +20 -5
- package/dist/runtime/components/auth/Registration.vue +14 -4
- package/dist/runtime/components/auth/Ucc.vue +44 -27
- package/dist/runtime/components/chat/ChatConversationList.vue +11 -11
- package/dist/runtime/components/chat/ChatCreateConversation.vue +41 -47
- package/dist/runtime/components/chat/ChatCreateGroupConversation.vue +6 -11
- package/dist/runtime/components/chat/ChatHeader.vue +46 -47
- package/dist/runtime/components/chat/ChatShowConversation.vue +1 -2
- package/dist/runtime/components/chat/ChatWidget.vue +1 -26
- package/dist/runtime/components/chat/ChatWindow.vue +4 -61
- package/dist/runtime/components/chat/MessageInput.vue +1 -4
- package/dist/runtime/components/chat/SearchInput.vue +1 -1
- package/dist/runtime/components/core/Accordion.vue +11 -11
- package/dist/runtime/components/core/AttendeeList.vue +8 -22
- package/dist/runtime/components/core/CountdownTimer.vue +67 -51
- package/dist/runtime/components/core/DynamicHtml.vue.d.ts +6 -9
- package/dist/runtime/components/core/Modal.vue +3 -9
- package/dist/runtime/components/core/ModalButton.vue +2 -2
- package/dist/runtime/components/core/Navbar.vue +30 -18
- package/dist/runtime/components/core/Navigation.vue +22 -29
- package/dist/runtime/components/core/SvgIcon.vue +4 -1
- package/dist/runtime/components/core/VButton.vue +2 -8
- package/dist/runtime/components/core/ZoomModal.vue +9 -3
- package/dist/runtime/components/events/EventHeader.vue +14 -4
- package/dist/runtime/components/events/ListEvents.vue +18 -18
- package/dist/runtime/components/forms/Message.vue +1 -1
- package/dist/runtime/components/forms/SearchInput.vue +8 -2
- package/dist/runtime/components/forms/SelectDropDown.vue +4 -4
- package/dist/runtime/components/forms/SupportForm.vue +18 -7
- package/dist/runtime/components/forms/SwitchInput.vue +50 -30
- package/dist/runtime/components/forms/TextArea.vue +1 -1
- package/dist/runtime/components/forms/TextInput.vue +1 -1
- package/dist/runtime/components/layouts/Accordion.vue +9 -4
- package/dist/runtime/components/media/ArchivePlayerAndContentContainer.vue +4 -1
- package/dist/runtime/components/media/ArchiveVideoPlayer.vue +5 -17
- package/dist/runtime/components/media/PlayerAndContentContainer.vue +4 -1
- package/dist/runtime/components/media/WebcastVideoPlayer.vue +5 -17
- package/dist/runtime/components/media/components/AgendaPanel.vue +7 -6
- package/dist/runtime/components/media/components/ArchiveMediaContainer.vue +9 -7
- package/dist/runtime/components/media/components/CeCreditNotification.vue +6 -6
- package/dist/runtime/components/media/components/ContentArea.vue +8 -4
- package/dist/runtime/components/media/components/ContentTabs.vue +38 -26
- package/dist/runtime/components/media/components/DocumentsPanel.vue +17 -15
- package/dist/runtime/components/media/components/MediaContainer.vue +10 -8
- package/dist/runtime/components/media/components/OverviewPanel.vue +5 -2
- package/dist/runtime/components/media/components/PresentersPanel.vue +11 -11
- package/dist/runtime/components/media/components/SponsorsPanel.vue +10 -9
- package/dist/runtime/components/presenters/PresenterListing.vue +3 -5
- package/dist/runtime/components/presenters/Presenters.vue +8 -8
- package/dist/runtime/components/profile/components/SidebarNavItem.vue +1 -3
- package/dist/runtime/components/profile/tabs/ProfileImage.vue +7 -6
- package/dist/runtime/components/registration/AlreadyRegisteredModal.vue +10 -7
- package/dist/runtime/components/registration/PaymentForm.vue +10 -10
- package/dist/runtime/components/registration/RegistrationForm.vue +2 -2
- package/dist/runtime/components/registration/RegistrationGroupSelect.vue +11 -7
- package/dist/runtime/components/registration/StripePaymentForm.vue +11 -31
- package/dist/runtime/components/support/FAQAccordion.vue +8 -7
- package/dist/runtime/composables/useAdobeLaunch.d.ts +2 -7
- package/dist/runtime/composables/useAdobeLaunch.mjs +2 -2
- package/dist/runtime/composables/useAgenda.d.ts +1 -1
- package/dist/runtime/composables/useAgenda.mjs +28 -19
- package/dist/runtime/composables/useApi.d.ts +1 -1
- package/dist/runtime/composables/useAuth.d.ts +1 -1
- package/dist/runtime/composables/useClassBinding.d.ts +3 -1
- package/dist/runtime/composables/useConferenceHelpers.d.ts +2 -2
- package/dist/runtime/composables/useConferenceHelpers.mjs +11 -14
- package/dist/runtime/composables/useEventHooks.d.ts +6 -3
- package/dist/runtime/composables/useEvents.mjs +7 -9
- package/dist/runtime/composables/useLogin.mjs +2 -2
- package/dist/runtime/composables/useNavigation.d.ts +1 -1
- package/dist/runtime/composables/useNavigation.mjs +4 -2
- package/dist/runtime/composables/usePresentation.d.ts +2 -2
- package/dist/runtime/composables/usePresentation.mjs +7 -6
- package/dist/runtime/composables/usePresenter.d.ts +2 -2
- package/dist/runtime/composables/usePresenters.d.ts +2 -2
- package/dist/runtime/composables/useScripts.mjs +1 -1
- package/dist/runtime/composables/useStream.d.ts +2 -3
- package/dist/runtime/composables/useStream.mjs +1 -1
- package/dist/runtime/composables/useUcc.d.ts +1 -1
- package/dist/runtime/composables/useUcc.mjs +29 -23
- package/dist/runtime/models/adobeLaunch.d.ts +6 -0
- package/dist/runtime/models/adobeLaunch.mjs +0 -0
- package/dist/runtime/models/analytics.d.ts +6 -0
- package/dist/runtime/models/analytics.mjs +0 -0
- package/dist/runtime/models/attendeeList.d.ts +1 -1
- package/dist/runtime/models/conference.d.ts +109 -92
- package/dist/runtime/models/conversation.d.ts +10 -10
- package/dist/runtime/models/document.d.ts +5 -5
- package/dist/runtime/models/globalConfig.d.ts +4 -2
- package/dist/runtime/models/group.d.ts +18 -18
- package/dist/runtime/models/icons.d.ts +1 -1
- package/dist/runtime/models/index.d.ts +20 -0
- package/dist/runtime/models/index.mjs +20 -0
- package/dist/runtime/models/link.d.ts +4 -4
- package/dist/runtime/models/loginParams.d.ts +5 -0
- package/dist/runtime/models/loginParams.mjs +0 -0
- package/dist/runtime/models/navigationConfig.d.ts +7 -7
- package/dist/runtime/models/pagination.d.ts +11 -11
- package/dist/runtime/models/portal.d.ts +15 -10
- package/dist/runtime/models/templateConfig.d.ts +7 -7
- package/dist/runtime/models/ucc.d.ts +22 -0
- package/dist/runtime/models/ucc.mjs +0 -0
- package/dist/runtime/models/user.d.ts +24 -12
- package/dist/runtime/models/vButton.d.ts +7 -0
- package/dist/runtime/models/vButton.mjs +0 -0
- package/dist/runtime/models/video.d.ts +5 -4
- package/dist/runtime/models/virtualPagesConfig.d.ts +11 -123
- package/dist/runtime/plugin.mjs +12 -9
- package/dist/runtime/store/affiliates.d.ts +1 -1
- package/dist/runtime/store/attendeeList.d.ts +1 -1
- package/dist/runtime/store/auth.d.ts +3 -7
- package/dist/runtime/store/conferences.mjs +8 -8
- package/dist/runtime/store/conversations.d.ts +26 -3988
- package/dist/runtime/store/conversations.mjs +7 -7
- package/dist/runtime/store/modalPlayerConfig.d.ts +17 -488
- package/dist/runtime/store/modalPlayerConfig.mjs +1 -1
- package/dist/runtime/store/navigationConfig.d.ts +1 -1
- package/dist/runtime/store/presentations.d.ts +2 -2
- package/dist/runtime/store/templateConfigs.d.ts +6 -6
- package/dist/runtime/store/templateConfigs.mjs +6 -6
- package/dist/runtime/store/user.mjs +0 -1
- package/dist/runtime/v3plusCommonPlugin.d.ts +1 -1
- package/dist/types.d.mts +3 -2
- package/dist/types.d.ts +3 -2
- package/package.json +12 -12
- package/dist/runtime/components/media/components/JsonApi.vue +0 -33
- package/dist/runtime/components/media/components/JsonApi.vue.d.ts +0 -16
- package/dist/runtime/components/media/components/WindowContent.vue +0 -118
- package/dist/runtime/components/media/components/WindowContent.vue.d.ts +0 -50
- package/dist/runtime/components/media/components/WindowSlide.vue +0 -92
- package/dist/runtime/components/media/components/WindowSlide.vue.d.ts +0 -36
- package/dist/runtime/models/authUser.d.ts +0 -17
- /package/dist/runtime/{models/authUser.mjs → assets/scss/_footer.css} +0 -0
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -31,6 +31,8 @@ var PresentationType = /* @__PURE__ */ ((PresentationType2) => {
|
|
|
31
31
|
return PresentationType2;
|
|
32
32
|
})(PresentationType || {});
|
|
33
33
|
|
|
34
|
+
const PAGE_LENGTH = 15;
|
|
35
|
+
|
|
34
36
|
const module = defineNuxtModule({
|
|
35
37
|
meta: {
|
|
36
38
|
name: "v3plus-common-module",
|
|
@@ -81,80 +83,82 @@ const module = defineNuxtModule({
|
|
|
81
83
|
addPlugin(resolve(runtimeDir, "plugin"));
|
|
82
84
|
nuxt.options.css.push("nprogress/nprogress.css");
|
|
83
85
|
if (options.compileCss) {
|
|
84
|
-
nuxt.options.css.push(join(runtimeDir, "assets/scss/index.
|
|
86
|
+
nuxt.options.css.push(join(runtimeDir, "assets/scss/index.css"));
|
|
85
87
|
} else {
|
|
86
88
|
nuxt.options.css.push(join(runtimeDir, "assets/scss/index.css"));
|
|
87
89
|
}
|
|
88
90
|
if (nuxt.options.vite.optimizeDeps) {
|
|
89
|
-
nuxt.options.vite.optimizeDeps.include = ["nprogress"];
|
|
91
|
+
nuxt.options.vite.optimizeDeps.include = ["nprogress", "lodash-es", "pusher-js"];
|
|
90
92
|
} else {
|
|
91
93
|
nuxt.options.vite.optimizeDeps = {
|
|
92
|
-
include: ["nprogress"]
|
|
94
|
+
include: ["nprogress", "lodash-es", "pusher-js"]
|
|
93
95
|
};
|
|
94
96
|
}
|
|
97
|
+
addImportsDir(join(runtimeDir, "models"));
|
|
98
|
+
addImportsDir(join(runtimeDir, "@types"));
|
|
95
99
|
addImportsDir(join(runtimeDir, "store"));
|
|
96
100
|
addImportsDir(join(runtimeDir, "composables"));
|
|
97
|
-
addComponentsDir({
|
|
101
|
+
await addComponentsDir({
|
|
98
102
|
path: join(runtimeDir, "components/core"),
|
|
99
103
|
extensions: ["vue"],
|
|
100
104
|
prefix: "Common"
|
|
101
105
|
});
|
|
102
|
-
addComponentsDir({
|
|
106
|
+
await addComponentsDir({
|
|
103
107
|
path: join(runtimeDir, "components/auth"),
|
|
104
108
|
extensions: ["vue"],
|
|
105
109
|
prefix: "Common"
|
|
106
110
|
});
|
|
107
|
-
addComponentsDir({
|
|
111
|
+
await addComponentsDir({
|
|
108
112
|
path: join(runtimeDir, "components/agenda"),
|
|
109
113
|
extensions: ["vue"],
|
|
110
114
|
prefix: "Common"
|
|
111
115
|
});
|
|
112
|
-
addComponentsDir({
|
|
116
|
+
await addComponentsDir({
|
|
113
117
|
path: join(runtimeDir, "components/events"),
|
|
114
118
|
extensions: ["vue"],
|
|
115
119
|
prefix: "Common"
|
|
116
120
|
});
|
|
117
|
-
addComponentsDir({
|
|
121
|
+
await addComponentsDir({
|
|
118
122
|
path: join(runtimeDir, "components/forms"),
|
|
119
123
|
extensions: ["vue"],
|
|
120
124
|
prefix: "Common"
|
|
121
125
|
});
|
|
122
|
-
addComponentsDir({
|
|
126
|
+
await addComponentsDir({
|
|
123
127
|
path: join(runtimeDir, "components/affiliates"),
|
|
124
128
|
extensions: ["vue"],
|
|
125
129
|
prefix: "Common"
|
|
126
130
|
});
|
|
127
|
-
addComponentsDir({
|
|
131
|
+
await addComponentsDir({
|
|
128
132
|
path: join(runtimeDir, "components/layouts"),
|
|
129
133
|
extensions: ["vue"],
|
|
130
134
|
prefix: "Common"
|
|
131
135
|
});
|
|
132
|
-
addComponentsDir({
|
|
136
|
+
await addComponentsDir({
|
|
133
137
|
path: join(runtimeDir, "components/presenters"),
|
|
134
138
|
extensions: ["vue"],
|
|
135
139
|
prefix: "Common"
|
|
136
140
|
});
|
|
137
|
-
addComponentsDir({
|
|
141
|
+
await addComponentsDir({
|
|
138
142
|
path: join(runtimeDir, "components/profile"),
|
|
139
143
|
extensions: ["vue"],
|
|
140
144
|
prefix: "Common"
|
|
141
145
|
});
|
|
142
|
-
addComponentsDir({
|
|
146
|
+
await addComponentsDir({
|
|
143
147
|
path: join(runtimeDir, "components/support"),
|
|
144
148
|
extensions: ["vue"],
|
|
145
149
|
prefix: "Common"
|
|
146
150
|
});
|
|
147
|
-
addComponentsDir({
|
|
151
|
+
await addComponentsDir({
|
|
148
152
|
path: join(runtimeDir, "components/media"),
|
|
149
153
|
extensions: ["vue"],
|
|
150
154
|
prefix: "Common"
|
|
151
155
|
});
|
|
152
|
-
addComponentsDir({
|
|
156
|
+
await addComponentsDir({
|
|
153
157
|
path: join(runtimeDir, "components/registration"),
|
|
154
158
|
extensions: ["vue"],
|
|
155
159
|
prefix: "Common"
|
|
156
160
|
});
|
|
157
|
-
addComponentsDir({
|
|
161
|
+
await addComponentsDir({
|
|
158
162
|
path: join(runtimeDir, "components/chat"),
|
|
159
163
|
extensions: ["vue"],
|
|
160
164
|
prefix: "Common"
|
|
@@ -180,4 +184,4 @@ const module = defineNuxtModule({
|
|
|
180
184
|
}
|
|
181
185
|
});
|
|
182
186
|
|
|
183
|
-
export { ConferenceState, PresentationType, module as default };
|
|
187
|
+
export { ConferenceState, PAGE_LENGTH, PresentationType, module as default };
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export type Analytics = {
|
|
3
|
-
readonly _analytics: AnalyticsInstance | null;
|
|
4
|
-
create: (id: string, userId: number) => void;
|
|
5
|
-
click: (event: string, label: string) => void;
|
|
6
|
-
};
|
|
1
|
+
import type { Analytics } from './models/analytics';
|
|
7
2
|
declare const _default: () => Analytics;
|
|
8
3
|
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "./_variables2.css";.agenda-tab-bg-color{background-color:var(--agenda-tab-bg-color)}.agenda-tab-active-bg-color{background-color:var(--agenda-tab-active-bg-color)}.agenda-tab-sponsor-bg-color{background-color:var(--agenda-tab-sponsor-bg-color)}.agenda-tab-color{color:var(--agenda-tab-color)}.agenda-track-bg-color{background-color:var(--agenda-track-bg-color)}.agenda-track-group-bg-color{background-color:var(--agenda-track-group-bg-color)}.agenda-grouped-track-color-1{background-color:var(--agenda-grouped-track-color-1)}.agenda-grouped-track-color-2{background-color:var(--agenda-grouped-track-color-2)}.agenda-grouped-track-color-3{background-color:var(--agenda-grouped-track-color-3)}.agenda-grouped-track-color-4{background-color:var(--agenda-grouped-track-color-4)}.agenda-grouped-track-text-color{color:var(--agenda-grouped-track-text-color)}.agenda-presenter-color{color:var(--agenda-presenter-color)}.agenda-presenter-color:hover{color:darken(var(--agenda-presenter-color),10)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@keyframes slideInRight{0%{opacity:0;transform:translateX(-20px)}to{opacity:1;transform:translate(0)}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.container-1\/2{width:100%}@screen sm{.container-1\/2{max-width:288px}}@screen md{.container-1\/2{max-width:384px}}@screen lg{.container-1\/2{max-width:496px}}@screen xl{.container-1\/2{max-width:600px}}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
@import "./_variables.css";.bg-color-white{background-color:#fff}.bg-color-white-darker{background-color:darken(#fff,3)}.bg-color-1{background-color:var(--global-color-1)}.bg-color-2{background-color:var(--global-color-2)}.bg-color-3{background-color:var(--global-color-3)}.bg-color-4{background-color:var(--global-color-4)}.bg-color-5{background-color:var(--global-color-5)}.bg-color-6{background-color:var(--global-color-6)}.bg-color-link{background-color:var(--link-color)}.bg-color-1-darker{background-color:darken(var(--global-color-1,10%))}.bg-color-2-darker{background-color:darken(var(--global-color-2,10%))}.bg-color-3-darker{background-color:darken(var(--global-color-3,10%))}.bg-color-4-darker{background-color:darken(var(--global-color-4,10%))}.bg-color-5-darker{background-color:darken(var(--global-color-5,10%))}.bg-color-6-darker{background-color:darken(var(--global-color-6,10%))}.heading-color-1{color:var(--heading-color-1)}.heading-color-2{color:var(--heading-color-2)}.heading-color-3{color:var(--heading-color-3)}.heading-color-4{color:var(--heading-color-4)}.heading-color-5{color:var(--heading-color-5)}.heading-color-6{color:var(--heading-color-6)}.body-color-1{color:var(--body-color-1)}.body-color-2{color:var(--body-color-2)}.body-color-3{color:var(--body-color-3)}.body-color-4{color:var(--body-color-4)}.body-color-5{color:var(--body-color-5)}.body-color-6{color:var(--body-color-6)}.paragraph-color-1{color:var(--paragraph-color-1)}.paragraph-color-2{color:var(--paragraph-color-2)}.nav-color-1{color:var(--nav-color-1)}.nav-color-2{color:var(--nav-color-2)}.nav-color-3{color:var(--nav-color-3)}.nav-color-4{color:var(--nav-color-4)}.nav-color-5{color:var(--nav-color-5)}.button-color-1{background-color:var(--button-color-1)}.button-color-1-darker{background-color:darken(var(--button-color-1,10%))}.button-color-2{background-color:var(--button-color-2)}.button-color-2-darker{background-color:darken(var(--button-color-2,10%))}.button-color-3{background-color:var(--button-color-3)}.button-color-3-darker{background-color:darken(var(--button-color-3,10%))}.accent-color-1{color:var(--accent-color-1)}.accent-color-2{color:var(--accent-color-2)}.accent-color-3{color:var(--accent-color-3)}.border-color-1{border-color:var(--global-color-1)}.border-color-2{border-color:var(--global-color-2)}.border-color-3{border-color:var(--global-color-3)}.border-color-4{border-color:var(--global-color-4)}.border-color-5{border-color:var(--global-color-5)}.border-color-accent-1{border-color:var(--accent-color-1)}.border-color-accent-2{border-color:var(--accent-color-2)}.border-color-accent-3{border-color:var(--accent-color-3)}.border-color-link{border-color:var(--link-color)}html{background-color:var(--global-color-1);color:var(--paragraph-color-1)}body{font-family:var(--font-body-1)}a{color:var(--link-color)}a:hover{color:var(--link-hover)}h1{font-family:var(--font-heading-1)}.font-body-1{font-family:var(--font-body-1)}.font-body-2{font-family:var(--font-body-2)}.font-heading-1{font-family:var(--font-heading-1)}.font-heading-2{font-family:var(--font-heading-2)}@if variable-exists(presenter-name-color){#page-presenters .presenter-name-color{color:var(--presenter-name-color)}}@if variable-exists(presenter-title-color){#page-presenters .presenter-title-color{color:var(--presenter-title-color)}}.grid{display:grid}.place-self-center{place-self:center}.text-xxs{font-size:.5rem}.section-header{@apply mb-0 uppercase tracking-wider}.section-subheader{@apply tracking-wider font-extralight}.contrast-border{border-color:saturate(mix(var(--global-color-1),desaturate(invert(var(--global-color-1)),100%),90%),5%)}.presenter-icon{@apply block mx-1}.presenter-icon svg{@apply w-6 h-auto}.presenter-icon-small{@apply block;margin:0 .2rem}.presenter-icon-small svg{@apply w-4 h-auto}.flex-basis-3{flex-basis:33%}.flex-basis-4{flex-basis:25%}.flex-basis-5{flex-basis:20%}.primary-link{@apply uppercase tracking-wider;font-size:.65rem}.body-copy{@apply paragraph-color-1 font-body-1 text-base leading-normal}.heading-primary{@apply heading-color-1 font-heading-1 leading-normal tracking-wider}.heading-secondary{@apply heading-color-2 font-heading-2 leading-normal tracking-wider}.heading-link{color:var(--body-color-3)}.heading-link:hover{color:saturate(mix(var(--body-color-3),desaturate(invert(var(--body-color-3)),100%),75%),0)}.presenter-name{@apply body-color-4 font-body-1}.presenter-title{@apply body-color-5 font-body-1}.hr-heading{align-items:center;display:grid;grid-template-columns:minmax(20px,1fr) auto minmax(20px,1fr);text-align:center;width:auto;grid-gap:.3em;color:var(--heading-color-5);margin-left:1em;margin-right:1em}.hr-heading:after,.hr-heading:before{border-top:1px solid;border-color:var(--accent-color-2);content:""}.tabs-details{max-height:523px;overflow-y:scroll}.tabs-details li:before{content:"—";@apply text-center mr-4 body-color-1;padding-bottom:.25rem}.conf-name-alignment{margin-top:-.2em}.invert{transform:rotate(180deg)}.span-no-spacing{margin-left:-3px}@if variable-exists(captions-font) and
|
|
2
|
+
variable-exists(captions-text-color) and
|
|
3
|
+
variable-exists(captions-bg-color){.jw-text-track-cue{background-color:var(--captions-bg-color)!important;color:var(--captions-text-color)!important;font-family:var(--captions-font)!important}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.form-input{@apply border rounded w-full py-2 px-3 text-gray-600 leading-tight}.form-input:focus{@apply outline-none shadow}.select-input{@apply border rounded w-full text-gray-600 leading-tight py-1 px-2 h-auto}.select-input:focus{@apply outline-none}.btn{@apply button-color-1 text-white tracking-wider font-bold uppercase py-2 px-4 rounded}.btn:hover{@apply button-color-1-darker}.btn-secondary{@apply text-white button-color-2}.btn-secondary:hover{@apply button-color-2-darker}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@tailwind base;@tailwind components;@import "./_variables.css";@import "./_variables2.css";@import "./_custom.css";@import "./_functions.css";@import "./_animations.css";@import "./_transitions.css";@import "./_header.css";@import "./_footer.css";@import "./_forms.css";@import "./_container_variants.css";@import "./_webcast.css";@import "./_agenda.css";*{box-sizing:border-box;margin:0;padding:0}body{font-size:14px;font-weight:400}h1,p{margin-bottom:1em}blockquote{display:block;margin:1em 40px}@tailwind utilities;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.page-enter-active,.page-leave-active{transition:opacity .25s}.page-enter,.page-leave-to{opacity:0}.fade-enter-active,.fade-leave-active{transition:opacity .5s}.fade-enter,.fade-leave-to{opacity:0}.slide-fade-enter-active{transition:all .3s ease}.slide-fade-leave-active{transition:all .3s cubic-bezier(1,.5,.8,1)}.slide-fade-enter,.slide-fade-leave-to{opacity:0;transform:translateY(-100px)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--global-color-1:#fbfbfb;--global-color-2:#fbfbfb;--global-color-3:#333;--global-color-4:#333;--global-color-5:#333;--global-color-6:#333;--heading-color-1:#fbfbfb;--heading-color-2:#fbfbfb;--heading-color-3:#000;--heading-color-4:#000;--heading-color-5:#000;--heading-color-6:#000;--body-color-1:#000;--body-color-2:teal;--body-color-3:#000;--body-color-4:#7b8fd8;--body-color-5:#febb01;--body-color-6:#febb01;--paragraph-color-1:#000;--paragraph-color-2:#000;--nav-color-1:#fbfbfb;--nav-color-2:#febb01;--nav-color-3:#fbfbfb;--nav-color-4:hsl(from var(--nav-color-3) h s 60%);--nav-color-5:#000;--accent-color-1:#febb01;--accent-color-2:#febb01;--accent-color-3:#000;--link-color:#7b8fd8;--link-hover:hsl(from var(--link-color) h s 60%);--button-color-1:#febb01;--button-color-2:#7b8fd8;--button-color-3:#7b8fd8;--font-body-1:"Arial","Helvetica",sans-serif;--font-body-2:"Arial","Helvetica",sans-serif;--font-heading-1:"Arial","Helvetica",sans-serif;--font-heading-2:"Arial","Helvetica",sans-serif;--captions-font:"Arial","Helvetica",sans-serif;--captions-text-color:#fff;--captions-bg-color:rgba(0,0,0,.5);--agenda-tab-bg-color:#0070ff;--agenda-tab-active-bg-color:#eb455a;--agenda-tab-sponsor-bg-color:#dedede;--agenda-tab-color:#fff;--agenda-track-bg-color:#cadffc;--agenda-track-group-bg-color:#aaa;--agenda-grouped-track-color-1:#cadffc;--agenda-grouped-track-color-2:#cadffc;--agenda-grouped-track-color-3:#cadffc;--agenda-grouped-track-color-4:#cadffc;--agenda-grouped-track-text-color:#000;--agenda-presenter-color:#eb455a}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--video-width:640px}.no-scrollbar{scrollbar-width:none;-ms-overflow-style:none}.no-scrollbar::-webkit-scrollbar{display:none}.expand-overlay>a{@apply cursor-pointer text-white rounded-sm p-1 bg-gray-500 inline-block}.pop-window{border-style:solid;border-width:1px;@apply border-gray-500}.pop-window-active{border-style:dashed!important;border-width:1px;@apply border-gray-600}.flex-ratio-container{@apply flex flex-col w-full md:relative md:flex-row lg:mb-8;@screen md{height:0;padding-top:calc(36.69% + .4rem)}@screen lg{padding-top:calc(36.69% + 2.65rem)}}.flex-ratio-audio-slide-container{@apply flex flex-col w-full xl:relative xl:flex-row xl:mb-8;@screen xl{height:0;padding-top:calc(36.69% + 2.9rem)}}.flex-ratio-audio-container{@apply flex flex-col w-full}.flex-ratio-slide-container{@apply flex flex-col w-full xl:relative xl:flex-row xl:mb-8;@screen xl{height:0;padding-top:calc(36.69% + 2.9rem)}}.player-ratio-outer{width:100%;@apply md:top-0 md:h-full md:absolute;@screen md{width:65%}}.player-ratio-inner{@apply block}.player-slide-ratio-outer{width:100%;@apply xl:top-0 xl:h-full xl:absolute;@screen xl{width:80%}}.player-audio-ratio-outer{width:100%}.content-ratio-outer{@apply no-scrollbar w-full overflow-y-scroll md:top-0 md:h-full md:max-h-full md:absolute;max-height:500px;@screen md{width:35%}}.content-slide-ratio-outer{@apply no-scrollbar w-full overflow-y-scroll xl:top-0 xl:h-full xl:max-h-full xl:absolute;max-height:500px;@screen xl{width:20%}}.content-audio-ratio-outer{@apply no-scrollbar w-full overflow-y-scroll;max-height:500px}.content-ratio-inner{@apply block h-full pb-2 px-2 no-scrollbar md:p-2}.bottom-tab-bar{@apply relative pr-8 z-50;margin-top:-54px;width:58%}.webcast-sponsor{max-height:3.5rem;@screen md{max-height:3rem}@screen xl{max-height:5rem}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "./_variables.css";@import "./_custom.css";@import "./_animations.css";@import "./_transitions.css";@import "./_header.css";@import "./_footer.css";@import "./_forms.css";@import "./_container_variants.css";@import "./_webcast.css";@import "./_agenda.css";*{box-sizing:border-box;margin:0;padding:0}body{font-size:14px;font-weight:400}h1,p{margin-bottom:1em}blockquote{display:block;margin:1em 40px}@tailwind utilities;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script lang="ts" setup>
|
|
2
|
-
import {
|
|
2
|
+
import { toRefs, computed } from "vue";
|
|
3
3
|
import { storeToRefs } from "pinia";
|
|
4
4
|
import { useTemplateConfigsStore } from "../../store/templateConfigs";
|
|
5
5
|
import type { Affiliate } from "../../models/conference";
|
|
@@ -114,7 +114,7 @@ onMounted(() => {
|
|
|
114
114
|
<div
|
|
115
115
|
v-if="getAffiliateContentItem('html_vanity_page')"
|
|
116
116
|
v-html="getAffiliateContentItem('html_vanity_page')"
|
|
117
|
-
|
|
117
|
+
/>
|
|
118
118
|
|
|
119
119
|
<div v-else>
|
|
120
120
|
<div
|
|
@@ -126,8 +126,11 @@ onMounted(() => {
|
|
|
126
126
|
)
|
|
127
127
|
"
|
|
128
128
|
>
|
|
129
|
-
<div
|
|
130
|
-
|
|
129
|
+
<div
|
|
130
|
+
v-if="affiliate.photo"
|
|
131
|
+
class="mb-6 md:mb-0"
|
|
132
|
+
>
|
|
133
|
+
<img :src="affiliate.photo">
|
|
131
134
|
</div>
|
|
132
135
|
<div
|
|
133
136
|
v-if="!affiliate.photo"
|
|
@@ -162,21 +165,14 @@ onMounted(() => {
|
|
|
162
165
|
"
|
|
163
166
|
>
|
|
164
167
|
<p>
|
|
165
|
-
<span v-if="affiliate.contact_address"
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
@click="fireAnalytics('website')"
|
|
174
|
-
class="affiliate-website"
|
|
175
|
-
:href="affiliate.website"
|
|
176
|
-
target="_blank"
|
|
177
|
-
>{{ affiliate.website }}</a
|
|
178
|
-
><br
|
|
179
|
-
/></span>
|
|
168
|
+
<span v-if="affiliate.contact_address">{{ affiliate.contact_address }}<br></span>
|
|
169
|
+
<span v-if="affiliate.contact_location">{{ affiliate.contact_location }}<br></span>
|
|
170
|
+
<span v-if="affiliate.website"><a
|
|
171
|
+
class="affiliate-website"
|
|
172
|
+
:href="affiliate.website"
|
|
173
|
+
target="_blank"
|
|
174
|
+
@click="fireAnalytics('website')"
|
|
175
|
+
>{{ affiliate.website }}</a><br></span>
|
|
180
176
|
</p>
|
|
181
177
|
<span
|
|
182
178
|
:class="
|
|
@@ -188,52 +184,44 @@ onMounted(() => {
|
|
|
188
184
|
"
|
|
189
185
|
>
|
|
190
186
|
<a
|
|
191
|
-
@click="fireAnalytics('twitter')"
|
|
192
187
|
v-if="affiliate.twitter_url"
|
|
193
188
|
:href="affiliate.twitter_url"
|
|
194
189
|
target="_blank"
|
|
195
190
|
class="affiliate-twitter"
|
|
196
191
|
:aria-label="affiliate.name + ` Twitter Page`"
|
|
192
|
+
@click="fireAnalytics('twitter')"
|
|
197
193
|
>
|
|
198
|
-
<span class="presenter-icon"
|
|
199
|
-
><CommonSvgIcon icon="twitter"></CommonSvgIcon
|
|
200
|
-
></span>
|
|
194
|
+
<span class="presenter-icon"><CommonSvgIcon icon="twitter" /></span>
|
|
201
195
|
</a>
|
|
202
196
|
<a
|
|
203
|
-
@click="fireAnalytics('facebook')"
|
|
204
197
|
v-if="affiliate.facebook_url"
|
|
205
198
|
:href="affiliate.facebook_url"
|
|
206
199
|
target="_blank"
|
|
207
200
|
class="affiliate-facebook"
|
|
208
201
|
:aria-label="affiliate.name + ` Facebook Page`"
|
|
202
|
+
@click="fireAnalytics('facebook')"
|
|
209
203
|
>
|
|
210
|
-
<span class="presenter-icon"
|
|
211
|
-
><CommonSvgIcon icon="facebook"></CommonSvgIcon
|
|
212
|
-
></span>
|
|
204
|
+
<span class="presenter-icon"><CommonSvgIcon icon="facebook" /></span>
|
|
213
205
|
</a>
|
|
214
206
|
<a
|
|
215
|
-
@click="fireAnalytics('linked_in')"
|
|
216
207
|
v-if="affiliate.linkedin_url"
|
|
217
208
|
:href="affiliate.linkedin_url"
|
|
218
209
|
target="_blank"
|
|
219
210
|
class="affiliate-linkedin"
|
|
220
211
|
:aria-label="affiliate.name + ` LinkedIn Page`"
|
|
212
|
+
@click="fireAnalytics('linked_in')"
|
|
221
213
|
>
|
|
222
|
-
<span class="presenter-icon"
|
|
223
|
-
><CommonSvgIcon icon="linkedin"></CommonSvgIcon
|
|
224
|
-
></span>
|
|
214
|
+
<span class="presenter-icon"><CommonSvgIcon icon="linkedin" /></span>
|
|
225
215
|
</a>
|
|
226
216
|
<a
|
|
227
|
-
@click="fireAnalytics('youtube')"
|
|
228
217
|
v-if="affiliate.youtube_url"
|
|
229
218
|
:href="affiliate.youtube_url"
|
|
230
219
|
target="_blank"
|
|
231
220
|
class="affiliate-youtube"
|
|
232
221
|
:aria-label="affiliate.name + ` YouTube Page`"
|
|
222
|
+
@click="fireAnalytics('youtube')"
|
|
233
223
|
>
|
|
234
|
-
<span class="presenter-icon"
|
|
235
|
-
><CommonSvgIcon icon="youtube"></CommonSvgIcon
|
|
236
|
-
></span>
|
|
224
|
+
<span class="presenter-icon"><CommonSvgIcon icon="youtube" /></span>
|
|
237
225
|
</a>
|
|
238
226
|
</span>
|
|
239
227
|
</div>
|
|
@@ -241,7 +229,6 @@ onMounted(() => {
|
|
|
241
229
|
|
|
242
230
|
<div
|
|
243
231
|
v-if="getAffiliateContentItem('html_header')"
|
|
244
|
-
v-html="getAffiliateContentItem('html_header')"
|
|
245
232
|
:class="
|
|
246
233
|
classBinding(
|
|
247
234
|
classObject,
|
|
@@ -249,10 +236,10 @@ onMounted(() => {
|
|
|
249
236
|
'w-full mt-5 text-center md:text-left'
|
|
250
237
|
)
|
|
251
238
|
"
|
|
252
|
-
|
|
239
|
+
v-html="getAffiliateContentItem('html_header')"
|
|
240
|
+
/>
|
|
253
241
|
<div
|
|
254
242
|
v-if="affiliate.biography"
|
|
255
|
-
v-html="affiliate.biography"
|
|
256
243
|
:class="
|
|
257
244
|
classBinding(
|
|
258
245
|
classObject,
|
|
@@ -260,7 +247,8 @@ onMounted(() => {
|
|
|
260
247
|
'w-full mt-5 text-center md:text-left'
|
|
261
248
|
)
|
|
262
249
|
"
|
|
263
|
-
|
|
250
|
+
v-html="affiliate.biography"
|
|
251
|
+
/>
|
|
264
252
|
<div
|
|
265
253
|
v-if="contentCount > 0"
|
|
266
254
|
class="grid-container-responsive"
|
|
@@ -274,16 +262,20 @@ onMounted(() => {
|
|
|
274
262
|
>
|
|
275
263
|
<div v-if="affiliate.documents.length > 0">
|
|
276
264
|
<div :class="classBinding(classObject, 'affiliateContentBox', '')">
|
|
277
|
-
<h3 class="mb-3">
|
|
278
|
-
|
|
265
|
+
<h3 class="mb-3">
|
|
266
|
+
Documents
|
|
267
|
+
</h3>
|
|
268
|
+
<span
|
|
269
|
+
v-for="document in affiliate.documents"
|
|
270
|
+
:key="document.id"
|
|
271
|
+
>
|
|
279
272
|
<div class="mb-2">
|
|
280
273
|
<a
|
|
281
|
-
@click="fireAnalytics('document-' + document.name)"
|
|
282
274
|
class="affiliate-document"
|
|
283
275
|
:href="document.url"
|
|
284
276
|
target="_blank"
|
|
285
|
-
|
|
286
|
-
>
|
|
277
|
+
@click="fireAnalytics('document-' + document.name)"
|
|
278
|
+
>{{ document.name }}</a>
|
|
287
279
|
</div>
|
|
288
280
|
</span>
|
|
289
281
|
</div>
|
|
@@ -293,36 +285,35 @@ onMounted(() => {
|
|
|
293
285
|
<div
|
|
294
286
|
v-if="
|
|
295
287
|
affiliate.videos.length == 1 &&
|
|
296
|
-
|
|
288
|
+
getAffiliateContentItem('embed_video') == 1
|
|
297
289
|
"
|
|
298
290
|
>
|
|
299
291
|
<iframe
|
|
300
292
|
:src="getStreamingVideoUrl(affiliate.videos[0].url)"
|
|
301
293
|
width="100%"
|
|
302
294
|
style="max-width: 300px; margin: auto"
|
|
303
|
-
scrolling="no"
|
|
304
|
-
frameborder="0"
|
|
305
|
-
marginheight="0"
|
|
306
|
-
marginwidth="0"
|
|
307
295
|
allowfullscreen=""
|
|
308
|
-
|
|
309
|
-
</iframe>
|
|
296
|
+
/>
|
|
310
297
|
</div>
|
|
311
298
|
<div v-else>
|
|
312
|
-
<h3 class="mb-3">
|
|
299
|
+
<h3 class="mb-3">
|
|
300
|
+
Videos
|
|
301
|
+
</h3>
|
|
313
302
|
<input
|
|
303
|
+
id="affiliateName"
|
|
314
304
|
name="affiliateName"
|
|
315
305
|
type="hidden"
|
|
316
|
-
id="affiliateName"
|
|
317
306
|
:value="affiliate.name"
|
|
318
|
-
|
|
319
|
-
<span
|
|
307
|
+
>
|
|
308
|
+
<span
|
|
309
|
+
v-for="video in affiliate.videos"
|
|
310
|
+
:key="video.id"
|
|
311
|
+
>
|
|
320
312
|
<div class="mb-2">
|
|
321
313
|
<a
|
|
322
314
|
class="affiliate-video-trigger hover:cursor-pointer"
|
|
323
315
|
@click="openVideoModal(video.name, video.url)"
|
|
324
|
-
|
|
325
|
-
>
|
|
316
|
+
>{{ video.name }}</a>
|
|
326
317
|
</div>
|
|
327
318
|
</span>
|
|
328
319
|
</div>
|
|
@@ -330,16 +321,20 @@ onMounted(() => {
|
|
|
330
321
|
</div>
|
|
331
322
|
<div v-if="affiliate.links.length > 0">
|
|
332
323
|
<div :class="classBinding(classObject, 'affiliateContentBox', '')">
|
|
333
|
-
<h3 class="mb-3">
|
|
334
|
-
|
|
324
|
+
<h3 class="mb-3">
|
|
325
|
+
Links
|
|
326
|
+
</h3>
|
|
327
|
+
<span
|
|
328
|
+
v-for="link in affiliate.links"
|
|
329
|
+
:key="link.id"
|
|
330
|
+
>
|
|
335
331
|
<div class="mb-2">
|
|
336
332
|
<a
|
|
337
|
-
@click="fireAnalytics('external_link-' + link.name)"
|
|
338
333
|
:href="link.url"
|
|
339
334
|
class="affiliate-link"
|
|
340
335
|
target="_blank"
|
|
341
|
-
|
|
342
|
-
>
|
|
336
|
+
@click="fireAnalytics('external_link-' + link.name)"
|
|
337
|
+
>{{ link.name }}</a>
|
|
343
338
|
</div>
|
|
344
339
|
</span>
|
|
345
340
|
</div>
|
|
@@ -353,35 +348,31 @@ onMounted(() => {
|
|
|
353
348
|
<div
|
|
354
349
|
v-if="getAffiliateContentItem('custom_box_1')"
|
|
355
350
|
v-html="getAffiliateContentItem('custom_box_1')"
|
|
356
|
-
|
|
351
|
+
/>
|
|
357
352
|
<div v-else-if="hasContactInfo">
|
|
358
353
|
<div class="flex flex-col md:flex-row">
|
|
359
354
|
<div
|
|
360
355
|
v-if="affiliate.contact_photo"
|
|
361
356
|
class="mr-4 w-1/3 mb-3 md:mb-0 self-center md:self-start"
|
|
362
357
|
>
|
|
363
|
-
<img
|
|
358
|
+
<img
|
|
359
|
+
:src="affiliate.contact_photo"
|
|
360
|
+
class="w-full"
|
|
361
|
+
>
|
|
364
362
|
</div>
|
|
365
363
|
<div class="text-center md:text-left">
|
|
366
364
|
<p>Contact:</p>
|
|
367
365
|
<p>
|
|
368
|
-
<span v-if="affiliate.contact_name"
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
<span v-if="affiliate.contact_title"
|
|
372
|
-
>{{ affiliate.contact_title }}<br
|
|
373
|
-
/></span>
|
|
374
|
-
<span v-if="affiliate.contact_phone"
|
|
375
|
-
>Phone: {{ affiliate.contact_phone }}<br
|
|
376
|
-
/></span>
|
|
366
|
+
<span v-if="affiliate.contact_name">{{ affiliate.contact_name }}<br></span>
|
|
367
|
+
<span v-if="affiliate.contact_title">{{ affiliate.contact_title }}<br></span>
|
|
368
|
+
<span v-if="affiliate.contact_phone">Phone: {{ affiliate.contact_phone }}<br></span>
|
|
377
369
|
<span v-if="affiliate.contact_email">
|
|
378
370
|
<a
|
|
379
|
-
@click="fireAnalytics('contact_email')"
|
|
380
371
|
class="affiliate-email"
|
|
381
372
|
:href="'mailto:' + affiliate.contact_email"
|
|
373
|
+
@click="fireAnalytics('contact_email')"
|
|
382
374
|
>
|
|
383
|
-
{{ affiliate.contact_email }} </a
|
|
384
|
-
><br />
|
|
375
|
+
{{ affiliate.contact_email }} </a><br>
|
|
385
376
|
</span>
|
|
386
377
|
</p>
|
|
387
378
|
</div>
|
|
@@ -460,12 +451,12 @@ onMounted(() => {
|
|
|
460
451
|
</span>
|
|
461
452
|
</a>
|
|
462
453
|
<a
|
|
463
|
-
@click="fireAnalytics('youtube')"
|
|
464
454
|
v-if="affiliate.youtube_url"
|
|
465
455
|
:href="affiliate.youtube_url"
|
|
466
456
|
target="_blank"
|
|
467
457
|
class="affiliate-youtube"
|
|
468
458
|
:aria-label="affiliate.name + ` YouTube Page`"
|
|
459
|
+
@click="fireAnalytics('youtube')"
|
|
469
460
|
>
|
|
470
461
|
<span class="presenter-icon">
|
|
471
462
|
<CommonSvgIcon icon="youtube" />
|
|
@@ -480,8 +471,8 @@ onMounted(() => {
|
|
|
480
471
|
<CommonModal
|
|
481
472
|
:visible="showVideoModal"
|
|
482
473
|
modal-size="lg"
|
|
483
|
-
@clicked="showVideoModal = false"
|
|
484
474
|
class="video-dialog"
|
|
475
|
+
@clicked="showVideoModal = false"
|
|
485
476
|
>
|
|
486
477
|
<template #modal-title>
|
|
487
478
|
<div class="p-1 pb-2">
|
|
@@ -495,13 +486,8 @@ onMounted(() => {
|
|
|
495
486
|
:src="modalVideoUrl"
|
|
496
487
|
width="640"
|
|
497
488
|
height="360"
|
|
498
|
-
scrolling="no"
|
|
499
|
-
frameborder="0"
|
|
500
|
-
marginheight="0"
|
|
501
|
-
marginwidth="0"
|
|
502
489
|
allowfullscreen=""
|
|
503
|
-
|
|
504
|
-
</iframe>
|
|
490
|
+
/>
|
|
505
491
|
</div>
|
|
506
492
|
</template>
|
|
507
493
|
</CommonModal>
|
|
@@ -509,26 +495,5 @@ onMounted(() => {
|
|
|
509
495
|
</template>
|
|
510
496
|
|
|
511
497
|
<style scoped>
|
|
512
|
-
.grid-container-responsive {
|
|
513
|
-
display: grid;
|
|
514
|
-
grid-template-columns: 1fr;
|
|
515
|
-
grid-column-gap: 20px;
|
|
516
|
-
grid-row-gap: 20px;
|
|
517
|
-
}
|
|
518
|
-
@media (min-width: 768px) {
|
|
519
|
-
.grid-container-responsive {
|
|
520
|
-
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
|
|
521
|
-
}
|
|
522
|
-
}
|
|
523
|
-
.video-dialog >>> .modal-box {
|
|
524
|
-
width: 704px;
|
|
525
|
-
}
|
|
526
|
-
.video-frame {
|
|
527
|
-
display: block;
|
|
528
|
-
width: 640px;
|
|
529
|
-
margin-left: auto;
|
|
530
|
-
margin-right: auto;
|
|
531
|
-
padding-left: auto;
|
|
532
|
-
padding-right: auto;
|
|
533
|
-
}
|
|
498
|
+
.grid-container-responsive{display:grid;grid-template-columns:1fr;grid-column-gap:20px;grid-row-gap:20px}@media (min-width:768px){.grid-container-responsive{grid-template-columns:repeat(auto-fit,minmax(100px,1fr))}}.video-dialog>>>.modal-box{width:704px}.video-frame{display:block;margin-left:auto;margin-right:auto;width:640px}
|
|
534
499
|
</style>
|