X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/41f6f1e495c82fcfa79b87cf718fa2e9cd91c726..ed4389e99b60c9e2316312829ed5f105dd1cf3b7:/src/views/inactive-panel/inactive-panel.tsx 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) =>