[arvados] updated: 2.7.0-6515-gfc63b6e022
git repository hosting
git at public.arvados.org
Mon Apr 22 18:03:25 UTC 2024
Summary of changes:
.../project-details-card/project-details-card.tsx | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
via fc63b6e0223a4354cf41a8d094c3a66e02871c04 (commit)
from 7735145aa4971c1ef8e3060bfc1439b7d2de6f86 (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 fc63b6e0223a4354cf41a8d094c3a66e02871c04
Author: Lisa Knox <lisaknox83 at gmail.com>
Date: Mon Apr 22 14:03:20 2024 -0400
21224: fixed misaligned chevron Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>
diff --git a/services/workbench2/src/views-components/project-details-card/project-details-card.tsx b/services/workbench2/src/views-components/project-details-card/project-details-card.tsx
index 0699e7b416..7863511f3b 100644
--- a/services/workbench2/src/views-components/project-details-card/project-details-card.tsx
+++ b/services/workbench2/src/views-components/project-details-card/project-details-card.tsx
@@ -38,6 +38,7 @@ type CssRules =
| 'faveIcon'
| 'frozenIcon'
| 'accountStatusSection'
+ | 'chipToggle'
| 'chipSection'
| 'tag'
| 'description';
@@ -119,6 +120,11 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
alignItems: 'center',
paddingLeft: '1rem',
},
+ chipToggle: {
+ display: 'flex',
+ alignItems: 'center',
+ height: '2rem',
+ },
chipSection: {
marginBottom: '-2rem',
},
@@ -345,7 +351,9 @@ const ProjectCard: React.FC<ProjectCardProps> = ({ classes, currentResource, fro
onClick={toggleProperties}
className={classes.descriptionToggle}
>
- <ExpandChevronRight expanded={showProperties} />
+ <div className={classes.chipToggle}>
+ <ExpandChevronRight expanded={showProperties} />
+ </div>
<section className={classes.showMore}>
<Collapse
in={showProperties}
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list