From 7b9b4711b02aa9fb317c806048f9586d5041844a Mon Sep 17 00:00:00 2001 From: Sergio Betanzos Date: Thu, 7 Jul 2022 17:35:15 +0200 Subject: [PATCH] M #~: Minor fixes to Fireedge Sunstone (#2224) (cherry picked from commit 75c5af9c7bf0c6a19444503916cf161da0764b7e) --- .../client/components/FormStepper/Stepper.js | 16 +++- .../Forms/Vm/ResizeCapacityForm/schema.js | 12 +-- .../Steps/General/capacitySchema.js | 6 +- .../CreateForm/Steps/General/capacityUtils.js | 1 + .../BasicConfiguration/capacitySchema.js | 14 +++- .../components/Tables/Enhanced/index.js | 27 +++---- .../components/Tables/Enhanced/styles.js | 10 --- .../components/Tabs/Vm/Storage/Actions.js | 14 ++-- .../src/client/constants/translates.js | 3 + .../src/client/containers/Clusters/index.js | 74 +++++++++++++----- .../src/client/containers/Datastores/index.js | 74 +++++++++++++----- .../src/client/containers/Groups/index.js | 74 +++++++++++++----- .../src/client/containers/Hosts/index.js | 11 ++- .../src/client/containers/Images/index.js | 74 +++++++++++++----- .../containers/MarketplaceApps/index.js | 15 ++-- .../client/containers/Marketplaces/index.js | 74 +++++++++++++----- .../containers/ServiceTemplates/index.js | 61 ++++++++++----- .../src/client/containers/Services/index.js | 59 ++++++++++---- .../src/client/containers/Users/index.js | 76 ++++++++++++++----- .../containers/VNetworkTemplates/index.js | 76 ++++++++++++++----- .../containers/VirtualMachines/index.js | 11 ++- .../containers/VirtualNetworks/index.js | 11 ++- .../client/containers/VmTemplates/index.js | 11 ++- .../src/client/containers/Zones/index.js | 76 ++++++++++++++----- 24 files changed, 640 insertions(+), 240 deletions(-) diff --git a/src/fireedge/src/client/components/FormStepper/Stepper.js b/src/fireedge/src/client/components/FormStepper/Stepper.js index f16c8db5b3..85b590c69b 100644 --- a/src/fireedge/src/client/components/FormStepper/Stepper.js +++ b/src/fireedge/src/client/components/FormStepper/Stepper.js @@ -32,10 +32,12 @@ import { Translate } from 'client/components/HOC' import { T, SCHEMES } from 'client/constants' const StepperStyled = styled(Stepper)(({ theme }) => ({ + backdropFilter: 'blur(3px)', position: 'sticky', top: -15, minHeight: 100, zIndex: theme.zIndex.mobileStepper, + backgroundColor: theme.palette.action.hover, })) const ConnectorStyled = styled(StepConnector)(({ theme }) => ({ @@ -75,6 +77,16 @@ const StepIconStyled = styled(StepIcon)(({ theme }) => ({ }, })) +const ButtonsWrapper = styled(Box)(({ theme }) => ({ + padding: '1em 0.5em', + textAlign: 'end', + backdropFilter: 'blur(3px)', + position: 'sticky', + top: 85, + zIndex: theme.zIndex.mobileStepper + 1, + backgroundColor: theme.palette.action.hover, +})) + const CustomStepper = ({ steps, activeStep, @@ -115,7 +127,7 @@ const CustomStepper = ({ ))} - +