Skip to content

Commit

Permalink
Sitemap editor: Move collapse chevron for toolbar to the left (#2218)
Browse files Browse the repository at this point in the history
Follow-up for #2193.

Signed-off-by: Florian Hotze <florianh_dev@icloud.com>
  • Loading branch information
florian-h05 authored Dec 13, 2023
1 parent 123a8d3 commit f4773a7
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@
<f7-sheet v-if="currentTab === 'tree'" class="sitemap-details-sheet" :backdrop="false" :close-on-escape="true" :opened="detailsOpened" @sheet:closed="detailsOpened = false">
<f7-page>
<f7-toolbar tabbar bottom scrollable>
<div class="left">
<f7-link sheet-close class="padding-right">
<f7-icon f7="chevron_down" />
</f7-link>
</div>
<f7-link class="padding-left padding-right" :tab-link-active="detailsTab === 'widget'" @click="detailsTab = 'widget'">
Widget
</f7-link>
Expand All @@ -131,11 +136,6 @@
<f7-link class="padding-left padding-right" :tab-link-active="detailsTab === 'colors'" @click="detailsTab = 'colors'" v-if="selectedWidget && selectedWidget.component !== 'Sitemap'">
Colors
</f7-link>
<div class="right">
<f7-link sheet-close class="padding-right">
<f7-icon f7="chevron_down" />
</f7-link>
</div>
</f7-toolbar>
<f7-block style="margin-bottom: 6rem" v-if="selectedWidget && detailsTab === 'widget'">
<widget-details :widget="selectedWidget" :createMode="createMode" @remove="removeWidget" @movedown="moveWidgetDown" @moveup="moveWidgetUp" />
Expand Down

0 comments on commit f4773a7

Please sign in to comment.