{imgSrc && (
-
+
- {
setStepNumber(stepNumber - 1);
}}
iconType="arrowLeft"
aria-label={prevAriaLabel}
- />
+ >
+ {prevAriaLabel}
+
{captionContent}
- {
setStepNumber(stepNumber + 1);
}}
iconType="arrowRight"
+ iconSide="right"
aria-label={nextAriaLabel}
- />
+ >
+ {nextAriaLabel}
+
)}
+ {getShortTimeStamp(moment(timestamp))}
- {/* TODO: Add link to details page once it's available */}
- {getShortTimeStamp(moment(timestamp))}
-
- >
+
);
};
diff --git a/x-pack/plugins/uptime/public/components/monitor/ping_list/columns/ping_timestamp/step_image_popover.tsx b/x-pack/plugins/uptime/public/components/monitor/ping_list/columns/ping_timestamp/step_image_popover.tsx
index 1e6c97cd131a4..4fc8db515a5d6 100644
--- a/x-pack/plugins/uptime/public/components/monitor/ping_list/columns/ping_timestamp/step_image_popover.tsx
+++ b/x-pack/plugins/uptime/public/components/monitor/ping_list/columns/ping_timestamp/step_image_popover.tsx
@@ -16,12 +16,11 @@ const POPOVER_IMG_WIDTH = 640;
const StepImage = styled(EuiImage)`
&&& {
display: flex;
- figcaption {
- white-space: nowrap;
- align-self: center;
- margin-left: 8px;
- margin-top: 8px;
- text-decoration: none !important;
+ figure.euiImage-isFullScreen {
+ display: flex;
+ div.stepArrowsFullScreen {
+ display: flex;
+ }
}
}
`;
@@ -39,7 +38,7 @@ export const StepImagePopover: React.FC