Skip to content

Commit

Permalink
wc: sidebar minor style test
Browse files Browse the repository at this point in the history
  • Loading branch information
imedina committed Nov 26, 2024
1 parent 6ab29c3 commit 8110934
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 2 deletions.
59 changes: 58 additions & 1 deletion src/sites/iva/conf/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ const SUITE = {
},
{
id: "clinical",
name: "Clinical",
name: "Clinical Analysis",
icon: "fa-stethoscope",
logo: "img/tools/icons/interpretation_portal_white.svg",
logoAlt: "img/tools/icons/interpretation_portal.svg",
Expand Down Expand Up @@ -798,6 +798,63 @@ const SUITE = {
visible: false
},
},
{
id: "catalog",
name: "Data Catalog",
icon: "fa-archive",
logo: "img/tools/icons/interpretation_portal_white.svg",
logoAlt: "img/tools/icons/interpretation_portal.svg",
visibility: "public",
welcomePage: {
title: "Data Catalog",
display: {
titleStyle: "text-align:center;",
subtitleStyle: "text-align:center;",
logoWidth: "100px",
},
subtitle: "",
// logo: "img/Zetta_logo.png",
logo: "img/tools/icons/interpretation_portal.svg",
content: `
<p class="text-center">
Welcome to the Data Catalog Application
<br>
This app allows clinicians to create cases, execute clinical interpretations and create clinical reports.
</p>`
},
menu: [
{
id: "workflow-manager",
name: "Workflow Manager",
icon: "img/tools/icons/interpretation_portal.svg",
description: `
<p>Explore and review Clinical Interpretations analysis</p>
<ul>
<li>Filter by gene, consequence, frequency and much more.</li>
<li>Create clinical interpretations and reports.</li>
</ul>
`,
visibility: "public",
thumbnail: "interpretation_portal.png",
},
{
id: "clinical-configuration",
name: "Configuration",
icon: "img/tools/icons/interpretation_portal.svg",
visibility: "public",
},
],
// fileExplorer: {
// visibility: "private"
// },
// jobMonitor: {
// visibility: "private"
// },
// search: {
// placeholder: "Search",
// visible: false
// },
},
{
id: "admin",
name: "Admin",
Expand Down
2 changes: 1 addition & 1 deletion src/webcomponents/commons/layout/layout-sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default class LayoutSidebar extends LitElement {
}

renderSectionSeparator(text) {
return html`<div class="mt-2 text-gray-500 fw-bold fs-7 text-center">${text}</div>`;
return html`<div class="mt-2 fw-bold text-gray-700 fs-9 text-center">${text}</div>`;
}

renderLink(link) {
Expand Down

0 comments on commit 8110934

Please sign in to comment.