From b2bc9ff2d2c52c78d19ed93e1c64e5d2f3e01e5b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Kuty=C5=82a?= Date: Tue, 29 Nov 2022 17:12:03 +0100 Subject: [PATCH] 19786: changed background location MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Arvados-DCO-1.1-Signed-off-by: Daniel Kutyła --- src/views/inactive-panel/inactive-panel.tsx | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/src/views/inactive-panel/inactive-panel.tsx b/src/views/inactive-panel/inactive-panel.tsx index 8a7c792893..064add3a6d 100644 --- a/src/views/inactive-panel/inactive-panel.tsx +++ b/src/views/inactive-panel/inactive-panel.tsx @@ -17,16 +17,8 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ root: { position: 'relative', backgroundColor: theme.palette.grey["200"], - '&::after': { - content: `''`, - position: 'absolute', - top: 0, - left: 0, - bottom: 0, - right: 0, - background: 'url("arvados-logo-big.png") no-repeat center center', - opacity: 0.2, - } + background: 'url("arvados-logo-big.png") no-repeat center center', + backgroundBlendMode: 'soft-light', }, ontop: { zIndex: 10 @@ -59,7 +51,6 @@ export interface InactivePanelStateProps { type InactivePanelProps = WithStyles & InactivePanelActionProps & InactivePanelStateProps; - export const InactivePanelRoot = ({ classes, startLinking, inactivePageText, isLoginClusterFederation }: InactivePanelProps) =>