@asd20/ui 3.2.805 → 3.2.806
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
|
@@ -132,6 +132,7 @@
|
|
|
132
132
|
transparent
|
|
133
133
|
centered
|
|
134
134
|
opposite
|
|
135
|
+
:disabled="counter === 1"
|
|
135
136
|
/>
|
|
136
137
|
<p>
|
|
137
138
|
Page {{ Math.ceil(counter2 / numberToShow) }} of
|
|
@@ -147,6 +148,7 @@
|
|
|
147
148
|
horizontal
|
|
148
149
|
transparent
|
|
149
150
|
centered
|
|
151
|
+
:disabled="cards.length < counter2"
|
|
150
152
|
/>
|
|
151
153
|
</div>
|
|
152
154
|
</div>
|
|
@@ -187,6 +189,7 @@
|
|
|
187
189
|
transparent
|
|
188
190
|
centered
|
|
189
191
|
opposite
|
|
192
|
+
:disabled="counter === 1"
|
|
190
193
|
/>
|
|
191
194
|
</a>
|
|
192
195
|
<p>
|
|
@@ -204,6 +207,7 @@
|
|
|
204
207
|
horizontal
|
|
205
208
|
transparent
|
|
206
209
|
centered
|
|
210
|
+
:disabled="cards.length < counter2"
|
|
207
211
|
/>
|
|
208
212
|
</a>
|
|
209
213
|
</div>
|
|
@@ -431,7 +435,7 @@ export default {
|
|
|
431
435
|
margin: space(1) 0 0 space(1);
|
|
432
436
|
}
|
|
433
437
|
.asd20-card {
|
|
434
|
-
margin
|
|
438
|
+
margin: space(1) space(1) space(2) space(1);
|
|
435
439
|
// &__date-time {
|
|
436
440
|
// display: none;
|
|
437
441
|
// }
|
|
@@ -462,10 +466,11 @@ export default {
|
|
|
462
466
|
padding: 0;
|
|
463
467
|
> .asd20-button__label {
|
|
464
468
|
margin: 0;
|
|
469
|
+
padding: 0.5rem;
|
|
465
470
|
}
|
|
466
471
|
}
|
|
467
472
|
p {
|
|
468
|
-
margin: 0;
|
|
473
|
+
margin: 0 space(0.25);
|
|
469
474
|
}
|
|
470
475
|
}
|
|
471
476
|
}
|
|
@@ -479,19 +484,32 @@ export default {
|
|
|
479
484
|
}
|
|
480
485
|
|
|
481
486
|
.asd20-search-field {
|
|
482
|
-
border: 2px solid var(--color__accent);
|
|
483
487
|
margin: space(0.5) 0;
|
|
484
488
|
.asd20-icon {
|
|
485
489
|
margin-left: space(0.5);
|
|
486
490
|
}
|
|
491
|
+
input {
|
|
492
|
+
border: 2px solid var(--color__accent);
|
|
493
|
+
font-family: var(--website-typography__font-family-headlines);
|
|
494
|
+
font-size: 1rem;
|
|
495
|
+
}
|
|
487
496
|
}
|
|
488
497
|
.asd20-multiselect-input {
|
|
498
|
+
line-height: 1;
|
|
489
499
|
.multiselect__placeholder {
|
|
490
|
-
padding-left:
|
|
500
|
+
padding-left: space(0.5);
|
|
501
|
+
font-size: 1rem;
|
|
491
502
|
}
|
|
492
503
|
}
|
|
493
504
|
}
|
|
494
505
|
|
|
506
|
+
@media (min-width: 768px) {
|
|
507
|
+
.asd20-template-article-digest {
|
|
508
|
+
.asd20-card {
|
|
509
|
+
margin: space(1) space(1) space(2) space(1);
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
}
|
|
495
513
|
@media (min-width: 1024px) {
|
|
496
514
|
.asd20-template-article-digest {
|
|
497
515
|
@include template-desktop;
|
|
@@ -535,7 +553,7 @@ export default {
|
|
|
535
553
|
grid-gap: space(1);
|
|
536
554
|
margin-bottom: space(1);
|
|
537
555
|
.asd20-card {
|
|
538
|
-
margin
|
|
556
|
+
margin: 0;
|
|
539
557
|
}
|
|
540
558
|
}
|
|
541
559
|
.search-header,
|
|
@@ -547,7 +565,7 @@ export default {
|
|
|
547
565
|
flex-basis: 100%;
|
|
548
566
|
justify-content: space-between;
|
|
549
567
|
.asd20-search-field {
|
|
550
|
-
|
|
568
|
+
margin: space(0.5) space(0.5);
|
|
551
569
|
flex-basis: 50%;
|
|
552
570
|
.asd20-icon {
|
|
553
571
|
margin-left: 0;
|
|
@@ -170,6 +170,7 @@
|
|
|
170
170
|
transparent
|
|
171
171
|
centered
|
|
172
172
|
opposite
|
|
173
|
+
:disabled="counter === 1"
|
|
173
174
|
/>
|
|
174
175
|
<p>
|
|
175
176
|
Page {{ Math.ceil(counter2 / numberToShow) }} of
|
|
@@ -185,6 +186,7 @@
|
|
|
185
186
|
horizontal
|
|
186
187
|
transparent
|
|
187
188
|
centered
|
|
189
|
+
:disabled="cards.length < counter2"
|
|
188
190
|
/>
|
|
189
191
|
</div>
|
|
190
192
|
</div>
|
|
@@ -224,6 +226,7 @@
|
|
|
224
226
|
transparent
|
|
225
227
|
centered
|
|
226
228
|
opposite
|
|
229
|
+
:disabled="counter === 1"
|
|
227
230
|
/>
|
|
228
231
|
</a>
|
|
229
232
|
<p>
|
|
@@ -241,6 +244,7 @@
|
|
|
241
244
|
horizontal
|
|
242
245
|
transparent
|
|
243
246
|
centered
|
|
247
|
+
:disabled="cards.length < counter2"
|
|
244
248
|
/>
|
|
245
249
|
</a>
|
|
246
250
|
</div>
|
|
@@ -499,10 +503,11 @@ export default {
|
|
|
499
503
|
padding: space(0.25);
|
|
500
504
|
> .asd20-button__label {
|
|
501
505
|
margin: 0;
|
|
506
|
+
padding: 0.5rem;
|
|
502
507
|
}
|
|
503
508
|
}
|
|
504
509
|
p {
|
|
505
|
-
margin: 0;
|
|
510
|
+
margin: 0 space(0.25);
|
|
506
511
|
}
|
|
507
512
|
}
|
|
508
513
|
}
|
|
@@ -516,21 +521,27 @@ export default {
|
|
|
516
521
|
// --website-icon__fill-color: #436c74;
|
|
517
522
|
margin: 0 space(1);
|
|
518
523
|
.asd20-card {
|
|
519
|
-
margin-bottom: space(-0.5);
|
|
524
|
+
// margin-bottom: space(-0.5);
|
|
520
525
|
.asd20-card__content:hover {
|
|
521
526
|
background: rgba(200, 200, 200, 0.2);
|
|
522
527
|
}
|
|
523
528
|
}
|
|
524
529
|
.asd20-search-field {
|
|
525
|
-
border: 2px solid var(--color__accent);
|
|
526
530
|
margin: space(0.5) 0;
|
|
527
531
|
.asd20-icon {
|
|
528
532
|
margin-left: space(0.5);
|
|
529
533
|
}
|
|
534
|
+
input {
|
|
535
|
+
border: 2px solid var(--color__accent);
|
|
536
|
+
font-family: var(--website-typography__font-family-headlines);
|
|
537
|
+
font-size: 1rem;
|
|
538
|
+
}
|
|
530
539
|
}
|
|
531
540
|
.asd20-multiselect-input {
|
|
541
|
+
line-height: 1;
|
|
532
542
|
.multiselect__placeholder {
|
|
533
|
-
padding-left:
|
|
543
|
+
padding-left: space(0.5);
|
|
544
|
+
font-size: 1rem;
|
|
534
545
|
}
|
|
535
546
|
}
|
|
536
547
|
.asd20-card__content {
|
|
@@ -589,7 +600,7 @@ export default {
|
|
|
589
600
|
flex-basis: 100%;
|
|
590
601
|
justify-content: space-between;
|
|
591
602
|
.asd20-search-field {
|
|
592
|
-
|
|
603
|
+
margin: space(0.5) space(0.5);
|
|
593
604
|
flex-basis: 50%;
|
|
594
605
|
.asd20-icon {
|
|
595
606
|
margin-left: 0;
|