From dc7548a55080ddb4726d08afa8758fdd9055cc0e Mon Sep 17 00:00:00 2001 From: Jordan Jensen Date: Wed, 17 Apr 2024 15:12:27 -0700 Subject: [PATCH 1/7] Start styling TreeSection actions --- .../homeView/src/components/TreeSection.vue | 86 +++++++++++++++++++ 1 file changed, 86 insertions(+) diff --git a/extensions/vscode/webviews/homeView/src/components/TreeSection.vue b/extensions/vscode/webviews/homeView/src/components/TreeSection.vue index 5e7bb4fe6..c3a949eb8 100644 --- a/extensions/vscode/webviews/homeView/src/components/TreeSection.vue +++ b/extensions/vscode/webviews/homeView/src/components/TreeSection.vue @@ -10,6 +10,30 @@ :class="expanded ? 'codicon-chevron-down' : 'codicon-chevron-right'" />

{{ title }}

+
+
+
+ +
+
+
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo ad adipisci @@ -31,6 +55,68 @@ defineProps<{ From 25611eb92075e9e761ca2485e861b9106fa76dbf Mon Sep 17 00:00:00 2001 From: Jordan Jensen Date: Wed, 17 Apr 2024 15:21:12 -0700 Subject: [PATCH 3/7] Do not expand on actions click --- .../homeView/src/components/TreeSection.vue | 43 ++++++++++--------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/extensions/vscode/webviews/homeView/src/components/TreeSection.vue b/extensions/vscode/webviews/homeView/src/components/TreeSection.vue index 803389fb7..5cd527392 100644 --- a/extensions/vscode/webviews/homeView/src/components/TreeSection.vue +++ b/extensions/vscode/webviews/homeView/src/components/TreeSection.vue @@ -1,11 +1,7 @@