gent_styleguide 6.0.0-beta21 → 6.0.0-beta22
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/build/css/main.css +1 -1
- package/build/styleguide/fonts/gent-icons-v6.eot +0 -0
- package/build/styleguide/fonts/gent-icons-v6.ttf +0 -0
- package/build/styleguide/fonts/gent-icons-v6.woff +0 -0
- package/build/styleguide/fonts/gent-icons-v6.woff2 +0 -0
- package/build/styleguide/sass/31-molecules/breadcrumbs/_breadcrumbs.scss +8 -2
- package/build/styleguide/sass/41-organisms/timeline/_timeline.scss +28 -2
- package/build/styleguide/sass/61-layouts/detail-layout/_detail-layout.scss +2 -5
- package/build/styleguide/sass/molecules.scss +1 -1
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -286,7 +286,6 @@ dl.timeline {
|
|
|
286
286
|
@include desktop {
|
|
287
287
|
padding-right: calc(#{$timeline-dt-left-padding} + #{$timeline-dt-right-padding});
|
|
288
288
|
padding-left: calc(#{$gutter-width*.5});
|
|
289
|
-
text-align: right;
|
|
290
289
|
grid-area: left;
|
|
291
290
|
|
|
292
291
|
.timeline-slot-title {
|
|
@@ -310,6 +309,11 @@ dl.timeline {
|
|
|
310
309
|
}
|
|
311
310
|
}
|
|
312
311
|
|
|
312
|
+
.timeline-slot-title button,
|
|
313
|
+
.timeline-slot-date {
|
|
314
|
+
text-align: right;
|
|
315
|
+
}
|
|
316
|
+
|
|
313
317
|
&::after {
|
|
314
318
|
display: none;
|
|
315
319
|
}
|
|
@@ -367,7 +371,6 @@ dl.timeline {
|
|
|
367
371
|
@include desktop {
|
|
368
372
|
padding-right: calc(#{$timeline-dt-left-padding} + #{$timeline-dt-right-padding});
|
|
369
373
|
padding-left: calc(#{$gutter-width*.5});
|
|
370
|
-
text-align: right;
|
|
371
374
|
grid-area: left;
|
|
372
375
|
|
|
373
376
|
.timeline-slot-title {
|
|
@@ -391,6 +394,11 @@ dl.timeline {
|
|
|
391
394
|
}
|
|
392
395
|
}
|
|
393
396
|
|
|
397
|
+
.timeline-slot-title button,
|
|
398
|
+
.timeline-slot-date {
|
|
399
|
+
text-align: right;
|
|
400
|
+
}
|
|
401
|
+
|
|
394
402
|
&::after {
|
|
395
403
|
display: none;
|
|
396
404
|
}
|
|
@@ -409,6 +417,24 @@ dl.timeline {
|
|
|
409
417
|
&::after {
|
|
410
418
|
bottom: calc(100% - $gutter-width*.5);
|
|
411
419
|
}
|
|
420
|
+
|
|
421
|
+
.timeline-slot-title {
|
|
422
|
+
&::after {
|
|
423
|
+
@include theme('border-color', 'color-tertiary-pastel', 'timeline-line-color');
|
|
424
|
+
|
|
425
|
+
position: absolute;
|
|
426
|
+
top: 0;
|
|
427
|
+
right: calc(100% + 24px);
|
|
428
|
+
bottom: 50%;
|
|
429
|
+
border-left: $timeline-border solid;
|
|
430
|
+
content: '';
|
|
431
|
+
z-index: 0;
|
|
432
|
+
|
|
433
|
+
@include desktop {
|
|
434
|
+
right: calc(100% + $timeline-dt-right-padding - $timeline-border/2);
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
}
|
|
412
438
|
}
|
|
413
439
|
|
|
414
440
|
&:first-of-type {
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
// Give each direct child a specific width.
|
|
8
8
|
// This is a fallback width given to all children of the detail layout.
|
|
9
9
|
.w7-o2,
|
|
10
|
-
>
|
|
10
|
+
> *:not(.timeline-wrapper):not(.roadmap-wrapper):not(.programme-wrapper) {
|
|
11
11
|
@include desktop {
|
|
12
12
|
@include col(7);
|
|
13
13
|
@include col-offset(2);
|
|
@@ -174,10 +174,7 @@
|
|
|
174
174
|
@include col(12);
|
|
175
175
|
}
|
|
176
176
|
|
|
177
|
-
.w12
|
|
178
|
-
> .timeline-wrapper,
|
|
179
|
-
> .programme-wrapper,
|
|
180
|
-
> .roadmap-wrapper {
|
|
177
|
+
.w12 {
|
|
181
178
|
@include col(12);
|
|
182
179
|
@include extra-wide;
|
|
183
180
|
}
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
@import "31-molecules/feature-block/_feature-block.scss";
|
|
11
11
|
@import "31-molecules/file-download/_file-download.scss";
|
|
12
12
|
@import "31-molecules/file-upload/_file-upload.scss";
|
|
13
|
-
@import "31-molecules/form-item/_form-item.scss";
|
|
14
13
|
@import "31-molecules/form-actions/_form-actions.scss";
|
|
14
|
+
@import "31-molecules/form-item/_form-item.scss";
|
|
15
15
|
@import "31-molecules/form-row/_form-row.scss";
|
|
16
16
|
@import "31-molecules/form-steps/_form-steps.scss";
|
|
17
17
|
@import "31-molecules/gentinfo/_gentinfo.scss";
|