diff --git a/src/components/MinimalView/MinimalHeading.vue b/src/components/MinimalView/MinimalHeading.vue
index 5b99c9f2..0a965bb3 100644
--- a/src/components/MinimalView/MinimalHeading.vue
+++ b/src/components/MinimalView/MinimalHeading.vue
@@ -1,24 +1,33 @@
-
{{ title }}
+ @click="selectSection(index)" v-tooltip="tooltip()"
+ v-bind:class="{ selected: selected, 'minimal-section-heading': true, center: hideTitleText }">
+
+ {{ title }}
@@ -28,23 +37,33 @@ export default {
@import '@/styles/style-helpers.scss';
div.minimal-section-heading {
+ display: flex;
cursor: pointer;
- padding: 0.5rem 0.25rem;
margin-bottom: 0;
+ padding: 0.5rem 0.25rem;
+ justify-content: flex-start;
+ align-items: center;
background: var(--minimal-view-section-heading-background);
border: 1px solid var(--minimal-view-section-heading-color);
border-bottom: none;
border-radius: var(--curve-factor) var(--curve-factor) 0 0;
- h3 {
+ h3.section-title {
margin: 0;
color: var(--minimal-view-section-heading-color);
}
+ .section-icon {
+ color: var(--minimal-view-section-heading-color);
+ margin-right: 0.2rem;
+ }
&.selected {
background: var(--minimal-view-section-heading-color);
- h3 {
+ h3.section-title, .section-icon {
color: var(--minimal-view-section-heading-background);
}
}
+ &.center {
+ justify-content: center;
+ }
}
diff --git a/src/components/MinimalView/MinimalSection.vue b/src/components/MinimalView/MinimalSection.vue
index 706f58d8..6eb09341 100644
--- a/src/components/MinimalView/MinimalSection.vue
+++ b/src/components/MinimalView/MinimalSection.vue
@@ -22,7 +22,7 @@
@triggerModal="triggerModal"
/>
-