@asd20/ui 3.2.705 → 3.2.707

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
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.705",
8
+ "version": "3.2.707",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <footer id="page-footer" role="complementary">
2
+ <footer id="page-footer">
3
3
  <div class="logoContainer">
4
4
  <asd20-logo
5
5
  v-if="organization.title !== 'Academy District 20'"
@@ -14,6 +14,7 @@
14
14
  class="asd20-school-homepage-video-header__image"
15
15
  >
16
16
  <video
17
+ v-if="videoUrl"
17
18
  class="background-video"
18
19
  aria-hidden="true"
19
20
  autoplay
@@ -25,7 +26,11 @@
25
26
  >
26
27
  <source :src="videoUrl" type="video/mp4" />
27
28
  </video>
28
- <img class="background-image" :src="imageUrl" :alt="imageCaption" />
29
+ <img
30
+ :class="videoUrl ? 'hide-background-image' : 'background-image'"
31
+ :src="imageUrl"
32
+ :alt="imageCaption"
33
+ />
29
34
  <div id="main" class="asd20-school-homepage-video-header__content">
30
35
  <h1 v-if="heading" v-html="heading" />
31
36
  <div v-if="lead" class="asd20-school-homepage-video-header__lead">
@@ -371,6 +376,9 @@ $max: 4rem;
371
376
  display: block;
372
377
  }
373
378
  .background-image {
379
+ display: block;
380
+ }
381
+ .hide-background-image {
374
382
  display: none;
375
383
  }
376
384
 
@@ -518,7 +526,7 @@ $max: 4rem;
518
526
  .background-video {
519
527
  display: block;
520
528
  }
521
- .background-image {
529
+ .hide-background-image {
522
530
  display: none;
523
531
  }
524
532
 
@@ -147,9 +147,9 @@ export default {
147
147
  // width: 80%;
148
148
  // }
149
149
  &::v-deep .message-image {
150
- display: none !important;
151
- // margin-top: 0;
152
- // padding: 0 0 0 space(1);
150
+ // display: none !important;
151
+ margin-top: 0;
152
+ padding: 0 0 0 space(1);
153
153
  }
154
154
  &::v-deep .asd20-messaging__content {
155
155
  order: 1;
@@ -10,6 +10,7 @@
10
10
  </div>
11
11
 
12
12
  <video
13
+ v-if="videoUrl"
13
14
  class="background-video"
14
15
  aria-hidden="true"
15
16
  autoplay
@@ -22,7 +23,11 @@
22
23
  <source :src="videoUrl" type="video/mp4" />
23
24
  </video>
24
25
 
25
- <img class="background-image" :src="imageUrl" :alt="imageCaption" />
26
+ <img
27
+ :class="videoUrl ? 'hide-background-image' : 'background-image'"
28
+ :src="imageUrl"
29
+ :alt="imageCaption"
30
+ />
26
31
  <!-- <div class="scroll-down-indicator"></div> -->
27
32
  <slot />
28
33
  </header>
@@ -193,10 +198,10 @@ export default {
193
198
 
194
199
  @media (min-width: 768px) {
195
200
  .asd20-video-header {
196
- .background-image {
197
- height: 80vh;
198
- max-height: 400px;
199
- }
201
+ // .background-image {
202
+ // height: 80vh;
203
+ // max-height: 400px;
204
+ // }
200
205
  &__top {
201
206
  position: absolute;
202
207
  padding: space(0.5) space(0);
@@ -229,6 +234,13 @@ export default {
229
234
  display: block;
230
235
  }
231
236
  .background-image {
237
+ display: block;
238
+ z-index: -1;
239
+ width: 100%;
240
+ height: 100vh;
241
+ object-fit: cover;
242
+ }
243
+ .hide-background-image {
232
244
  display: none;
233
245
  }
234
246
 
@@ -153,6 +153,7 @@ export default {
153
153
  margin-left: space(2);
154
154
  .asd20-messaging__content {
155
155
  margin: 0;
156
+ animation: slide_left 2s ease-in-out 0.5s both;
156
157
  }
157
158
  .asd20-messaging__heading {
158
159
  @include fluid-type($base-font-size * 1.5, $base-font-size * 2);
@@ -165,9 +166,10 @@ export default {
165
166
  display: block;
166
167
  position: absolute;
167
168
  width: 75%;
169
+ top: 0;
168
170
  bottom: space(-0.74);
169
- left: space(1.25);
170
- height: 60%;
171
+ left: 1.5rem;
172
+ height: 100%;
171
173
  right: 0;
172
174
  z-index: -1;
173
175
  // background: var(--color__accent);
@@ -185,9 +187,9 @@ export default {
185
187
  // rgba(255, 255, 255, 0) 90%,
186
188
  // rgba(0, 0, 0, 0) 100%
187
189
  // );
188
- border-left: 20px solid var(--website-homepage-header__accent);
189
- border-bottom: 20px solid var(--website-homepage-header__accent);
190
- animation: slide_down 1s ease-in-out 0.5s both;
190
+ border-left: 30px solid var(--website-homepage-header__accent);
191
+ // border-bottom: 20px solid var(--website-homepage-header__accent);
192
+ animation: slide_left 2.5s ease-in-out 0.5s both;
191
193
  }
192
194
  }
193
195
  &::v-deep .asd20-messaging__button-group {
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <section class="asd20-widgets-section" role="complementary">
2
+ <section class="asd20-widgets-section">
3
3
  <slot name="before" />
4
4
  <asd20-link-list
5
5
  v-if="relatedLinks.length > 5"
@@ -307,7 +307,7 @@ export default {
307
307
  @keyframes slide_left {
308
308
  from {
309
309
  opacity: 0;
310
- margin-left: 100px;
310
+ margin-left: 150px;
311
311
  }
312
312
  to {
313
313
  opacity: 1;
@@ -27,7 +27,7 @@ const wrapper = {
27
27
  floating: [],
28
28
  status: [],
29
29
  }
30
- return boolean('Show Notifications', false)
30
+ return boolean('Show Notifications', true)
31
31
  ? notifications || empty
32
32
  : empty
33
33
  },
@@ -156,7 +156,8 @@
156
156
  ],
157
157
  "isCover": true,
158
158
  "metadata": {
159
- "alt": ""
159
+ "alt": "",
160
+ "credits": "Photo Credit: Krystal Story"
160
161
  }
161
162
  }],
162
163
  "videos": [{