@openeventkit/event-site 2.0.26 → 2.0.28
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openeventkit/event-site",
|
|
3
3
|
"description": "Event Site",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.28",
|
|
5
5
|
"author": "Tipit LLC",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@mui/base": "^5.0.0-alpha.114",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"font-awesome": "^4.7.0",
|
|
43
43
|
"formik": "^2.2.9",
|
|
44
44
|
"fs-extra": "^9.0.1",
|
|
45
|
-
"full-schedule-widget": "3.0.
|
|
45
|
+
"full-schedule-widget": "3.0.1",
|
|
46
46
|
"gatsby": "^5.8.1",
|
|
47
47
|
"gatsby-alias-imports": "^1.0.6",
|
|
48
48
|
"gatsby-plugin-image": "^3.8.0",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"netlify-cms-app": "^2.15.72",
|
|
76
76
|
"netlify-cms-lib-widgets": "^1.8.0",
|
|
77
77
|
"node-sass-utils": "^1.1.3",
|
|
78
|
-
"openstack-uicore-foundation": "
|
|
78
|
+
"openstack-uicore-foundation": "4.1.42",
|
|
79
79
|
"path-browserify": "^1.0.1",
|
|
80
80
|
"prop-types": "^15.6.0",
|
|
81
81
|
"react": "^18.2.0",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"redux-thunk": "^2.4.1",
|
|
108
108
|
"sanitize-html": "^2.7.0",
|
|
109
109
|
"sass": "^1.49.9",
|
|
110
|
-
"schedule-filter-widget": "3.0.
|
|
110
|
+
"schedule-filter-widget": "3.0.1",
|
|
111
111
|
"simple-chat-widget": "^1.0.31",
|
|
112
112
|
"simple-oauth2": "^4.1.0",
|
|
113
113
|
"slick-carousel": "^1.8.1",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"stream-browserify": "^3.0.0",
|
|
118
118
|
"stream-chat": "^2.7.2",
|
|
119
119
|
"stream-chat-react": "3.1.7",
|
|
120
|
-
"summit-registration-lite": "5.0.
|
|
120
|
+
"summit-registration-lite": "5.0.3",
|
|
121
121
|
"superagent": "8.0.9",
|
|
122
122
|
"sweetalert2": "^9.17.0",
|
|
123
123
|
"upcoming-events-widget": "3.0.1",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"widgets":{"chat":{"showQA":false,"showHelp":false,"defaultScope":"page"},"schedule":{"allowClick":true}},"favicons":{"favicon180":"/img/favicon.png","favicon32":"/img/favicon.png","favicon16":"/img/favicon.png"},"staticJsonFilesBuildTime":[{"file":"src/data/summit.json","build_time":
|
|
1
|
+
{"widgets":{"chat":{"showQA":false,"showHelp":false,"defaultScope":"page"},"schedule":{"allowClick":true}},"favicons":{"favicon180":"/img/favicon.png","favicon32":"/img/favicon.png","favicon16":"/img/favicon.png"},"staticJsonFilesBuildTime":[{"file":"src/data/summit.json","build_time":1692210631043},{"file":"src/data/events.json","build_time":1692210634724},{"file":"src/data/events.idx.json","build_time":1692210634728},{"file":"src/data/speakers.json","build_time":1692210635730},{"file":"src/data/speakers.idx.json","build_time":1692210635730},{"file":"src/content/sponsors.json","build_time":1692210639143},{"file":"src/data/voteable-presentations.json","build_time":1692210641223}],"lastBuild":1692210641225}
|
package/src/styles/colors.scss
CHANGED
|
@@ -19,6 +19,8 @@ $color_input_border_color_light:#dbdbdb;
|
|
|
19
19
|
$color_input_text_color_dark: #FFFFFF;
|
|
20
20
|
$color_input_background_color_dark:rgb(24, 26, 27);
|
|
21
21
|
$color_input_border_color_dark:rgb(58, 63, 65);
|
|
22
|
+
$color_horizontal_rule_dark: #7B7B7B;
|
|
23
|
+
$color_horizontal_rule_light: #E5E5E5;
|
|
22
24
|
|
|
23
25
|
:root {
|
|
24
26
|
--color_primary: #{$color_primary};
|
|
@@ -38,6 +40,7 @@ $color_input_border_color_dark:rgb(58, 63, 65);
|
|
|
38
40
|
--color_input_background_color: #{$color_input_background_color_light};
|
|
39
41
|
--color_input_border_color: #{$color_input_border_color_light};
|
|
40
42
|
--color_text_input_hints: #{$color_input_text_color_light};
|
|
43
|
+
--color_horizontal_rule: #{$color_horizontal_rule_light};
|
|
41
44
|
}
|
|
42
45
|
|
|
43
46
|
html[data-theme="DARK"] {
|
|
@@ -53,4 +56,5 @@ html[data-theme="DARK"] {
|
|
|
53
56
|
--color_input_background_color: #{$color_input_background_color_dark} !important;
|
|
54
57
|
--color_input_border_color: #{$color_input_border_color_dark} !important;
|
|
55
58
|
--color_text_input_hints: #{$color_input_text_color_dark} !important;
|
|
59
|
+
--color_horizontal_rule: #{$color_horizontal_rule_dark};
|
|
56
60
|
}
|
package/src/styles/fonts.scss
CHANGED
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
background-color: var(--color_secondary_contrast);
|
|
14
14
|
align-items: center;
|
|
15
15
|
border: none;
|
|
16
|
-
color:
|
|
16
|
+
color: var(--color_text_dark);
|
|
17
17
|
height: 5rem;
|
|
18
18
|
width: 15rem;
|
|
19
19
|
|
|
20
20
|
i {
|
|
21
|
-
color:
|
|
21
|
+
color: var(--color_text_dark);
|
|
22
22
|
height: 1em;
|
|
23
23
|
width: 2.5em;
|
|
24
24
|
margin-right: auto;
|
package/src/styles/style.scss
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
@import './colors.scss';
|
|
2
2
|
@import './global-classes';
|
|
3
|
+
@import "./fonts.scss";
|
|
3
4
|
|
|
4
5
|
html,
|
|
5
6
|
body {
|
|
6
|
-
font-family:
|
|
7
|
+
font-family: $font-family !important;
|
|
7
8
|
@extend %body_base;
|
|
8
9
|
}
|
|
9
10
|
|
|
@@ -140,7 +141,7 @@ div.content {
|
|
|
140
141
|
div.title {
|
|
141
142
|
font-weight: 700 !important;
|
|
142
143
|
color: #333333 !important;
|
|
143
|
-
font-family:
|
|
144
|
+
font-family: $font-family;
|
|
144
145
|
}
|
|
145
146
|
|
|
146
147
|
h2 {
|
|
@@ -335,7 +336,7 @@ h2 {
|
|
|
335
336
|
|
|
336
337
|
.outerWrapper___lGus2 {
|
|
337
338
|
.widget-title {
|
|
338
|
-
font-family:
|
|
339
|
+
font-family: $font-family;
|
|
339
340
|
font-weight: 700;
|
|
340
341
|
font-size: 30px;
|
|
341
342
|
line-height: 33px;
|
|
@@ -345,7 +346,7 @@ h2 {
|
|
|
345
346
|
}
|
|
346
347
|
|
|
347
348
|
.widget-title {
|
|
348
|
-
font-family:
|
|
349
|
+
font-family: $font-family;
|
|
349
350
|
font-size: 18px !important;
|
|
350
351
|
}
|
|
351
352
|
|
|
@@ -377,15 +378,18 @@ div.event-feedback-container {
|
|
|
377
378
|
}
|
|
378
379
|
|
|
379
380
|
.disqus-container-lobby {
|
|
380
|
-
border: 1px solid
|
|
381
|
+
border: 1px solid var(--color_input_border_color);
|
|
381
382
|
display: flex;
|
|
382
383
|
flex-direction: column;
|
|
383
384
|
max-height: 1500px;
|
|
384
385
|
|
|
385
386
|
.disqus-header {
|
|
386
|
-
border-bottom: 1px solid
|
|
387
|
+
border-bottom: 1px solid var(--color_input_border_color);
|
|
387
388
|
padding: 0 15px;
|
|
388
389
|
position: relative;
|
|
390
|
+
#disqus-title {
|
|
391
|
+
color: var(--color_text_dark);
|
|
392
|
+
}
|
|
389
393
|
/*
|
|
390
394
|
Show Skip to next section link when focused
|
|
391
395
|
*/
|