This commit is contained in:
@@ -191,6 +191,10 @@ todo:3 link back to list from single edit form
|
|||||||
not sure about that, maybe in wide mode it could surface that from menu but in
|
not sure about that, maybe in wide mode it could surface that from menu but in
|
||||||
narrow mode no shortcut because they could use the nav menu anyway and because fuck em, that's why :)
|
narrow mode no shortcut because they could use the nav menu anyway and because fuck em, that's why :)
|
||||||
|
|
||||||
|
todo: 3 use <v-spacer v-if="!$vuetify.breakpoint.xs"></v-spacer> technique for any dialogs where small mobile view hides far right button
|
||||||
|
see home-schedule more info dialog for more info :)
|
||||||
|
This really means search for all the <v-spacer uses in client code and test that particular one in mobile and see if it's right side buttons are cut off or not
|
||||||
|
(can just test in 360px max in dev laptop)
|
||||||
|
|
||||||
- 3: tag cloud feature exposed to UI somewhere?
|
- 3: tag cloud feature exposed to UI somewhere?
|
||||||
|
|
||||||
|
|||||||
@@ -147,7 +147,7 @@
|
|||||||
<v-btn @click="remove()" text>
|
<v-btn @click="remove()" text>
|
||||||
{{ $ay.t("Delete") }}
|
{{ $ay.t("Delete") }}
|
||||||
</v-btn>
|
</v-btn>
|
||||||
<v-spacer></v-spacer>
|
<v-spacer v-if="!$vuetify.breakpoint.xs"></v-spacer>
|
||||||
<v-btn text @click="editMenu = false">{{
|
<v-btn text @click="editMenu = false">{{
|
||||||
$ay.t("Cancel")
|
$ay.t("Cancel")
|
||||||
}}</v-btn>
|
}}</v-btn>
|
||||||
|
|||||||
@@ -44,7 +44,7 @@
|
|||||||
data-cy="reportselector:ok"
|
data-cy="reportselector:ok"
|
||||||
>{{ $ay.t("New") }}</v-btn
|
>{{ $ay.t("New") }}</v-btn
|
||||||
>
|
>
|
||||||
<v-spacer></v-spacer>
|
<v-spacer v-if="!$vuetify.breakpoint.xs"></v-spacer>
|
||||||
<v-btn
|
<v-btn
|
||||||
color="primary"
|
color="primary"
|
||||||
text
|
text
|
||||||
|
|||||||
@@ -315,7 +315,9 @@
|
|||||||
<v-btn color="primary" text @click="openScheduledItem()">{{
|
<v-btn color="primary" text @click="openScheduledItem()">{{
|
||||||
$ay.t("Open")
|
$ay.t("Open")
|
||||||
}}</v-btn>
|
}}</v-btn>
|
||||||
<v-spacer></v-spacer>
|
|
||||||
|
<v-spacer v-if="!$vuetify.breakpoint.xs"></v-spacer>
|
||||||
|
|
||||||
<v-btn color="primary" text @click="moreInfoDialog = false">
|
<v-btn color="primary" text @click="moreInfoDialog = false">
|
||||||
{{ $ay.t("Close") }}
|
{{ $ay.t("Close") }}
|
||||||
</v-btn>
|
</v-btn>
|
||||||
@@ -335,7 +337,7 @@
|
|||||||
<v-btn text @click="settingsDialog = false" color="primary">{{
|
<v-btn text @click="settingsDialog = false" color="primary">{{
|
||||||
$ay.t("Cancel")
|
$ay.t("Cancel")
|
||||||
}}</v-btn>
|
}}</v-btn>
|
||||||
<v-spacer></v-spacer>
|
<v-spacer v-if="!$vuetify.breakpoint.xs"></v-spacer>
|
||||||
<v-btn
|
<v-btn
|
||||||
color="primary"
|
color="primary"
|
||||||
text
|
text
|
||||||
|
|||||||
Reference in New Issue
Block a user