diff --git a/client/components/admin/admin-auth.vue b/client/components/admin/admin-auth.vue index 00e24324..4bc6b5db 100644 --- a/client/components/admin/admin-auth.vue +++ b/client/components/admin/admin-auth.vue @@ -3,18 +3,18 @@ v-layout(row, wrap) v-flex(xs12) .admin-header - img(src='/svg/icon-unlock.svg', alt='Authentication', style='width: 80px;') + img.animated.fadeInUp(src='/svg/icon-unlock.svg', alt='Authentication', style='width: 80px;') .admin-header-title - .headline.primary--text Authentication - .subheading.grey--text Configure the authentication settings of your wiki #[v-chip(label, color='primary', small).white--text coming soon] + .headline.primary--text.animated.fadeInLeft Authentication + .subheading.grey--text.animated.fadeInLeft.wait-p4s Configure the authentication settings of your wiki #[v-chip(label, color='primary', small).white--text coming soon] v-spacer - v-btn(outline, color='grey', @click='refresh', large) + v-btn.animated.fadeInDown.wait-p2s(outline, color='grey', @click='refresh', large) v-icon refresh - v-btn(color='success', @click='save', depressed, large) + v-btn.animated.fadeInDown(color='success', @click='save', depressed, large) v-icon(left) check span {{$t('common:actions.apply')}} - v-card.mt-3 + v-card.mt-3.animated.fadeInUp v-tabs(color='grey darken-2', fixed-tabs, slider-color='white', show-arrows, dark) v-tab(key='settings'): v-icon settings v-tab(v-for='strategy in activeStrategies', :key='strategy.key') {{ strategy.title }} diff --git a/client/components/admin/admin-contribute.vue b/client/components/admin/admin-contribute.vue index aeeec3d3..986ccf22 100644 --- a/client/components/admin/admin-contribute.vue +++ b/client/components/admin/admin-contribute.vue @@ -3,11 +3,11 @@ v-layout(row, wrap) v-flex(xs12) .admin-header - img(src='/svg/icon-heart-health.svg', alt='Contribute', style='width: 80px;') + img.animated.fadeInUp(src='/svg/icon-heart-health.svg', alt='Contribute', style='width: 80px;') .admin-header-title - .headline.primary--text {{ $t('admin:contribute.title') }} - .subheading.grey--text {{ $t('admin:contribute.subtitle') }} - v-card.mt-3 + .headline.primary--text.animated.fadeInLeft {{ $t('admin:contribute.title') }} + .subheading.grey--text.animated.fadeInLeft.wait-p4s {{ $t('admin:contribute.subtitle') }} + v-card.mt-3.animated.fadeInUp v-card-text i18next.body-1.pl-3(path='admin:contribute.openSource', tag='div') v-icon(color='red') favorite diff --git a/client/components/admin/admin-general.vue b/client/components/admin/admin-general.vue index 81eadc3c..97749c57 100644 --- a/client/components/admin/admin-general.vue +++ b/client/components/admin/admin-general.vue @@ -3,19 +3,19 @@ v-layout(row wrap) v-flex(xs12) .admin-header - img(src='/svg/icon-categorize.svg', alt='General', style='width: 80px;') + img.animated.fadeInUp(src='/svg/icon-categorize.svg', alt='General', style='width: 80px;') .admin-header-title - .headline.primary--text {{ $t('admin:general.title') }} - .subheading.grey--text {{ $t('admin:general.subtitle') }} + .headline.primary--text.animated.fadeInLeft {{ $t('admin:general.title') }} + .subheading.grey--text.animated.fadeInLeft {{ $t('admin:general.subtitle') }} v-spacer - v-btn(color='success', depressed, @click='save', large) + v-btn.animated.fadeInDown(color='success', depressed, @click='save', large) v-icon(left) check span {{$t('common:actions.apply')}} v-form.pt-3 v-layout(row wrap) v-flex(lg6 xs12) v-form - v-card.wiki-form + v-card.wiki-form.animated.fadeInUp v-toolbar(color='primary', dark, dense, flat) v-toolbar-title .subheading {{ $t('admin:general.siteInfo') }} @@ -87,7 +87,7 @@ hint='A unique identifier provided by your analytics service provider.' ) v-flex(lg6 xs12) - v-card.wiki-form + v-card.wiki-form.animated.fadeInUp.wait-p2s v-toolbar(color='primary', dark, dense, flat) v-toolbar-title .subheading {{ $t('admin:general.siteBranding') }} @@ -124,7 +124,7 @@ hint='Name to use when displaying copyright notice in the footer. Leave empty to hide.' ) - v-card.wiki-form.mt-3 + v-card.wiki-form.mt-3.animated.fadeInUp.wait-p4s v-toolbar(color='primary', dark, dense, flat) v-toolbar-title .subheading Features @@ -169,7 +169,7 @@ export default { analyticsServices: [ { text: 'None', value: '' }, { text: 'Google Analytics', value: 'ga' }, - { text: 'Google Tag Manager', value: 'gtm' }, + { text: 'Google Tag Manager', value: 'gtm' } ], metaRobots: [ { text: 'Index', value: 'index' }, diff --git a/client/components/admin/admin-groups.vue b/client/components/admin/admin-groups.vue index 82b0a731..4623773f 100644 --- a/client/components/admin/admin-groups.vue +++ b/client/components/admin/admin-groups.vue @@ -3,15 +3,15 @@ v-layout(row wrap) v-flex(xs12) .admin-header - img(src='/svg/icon-people.svg', alt='Groups', style='width: 80px;') + img.animated.fadeInUp(src='/svg/icon-people.svg', alt='Groups', style='width: 80px;') .admin-header-title - .headline.blue--text.text--darken-2 Groups - .subheading.grey--text Manage groups and their permissions + .headline.blue--text.text--darken-2.animated.fadeInLeft Groups + .subheading.grey--text.animated.fadeInLeft.wait-p4s Manage groups and their permissions v-spacer - v-btn(color='grey', outline, @click='refresh', large) + v-btn.animated.fadeInDown.wait-p2s(color='grey', outline, @click='refresh', large) v-icon refresh v-dialog(v-model='newGroupDialog', max-width='500') - v-btn(color='primary', depressed, slot='activator', large) + v-btn.animated.fadeInDown(color='primary', depressed, slot='activator', large) v-icon(left) add span New Group v-card.wiki-form @@ -32,7 +32,7 @@ v-spacer v-btn(flat, @click='newGroupDialog = false') Cancel v-btn(color='primary', @click='createGroup') Create - v-card.mt-3 + v-card.mt-3.animated.fadeInUp v-data-table( :items='groups' :headers='headers' @@ -63,7 +63,6 @@ import _ from 'lodash' import groupsQuery from 'gql/admin/groups/groups-query-list.gql' import createGroupMutation from 'gql/admin/groups/groups-mutation-create.gql' -import deleteGroupMutation from 'gql/admin/groups/groups-mutation-delete.gql' export default { data() { diff --git a/client/components/admin/admin-locale.vue b/client/components/admin/admin-locale.vue index 170d7ec9..45114fc9 100644 --- a/client/components/admin/admin-locale.vue +++ b/client/components/admin/admin-locale.vue @@ -3,18 +3,18 @@ v-layout(row, wrap) v-flex(xs12) .admin-header - img(src='/svg/icon-globe-earth.svg', alt='Locale', style='width: 80px;') + img.animated.fadeInUp(src='/svg/icon-globe-earth.svg', alt='Locale', style='width: 80px;') .admin-header-title - .headline.primary--text {{ $t('admin:locale.title') }} - .subheading.grey--text {{ $t('admin:locale.subtitle') }} + .headline.primary--text.animated.fadeInLeft {{ $t('admin:locale.title') }} + .subheading.grey--text.animated.fadeInLeft.wait-p4s {{ $t('admin:locale.subtitle') }} v-spacer - v-btn(color='success', depressed, @click='save', large, :loading='loading') + v-btn.animated.fadeInDown(color='success', depressed, @click='save', large, :loading='loading') v-icon(left) check span {{$t('common:actions.apply')}} v-form.pt-3 v-layout(row wrap) v-flex(lg6 xs12) - v-card.wiki-form + v-card.wiki-form.animated.fadeInUp v-toolbar(color='primary', dark, dense, flat) v-toolbar-title .subheading {{ $t('admin:locale.settings') }} @@ -48,7 +48,7 @@ :hint='namespacing ? $t("admin:locale.autoUpdate.hintWithNS") : $t("admin:locale.autoUpdate.hint")' ) - v-card.wiki-form.mt-3 + v-card.wiki-form.mt-3.animated.fadeInUp.wait-p2s v-toolbar(color='primary', dark, dense, flat) v-toolbar-title .subheading {{ $t('admin:locale.namespacing') }} @@ -99,7 +99,7 @@ v-list-tile-action v-checkbox(:input-value='data.tile.props.value', color='primary', value) v-flex(lg6 xs12) - v-card + v-card.animated.fadeInUp.wait-p4s v-toolbar(color='teal', dark, dense, flat) v-toolbar-title .subheading {{ $t('admin:locale.download') }} diff --git a/client/components/admin/admin-mail.vue b/client/components/admin/admin-mail.vue index 11cf054a..103f66db 100644 --- a/client/components/admin/admin-mail.vue +++ b/client/components/admin/admin-mail.vue @@ -1,21 +1,21 @@