@asd20/ui 3.2.617 → 3.2.619
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
|
@@ -372,8 +372,6 @@ export default {
|
|
|
372
372
|
// },
|
|
373
373
|
mounted() {
|
|
374
374
|
this.$nextTick(() => {
|
|
375
|
-
this.$emit('announcements-in-view')
|
|
376
|
-
this.$emit('events-in-view')
|
|
377
375
|
this.$emit('stories-in-view')
|
|
378
376
|
})
|
|
379
377
|
},
|
|
@@ -442,10 +440,8 @@ export default {
|
|
|
442
440
|
.asd20-page-content {
|
|
443
441
|
display: block;
|
|
444
442
|
.primary-messaging-section {
|
|
445
|
-
padding
|
|
446
|
-
|
|
447
|
-
// border-top: 5px solid lightgray;
|
|
448
|
-
// border-bottom: 5px solid lightgray;
|
|
443
|
+
padding: 0;
|
|
444
|
+
margin: 0 space(1);
|
|
449
445
|
}
|
|
450
446
|
}
|
|
451
447
|
.asd20-feeds-section {
|
|
@@ -456,43 +452,58 @@ export default {
|
|
|
456
452
|
.feed-title {
|
|
457
453
|
margin: space(1) 0 0 space(1);
|
|
458
454
|
}
|
|
459
|
-
.
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
455
|
+
.article-digest {
|
|
456
|
+
.asd20-card {
|
|
457
|
+
margin-bottom: space(0.5);
|
|
458
|
+
// border-bottom: 1px solid gray;
|
|
459
|
+
.asd20-card__content:hover {
|
|
460
|
+
background: rgba(200, 200, 200, 0.2);
|
|
461
|
+
}
|
|
462
|
+
.asd20-card__meta {
|
|
463
|
+
padding-bottom: space(1);
|
|
464
|
+
border-bottom: 1px solid gray;
|
|
465
|
+
}
|
|
466
|
+
// &__date-time {
|
|
467
|
+
// display: none;
|
|
468
|
+
// }
|
|
469
|
+
// &__description {
|
|
470
|
+
// display: none;
|
|
471
|
+
// }
|
|
472
|
+
}
|
|
473
|
+
.feed-items {
|
|
474
|
+
--website-card__border-color: transparent;
|
|
475
|
+
--website-card__background-color: transparent;
|
|
476
|
+
--website-card__background-style: none;
|
|
476
477
|
}
|
|
477
|
-
.
|
|
478
|
+
.article-pagination {
|
|
478
479
|
display: flex;
|
|
479
480
|
align-items: center;
|
|
480
|
-
|
|
481
|
+
justify-content: space-between;
|
|
482
|
+
margin: space(1) space(0.25) space(0) space(0.25);
|
|
483
|
+
flex-direction: column;
|
|
484
|
+
p {
|
|
485
|
+
margin: 0;
|
|
486
|
+
}
|
|
487
|
+
.page-selector {
|
|
481
488
|
display: flex;
|
|
482
489
|
align-items: center;
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
+
.prev-next {
|
|
491
|
+
display: flex;
|
|
492
|
+
align-items: center;
|
|
493
|
+
justify-content: space-between;
|
|
494
|
+
a {
|
|
495
|
+
text-decoration: none !important;
|
|
496
|
+
}
|
|
497
|
+
.asd20-button {
|
|
498
|
+
padding: 0;
|
|
499
|
+
> .asd20-button__label {
|
|
500
|
+
margin: 0;
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
p {
|
|
490
504
|
margin: 0;
|
|
491
505
|
}
|
|
492
506
|
}
|
|
493
|
-
p {
|
|
494
|
-
margin: 0;
|
|
495
|
-
}
|
|
496
507
|
}
|
|
497
508
|
}
|
|
498
509
|
}
|
|
@@ -503,7 +514,6 @@ export default {
|
|
|
503
514
|
.result-count {
|
|
504
515
|
margin: space(0) space(1) space(1) space(1);
|
|
505
516
|
}
|
|
506
|
-
|
|
507
517
|
.asd20-search-field .asd20-icon {
|
|
508
518
|
margin-left: 0;
|
|
509
519
|
}
|
|
@@ -535,6 +545,9 @@ export default {
|
|
|
535
545
|
justify-content: space-between;
|
|
536
546
|
align-items: stretch;
|
|
537
547
|
flex-wrap: wrap;
|
|
548
|
+
.primary-messaging-section {
|
|
549
|
+
margin: 0 space(3) !important;
|
|
550
|
+
}
|
|
538
551
|
}
|
|
539
552
|
.notification-group--inline {
|
|
540
553
|
margin: space(2) space(3) space(1) space(3);
|
|
@@ -543,18 +556,9 @@ export default {
|
|
|
543
556
|
.prev-next {
|
|
544
557
|
margin: space(1) 0;
|
|
545
558
|
}
|
|
546
|
-
.primary-messaging-section {
|
|
547
|
-
|
|
548
|
-
}
|
|
549
|
-
.feed-items {
|
|
550
|
-
display: grid;
|
|
551
|
-
grid-template-columns: 1fr 1fr 1fr;
|
|
552
|
-
grid-gap: space(1);
|
|
553
|
-
margin-bottom: space(1);
|
|
554
|
-
.asd20-card {
|
|
555
|
-
margin-bottom: 0;
|
|
556
|
-
}
|
|
557
|
-
}
|
|
559
|
+
// .primary-messaging-section {
|
|
560
|
+
// max-width: 100vw;
|
|
561
|
+
// }
|
|
558
562
|
.search-header,
|
|
559
563
|
.result-count {
|
|
560
564
|
margin: space(0) space(0) space(1) space(0);
|
|
@@ -570,6 +574,25 @@ export default {
|
|
|
570
574
|
.article-digest {
|
|
571
575
|
// flex-basis: 100%;
|
|
572
576
|
margin: space(1) space(3) space(1) space(3);
|
|
577
|
+
max-width: 60%;
|
|
578
|
+
.feed-items {
|
|
579
|
+
// display: grid;
|
|
580
|
+
// grid-template-columns: 1fr 1fr 1fr;
|
|
581
|
+
// grid-gap: space(1);
|
|
582
|
+
// margin-bottom: space(1);
|
|
583
|
+
.asd20-card {
|
|
584
|
+
margin-bottom: 0;
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
@media (min-width: 1257px) {
|
|
591
|
+
.asd20-template-clubs {
|
|
592
|
+
.asd20-page-content {
|
|
593
|
+
.primary-messaging-section {
|
|
594
|
+
margin: 0 space(2);
|
|
595
|
+
}
|
|
573
596
|
}
|
|
574
597
|
}
|
|
575
598
|
}
|