[arvados] updated: 2.7.0-6076-g0b74cbfdc8
git repository hosting
git at public.arvados.org
Wed Mar 27 14:46:51 UTC 2024
Summary of changes:
services/workbench2/src/components/data-explorer/data-explorer.tsx | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
via 0b74cbfdc8d1cb7d9223bd64ddac390dcdae3cc2 (commit)
from 8c536da81592d21feeabeba0076c3a9347a9851f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 0b74cbfdc8d1cb7d9223bd64ddac390dcdae3cc2
Author: Lisa Knox <lisaknox83 at gmail.com>
Date: Wed Mar 27 10:45:16 2024 -0400
21224: fixed subpanel toolbar css Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>
diff --git a/services/workbench2/src/components/data-explorer/data-explorer.tsx b/services/workbench2/src/components/data-explorer/data-explorer.tsx
index 604856a852..5eb5fdfca2 100644
--- a/services/workbench2/src/components/data-explorer/data-explorer.tsx
+++ b/services/workbench2/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" | "msToolbarStyles" | "searchBox" | "headerMenu" | "toolbar" | "footer" | "root" | "moreOptionsButton" | "title" | 'subProcessTitle' | "dataTable" | "container";
+type CssRules = "titleWrapper" | "msToolbarStyles" | "subpanelToolbarStyles" | "searchBox" | "headerMenu" | "toolbar" | "footer" | "root" | "moreOptionsButton" | "title" | 'subProcessTitle' | "dataTable" | "container";
const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
titleWrapper: {
@@ -27,6 +27,9 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
msToolbarStyles: {
paddingTop: "0.6rem",
},
+ subpanelToolbarStyles: {
+ paddingTop: "1.2rem",
+ },
searchBox: {
paddingBottom: 0,
},
@@ -311,7 +314,7 @@ export const DataExplorer = withStyles(styles)(
</Grid>
)}
</div>
- {!this.multiSelectToolbarInTitle && <MultiselectToolbar isSubPanel={true}/>}
+ {!this.multiSelectToolbarInTitle && <MultiselectToolbar isSubPanel={true} injectedStyles={classes.subpanelToolbarStyles}/>}
<Grid
item
xs="auto"
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list