cleanup footer on login page
This commit is contained in:
@@ -55,7 +55,12 @@ todo: modify Widget form to use picklist to select user, test with huge tracts o
|
|||||||
todo: check picklist current default templates are adequate for now
|
todo: check picklist current default templates are adequate for now
|
||||||
todo: picklist template editor UI at client end
|
todo: picklist template editor UI at client end
|
||||||
todo: document how to use picklist in user docs
|
todo: document how to use picklist in user docs
|
||||||
todo: login form on mobile (and desktop) is scrunched to the top, logo with almost no headroom, would like to see it all centered
|
todo: login form on mobile (and desktop)
|
||||||
|
- is scrunched to the top, logo with almost no headroom, would like to see it all centered
|
||||||
|
- version banner is not visible on ipad without scrolling down (dragging form upwards)
|
||||||
|
- Maybe the banner is not a good idea, it never looks right exactly, put the version and copyright elsewhere?
|
||||||
|
- Or play with it and see if it can be made to look nicer, centered, cleaner etc
|
||||||
|
|
||||||
todo: now that we have case insensitive should I port that shit over to the datagrid filter as well?
|
todo: now that we have case insensitive should I port that shit over to the datagrid filter as well?
|
||||||
todo: Utilize new picklist in Widget form to select something that exists and can then test out DataListView etc
|
todo: Utilize new picklist in Widget form to select something that exists and can then test out DataListView etc
|
||||||
|
|
||||||
|
|||||||
@@ -195,8 +195,31 @@
|
|||||||
</transition>
|
</transition>
|
||||||
</v-container>
|
</v-container>
|
||||||
</v-content>
|
</v-content>
|
||||||
<v-footer color="primary" padless v-if="!isAuthenticated">
|
<v-footer
|
||||||
<div>
|
v-if="!isAuthenticated"
|
||||||
|
absolute
|
||||||
|
class="font-weight-medium body-2"
|
||||||
|
>
|
||||||
|
<v-col class="primary py-4 text-center white--text" cols="12">
|
||||||
|
<a
|
||||||
|
href="https://ayanova.com"
|
||||||
|
target="_blank"
|
||||||
|
style="text-decoration:none"
|
||||||
|
class="primary py-md-4 px-md-12 text-center white--text"
|
||||||
|
>
|
||||||
|
AyaNova {{ version }} {{ copyright }}
|
||||||
|
</a>
|
||||||
|
</v-col>
|
||||||
|
</v-footer>
|
||||||
|
</v-app>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
/* Xeslint-disable */
|
||||||
|
|
||||||
|
/*
|
||||||
|
<v-footer color="primary" v-if="!isAuthenticated">
|
||||||
|
<div class="text-center overline">
|
||||||
<a
|
<a
|
||||||
href="https://ayanova.com"
|
href="https://ayanova.com"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
@@ -207,11 +230,7 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</v-footer>
|
</v-footer>
|
||||||
</v-app>
|
*/
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
/* Xeslint-disable */
|
|
||||||
import ayaNovaVersion from "./api/ayanova-version";
|
import ayaNovaVersion from "./api/ayanova-version";
|
||||||
import gzconfirm from "./components/gzconfirm";
|
import gzconfirm from "./components/gzconfirm";
|
||||||
import gznotify from "./components/gznotify";
|
import gznotify from "./components/gznotify";
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ export default new Vuex.Store({
|
|||||||
state.locale.timeZoneOverride = "America/New_York";
|
state.locale.timeZoneOverride = "America/New_York";
|
||||||
state.locale.currencyName = "USD";
|
state.locale.currencyName = "USD";
|
||||||
state.locale.hour12 = true;
|
state.locale.hour12 = true;
|
||||||
state.globalSettings={};
|
state.globalSettings = {};
|
||||||
},
|
},
|
||||||
addNavItem(state, data) {
|
addNavItem(state, data) {
|
||||||
state.navItems.push(data);
|
state.navItems.push(data);
|
||||||
|
|||||||
Reference in New Issue
Block a user