Things (inbox) list: Improve condition for reversed checkbox style (#2512)
Follow-up for #2472. Improve the condition to only show the reversed order where really required. Signed-off-by: Florian Hotze <florianh_dev@icloud.com>pull/2514/head
parent
2539d6dcf3
commit
673ef9b1ca
|
@ -48,7 +48,7 @@
|
|||
<f7-col>
|
||||
<f7-block-title>
|
||||
<span v-if="ready">{{ inboxCount }} entries</span>
|
||||
<div v-if="!$device.desktop" style="text-align:right; color:var(--f7-block-text-color); font-weight: normal" class="float-right">
|
||||
<div v-if="!$device.desktop && $f7.width < 1024" style="text-align:right; color:var(--f7-block-text-color); font-weight: normal" class="float-right">
|
||||
<f7-checkbox :checked="showIgnored" @change="toggleIgnored" /> <label @click="toggleIgnored" style="cursor:pointer">Show ignored</label>
|
||||
</div>
|
||||
<div v-else style="text-align:right; color:var(--f7-block-text-color); font-weight: normal" class="float-right">
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
<f7-block-title class="searchbar-hide-on-search">
|
||||
<span>{{ thingsCount }} Things</span>
|
||||
<template v-if="groupBy === 'location'">
|
||||
<div v-if="!$device.desktop" style="text-align:right; color:var(--f7-block-text-color); font-weight: normal" class="float-right">
|
||||
<div v-if="!$device.desktop && $f7.width < 1024" style="text-align:right; color:var(--f7-block-text-color); font-weight: normal" class="float-right">
|
||||
<f7-checkbox :checked="showNoLocation" @change="toggleShowNoLocation" /> <label @click="toggleShowNoLocation" style="cursor:pointer">Show no location</label>
|
||||
</div>
|
||||
<div v-else style="text-align:right; color:var(--f7-block-text-color); font-weight: normal" class="float-right">
|
||||
|
|
Loading…
Reference in New Issue