@uptime.link/statuspage 1.3.0 → 1.3.1
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/dist_bundle/bundle.js +18 -16
- package/dist_bundle/bundle.js.map +2 -2
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/upl-statuspage-incidents.js +19 -17
- package/dist_watch/bundle.js +18 -20
- package/dist_watch/bundle.js.map +2 -2
- package/package.json +1 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/upl-statuspage-incidents.ts +18 -20
package/package.json
CHANGED
|
@@ -351,22 +351,6 @@ export class UplStatuspageIncidents extends DeesElement {
|
|
|
351
351
|
padding-left: 24px;
|
|
352
352
|
}
|
|
353
353
|
|
|
354
|
-
/* Vertical connector line */
|
|
355
|
-
.timeline::before {
|
|
356
|
-
content: '';
|
|
357
|
-
position: absolute;
|
|
358
|
-
left: 7px;
|
|
359
|
-
top: 10px;
|
|
360
|
-
bottom: calc(100% - 10px);
|
|
361
|
-
height: auto;
|
|
362
|
-
width: 2px;
|
|
363
|
-
background: ${cssManager.bdTheme(
|
|
364
|
-
'linear-gradient(to bottom, #e5e7eb 0%, #d1d5db 50%, #e5e7eb 100%)',
|
|
365
|
-
'linear-gradient(to bottom, #27272a 0%, #3f3f46 50%, #27272a 100%)'
|
|
366
|
-
)};
|
|
367
|
-
border-radius: 1px;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
354
|
.update-item {
|
|
371
355
|
position: relative;
|
|
372
356
|
padding-left: ${unsafeCSS(sharedStyles.spacing.lg)};
|
|
@@ -378,6 +362,18 @@ export class UplStatuspageIncidents extends DeesElement {
|
|
|
378
362
|
padding-bottom: 0;
|
|
379
363
|
}
|
|
380
364
|
|
|
365
|
+
/* Vertical connector line from each dot to the next */
|
|
366
|
+
/* Dot: left -22px, width 12px + border 2px*2 = 16px total, center at -14px */
|
|
367
|
+
.update-item:not(:last-child)::after {
|
|
368
|
+
content: '';
|
|
369
|
+
position: absolute;
|
|
370
|
+
left: -15px;
|
|
371
|
+
top: 18px;
|
|
372
|
+
bottom: 0;
|
|
373
|
+
width: 2px;
|
|
374
|
+
background: ${sharedStyles.colors.border.default};
|
|
375
|
+
}
|
|
376
|
+
|
|
381
377
|
/* Timeline dot */
|
|
382
378
|
.update-item::before {
|
|
383
379
|
content: '';
|
|
@@ -571,15 +567,17 @@ export class UplStatuspageIncidents extends DeesElement {
|
|
|
571
567
|
padding-left: 20px;
|
|
572
568
|
}
|
|
573
569
|
|
|
574
|
-
.timeline::before {
|
|
575
|
-
left: 4px;
|
|
576
|
-
}
|
|
577
|
-
|
|
578
570
|
.update-item::before {
|
|
579
571
|
left: -18px;
|
|
580
572
|
width: 10px;
|
|
581
573
|
height: 10px;
|
|
582
574
|
}
|
|
575
|
+
|
|
576
|
+
/* Mobile dot: left -18px, width 10px + border 2px*2 = 14px, center at -11px */
|
|
577
|
+
.update-item:not(:last-child)::after {
|
|
578
|
+
left: -12px;
|
|
579
|
+
top: 16px;
|
|
580
|
+
}
|
|
583
581
|
}
|
|
584
582
|
`,
|
|
585
583
|
];
|