diff --git a/frontend/src/components/KpiCard.vue b/frontend/src/components/KpiCard.vue index bba3e60f..a4ee7b36 100644 --- a/frontend/src/components/KpiCard.vue +++ b/frontend/src/components/KpiCard.vue @@ -1,9 +1,23 @@ @@ -13,6 +27,8 @@ interface Props { value: string | number; subtext?: string; loading?: boolean; + icon?: any; + unit?: string; } defineProps(); @@ -20,22 +36,71 @@ defineProps(); diff --git a/frontend/src/components/Layout.vue b/frontend/src/components/Layout.vue index 0508068e..4312707c 100644 --- a/frontend/src/components/Layout.vue +++ b/frontend/src/components/Layout.vue @@ -90,9 +90,7 @@
- +
@@ -215,11 +213,22 @@ const onLogout = () => { :deep(.el-sub-menu__title) { color: rgba(255, 255, 255, 0.65) !important; margin: 4px 12px; + border-radius: var(--ctms-radius); } :deep(.el-sub-menu__title:hover) { color: #fff !important; - background-color: transparent !important; + background-color: rgba(255, 255, 255, 0.1) !important; +} + +:deep(.el-menu--inline) { + background-color: rgba(0, 0, 0, 0.2) !important; + margin: 0 !important; +} + +:deep(.el-menu--inline .el-menu-item) { + padding-left: 48px !important; + margin: 2px 12px; } .layout-header { diff --git a/frontend/src/components/QuickActions.vue b/frontend/src/components/QuickActions.vue index 3d786196..a324c3c0 100644 --- a/frontend/src/components/QuickActions.vue +++ b/frontend/src/components/QuickActions.vue @@ -1,35 +1,128 @@ diff --git a/frontend/src/components/StudySelector.vue b/frontend/src/components/StudySelector.vue index d73af61b..c5d68a79 100644 --- a/frontend/src/components/StudySelector.vue +++ b/frontend/src/components/StudySelector.vue @@ -1,14 +1,18 @@