1
0

Custom backgrounds for lists (#144)

Make backgrounds list responsive

Show initial collection of backgrounds

Remove test data

Fix "backgroundInformation is null" when navigating

Fix kanban height

Remove debug log

Move list title to top header

Add styling for title in top header

Set the current list (and background) when loading settings

Only load the background if it changed

Make task detail view look good again

Fix bottom spacing

Make list and table view look good again

Make pages with background at least 100vh

Fix kanban height

Make extra buttons look good again

Move list title and view-switcher in one row

Add styling for backgrounds

Set background globally

Add getting list background and putting it in vuex

Add setting list background

Move list background setting to seperate list

Add search timeout to not search on every keypress

Add getting thumbnails through api

Add basic search for unsplash backgrounds

Co-authored-by: kolaente <k@knt.li>
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/144
This commit is contained in:
konrad
2020-05-31 19:17:10 +00:00
parent 7fc0756b01
commit 4b3f92ae34
27 changed files with 513 additions and 70 deletions

View File

@ -0,0 +1,12 @@
import AbstractModel from './abstractModel'
export default class BackgroundImageModel extends AbstractModel {
defaults() {
return {
id: 0,
url: '',
thumb: '',
info: {},
}
}
}

View File

@ -34,6 +34,7 @@ export default class ListModel extends AbstractModel {
isArchived: false,
hexColor: '',
identifier: '',
backgroundInformation: null,
created: null,
updated: null,