From 1cd60c69e5306f19dc26429379792151cdb274b8 Mon Sep 17 00:00:00 2001 From: Lisa Knox Date: Fri, 8 Dec 2023 14:48:47 -0500 Subject: [PATCH] 21280: nade separate css class for subprocess menu Arvados-DCO-1.1-Signed-off-by: Lisa Knox ~ --- src/components/data-explorer/data-explorer.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/components/data-explorer/data-explorer.tsx b/src/components/data-explorer/data-explorer.tsx index 8f5661929b..715d2e69db 100644 --- a/src/components/data-explorer/data-explorer.tsx +++ b/src/components/data-explorer/data-explorer.tsx @@ -17,7 +17,7 @@ import { CloseIcon, IconType, MaximizeIcon, UnMaximizeIcon, MoreVerticalIcon } f import { PaperProps } from "@material-ui/core/Paper"; import { MPVPanelProps } from "components/multi-panel-view/multi-panel-view"; -type CssRules = "titleWrapper" | "searchBox" | "headerMenu" | "toolbar" | "footer" | "root" | "moreOptionsButton" | "title" | "dataTable" | "container"; +type CssRules = "titleWrapper" | "searchBox" | "headerMenu" | "toolbar" | "footer" | "root" | "moreOptionsButton" | "title" | 'subProcessTitle' | "dataTable" | "container"; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ titleWrapper: { @@ -42,6 +42,14 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ padding: 0, }, title: { + display: "inline-block", + paddingLeft: theme.spacing.unit * 2, + paddingTop: theme.spacing.unit * 3, + fontSize: "18px", + paddingRight: "10px", + marginBottom: '-50px' + }, + subProcessTitle: { display: "inline-block", paddingLeft: theme.spacing.unit * 2, paddingTop: theme.spacing.unit * 2, @@ -218,7 +226,7 @@ export const DataExplorer = withStyles(styles)( {title} -- 2.30.2