[arvados-workbench2] updated: 2.6.0-116-g09749ef2
git repository hosting
git at public.arvados.org
Tue Oct 3 13:29:41 UTC 2023
Summary of changes:
src/components/multiselect-toolbar/MultiselectToolbar.tsx | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
via 09749ef22f0e66b55aa6f448f23dbeadcd2e6321 (commit)
from bdcaea37455b72c345c7305e6a7bc4ba63d5c1b7 (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 09749ef22f0e66b55aa6f448f23dbeadcd2e6321
Author: Lisa Knox <lisaknox83 at gmail.com>
Date: Tue Oct 3 09:29:36 2023 -0400
15768: fixed mstoolbar button ripple Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>
diff --git a/src/components/multiselect-toolbar/MultiselectToolbar.tsx b/src/components/multiselect-toolbar/MultiselectToolbar.tsx
index e52cef6a..3d8ae0c3 100644
--- a/src/components/multiselect-toolbar/MultiselectToolbar.tsx
+++ b/src/components/multiselect-toolbar/MultiselectToolbar.tsx
@@ -34,8 +34,8 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
transition: "width 150ms",
},
button: {
- width: "1rem",
- margin: "auto 5px",
+ width: "2.5rem",
+ height: "2.5rem ",
},
});
@@ -63,7 +63,8 @@ export const MultiselectToolbar = connect(
<React.Fragment>
<Toolbar
className={classes.root}
- style={{ width: `${buttons.length * 2.12}rem` }}>
+ style={{ width: `${buttons.length * 2.5}rem` }}
+ >
{buttons.length ? (
buttons.map((btn, i) =>
btn.name === "ToggleTrashAction" ? (
@@ -71,7 +72,8 @@ export const MultiselectToolbar = connect(
className={classes.button}
title={currentPathIsTrash ? "Restore selected" : "Move to trash"}
key={i}
- disableFocusListener>
+ disableFocusListener
+ >
<IconButton onClick={() => props.executeMulti(btn, checkedList, props.resources)}>
{currentPathIsTrash ? <RestoreFromTrashIcon /> : <TrashIcon />}
</IconButton>
@@ -81,7 +83,8 @@ export const MultiselectToolbar = connect(
className={classes.button}
title={btn.name}
key={i}
- disableFocusListener>
+ disableFocusListener
+ >
<IconButton onClick={() => props.executeMulti(btn, checkedList, props.resources)}>
{btn.icon ? btn.icon({}) : <></>}
</IconButton>
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list