@asd20/ui 3.2.444 → 3.2.445
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 +1 -1
- package/src/components/organisms/Asd20ImageHeader/index.vue +2 -12
- package/src/components/organisms/Asd20OrganizationPicker/index.vue +2 -2
- package/src/components/organisms/Asd20PageHeader/index.vue +1 -15
- package/src/components/templates/Asd20DetailImageTemplate/index.vue +3 -10
- package/src/data/page-queries/sublanding-page-query-result.json +1 -1
package/package.json
CHANGED
|
@@ -6,13 +6,6 @@
|
|
|
6
6
|
role="banner"
|
|
7
7
|
>
|
|
8
8
|
<div class="asd20-image-header__top" v-if="organizationOptions.length > 0">
|
|
9
|
-
<!-- <asd20-district-logo
|
|
10
|
-
v-show="
|
|
11
|
-
organization.title === 'Academy District 20' &&
|
|
12
|
-
mq !== 'sm' &&
|
|
13
|
-
mq !== 'md'
|
|
14
|
-
"
|
|
15
|
-
></asd20-district-logo> -->
|
|
16
9
|
<client-only>
|
|
17
10
|
<asd20-organization-picker
|
|
18
11
|
:organization-options="organizationOptions"
|
|
@@ -320,15 +313,11 @@ export default {
|
|
|
320
313
|
flex-direction: row;
|
|
321
314
|
align-items: center;
|
|
322
315
|
padding: space(0.5) space(1);
|
|
323
|
-
|
|
316
|
+
margin: space(-0.5);
|
|
324
317
|
&::v-deep .asd20-organization-picker {
|
|
325
318
|
display: none;
|
|
326
319
|
}
|
|
327
320
|
|
|
328
|
-
// &::v-deep .asd20-district-logo {
|
|
329
|
-
// display: none;
|
|
330
|
-
// }
|
|
331
|
-
|
|
332
321
|
&::v-deep .notification-group--status {
|
|
333
322
|
margin-top: space(0.5);
|
|
334
323
|
margin-bottom: space(0.5);
|
|
@@ -514,6 +503,7 @@ export default {
|
|
|
514
503
|
|
|
515
504
|
&__top {
|
|
516
505
|
padding: 0 space(3);
|
|
506
|
+
margin-top: space(0.5);
|
|
517
507
|
z-index: 5;
|
|
518
508
|
}
|
|
519
509
|
}
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
:reversed="reversed"
|
|
14
14
|
>
|
|
15
15
|
<asd20-district-logo
|
|
16
|
-
v-
|
|
16
|
+
v-if="organization.title === 'Academy District 20'"
|
|
17
17
|
></asd20-district-logo>
|
|
18
18
|
<asd20-logo
|
|
19
|
-
v-
|
|
19
|
+
v-if="organization.title !== 'Academy District 20'"
|
|
20
20
|
:title="orgTitle"
|
|
21
21
|
:subtitle="orgLevel"
|
|
22
22
|
:image="organization.logoImageUrl"
|
|
@@ -252,7 +252,6 @@ export default {
|
|
|
252
252
|
.back {
|
|
253
253
|
color: currentColor !important;
|
|
254
254
|
order: 2;
|
|
255
|
-
|
|
256
255
|
}
|
|
257
256
|
.right {
|
|
258
257
|
display: flex;
|
|
@@ -314,7 +313,7 @@ export default {
|
|
|
314
313
|
flex-direction: row;
|
|
315
314
|
align-items: center;
|
|
316
315
|
padding: space(0.5) space(1);
|
|
317
|
-
|
|
316
|
+
margin-top: space(-1);
|
|
318
317
|
&::v-deep .asd20-organization-picker {
|
|
319
318
|
display: none;
|
|
320
319
|
}
|
|
@@ -407,11 +406,6 @@ export default {
|
|
|
407
406
|
--website-header__button-foreground-color,
|
|
408
407
|
var(--color__accent-t100)
|
|
409
408
|
);
|
|
410
|
-
// border: var(--website-shape__line-thickness) solid
|
|
411
|
-
// var(
|
|
412
|
-
// --website-header__button-foreground-color,
|
|
413
|
-
// var(--color__accent-t100)
|
|
414
|
-
// );
|
|
415
409
|
box-shadow: 2px 2px 2px rgb(50, 50, 50);
|
|
416
410
|
&:hover,
|
|
417
411
|
&:focus {
|
|
@@ -510,14 +504,6 @@ export default {
|
|
|
510
504
|
margin: space(0) auto space(0) space(0);
|
|
511
505
|
}
|
|
512
506
|
|
|
513
|
-
// &::v-deep .asd20-district-logo {
|
|
514
|
-
// height: space(1.5);
|
|
515
|
-
// margin: space(1) auto space(1) 0;
|
|
516
|
-
// display: block;
|
|
517
|
-
// --fill-one: var(--color__primary);
|
|
518
|
-
// --fill-two: var(--color__secondary-t30);
|
|
519
|
-
// }
|
|
520
|
-
|
|
521
507
|
&__top {
|
|
522
508
|
padding: 0 space(3);
|
|
523
509
|
margin: space(0.5) 0;
|
|
@@ -185,7 +185,7 @@ export default {
|
|
|
185
185
|
margin-top: space(2.25);
|
|
186
186
|
.asd20-notification-group--floating {
|
|
187
187
|
position: absolute;
|
|
188
|
-
top: space(
|
|
188
|
+
top: space(1.5);
|
|
189
189
|
.bell {
|
|
190
190
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125) !important;
|
|
191
191
|
svg {
|
|
@@ -207,7 +207,7 @@ export default {
|
|
|
207
207
|
.asd20-template-detail-image {
|
|
208
208
|
.asd20-notification-group--floating {
|
|
209
209
|
position: absolute;
|
|
210
|
-
top: space(
|
|
210
|
+
top: space(0.5);
|
|
211
211
|
.bell {
|
|
212
212
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125) !important;
|
|
213
213
|
svg {
|
|
@@ -233,14 +233,7 @@ export default {
|
|
|
233
233
|
margin-top: 0;
|
|
234
234
|
.asd20-notification-group--floating {
|
|
235
235
|
position: absolute;
|
|
236
|
-
|
|
237
|
-
// .bell {
|
|
238
|
-
// span {
|
|
239
|
-
// background: var(--color__accent);
|
|
240
|
-
// top: -0.6em !important;
|
|
241
|
-
// right: -0.6em !important;
|
|
242
|
-
// }
|
|
243
|
-
// }
|
|
236
|
+
top: space(1);
|
|
244
237
|
}
|
|
245
238
|
.notification-group--inline {
|
|
246
239
|
margin: space(2) space(3) space(1) space(3);
|