summaryrefslogtreecommitdiffstats
path: root/apps/dashboard
diff options
context:
space:
mode:
authorJan C. Borchardt <hey@jancborchardt.net>2020-08-11 16:45:02 +0200
committerJan C. Borchardt <hey@jancborchardt.net>2020-08-11 16:45:02 +0200
commit4507c362cdf8e8774174fef451bfd0cc26d141e4 (patch)
tree4001ce4942321ab7c1cd4c7419d0090593a82a58 /apps/dashboard
parent227b4761b85094d4937b03c23a7820dab7d07d3e (diff)
downloadnextcloud-server-4507c362cdf8e8774174fef451bfd0cc26d141e4.tar.gz
nextcloud-server-4507c362cdf8e8774174fef451bfd0cc26d141e4.zip
Dashboard: Add photo credit
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/dashboard')
-rw-r--r--apps/dashboard/src/App.vue13
1 files changed, 12 insertions, 1 deletions
diff --git a/apps/dashboard/src/App.vue b/apps/dashboard/src/App.vue
index 3c4644df47b..fdf9f1e716f 100644
--- a/apps/dashboard/src/App.vue
+++ b/apps/dashboard/src/App.vue
@@ -27,7 +27,7 @@
<a v-tooltip="tooltip"
class="edit-panels icon-add"
:class="{ firstrun: firstRun }"
- @click="showModal">{{ t('dashboard', 'Edit widgets') }}</a>
+ @click="showModal">{{ t('dashboard', 'Customize') }}</a>
<Modal v-if="modal" @close="closeModal">
<div class="modal__content">
@@ -50,6 +50,9 @@
</Draggable>
<a :href="appStoreUrl" class="button">{{ t('dashboard', 'Get more widgets from the app store') }}</a>
+
+ <h3>{{ t('dashboard', 'Credits') }}</h3>
+ <p>{{ t('dashboard', 'Photos') }}: <a href="https://www.flickr.com/photos/paszczak000/8715851521/" target="_blank" rel="noopener">Clouds (Kamil Porembiński)</a>, <a href="https://www.flickr.com/photos/148302424@N05/36591009215/" target="_blank" rel="noopener">Un beau soir dété (Tanguy Domenge)</a>.</p>
</div>
</Modal>
</div>
@@ -407,6 +410,14 @@ export default {
background-position: left center;
padding-left: 26px;
}
+
+ h3 {
+ font-weight: bold;
+
+ &:not(:first-of-type) {
+ margin-top: 32px;
+ }
+ }
}
.flip-list-move {