Reformat My Cards page

* make the page more visually pleasing
* user +viewer to display Markdown in titles
* modify `colorClass()` in Lists model to return 'list-header-{color}'
* modify `colorClass()` of Swimlanes model to return 'swimlane-{color}'
This commit is contained in:
John R. Supplee 2021-01-04 13:53:08 +02:00
parent a0b72d0287
commit e793e71163
7 changed files with 75 additions and 24 deletions

View file

@ -27,6 +27,7 @@ Meteor.publish('boards', function() {
{
fields: {
_id: 1,
boardId: 1,
archived: 1,
slug: 1,
title: 1,
@ -62,7 +63,9 @@ Meteor.publish('mySwimlanes', function() {
fields: {
_id: 1,
title: 1,
boardId: 1,
type: 1,
color: 1,
sort: 1,
},
// sort: {
@ -91,7 +94,10 @@ Meteor.publish('myLists', function() {
{
fields: {
_id: 1,
boardId: 1,
swimlaneId: 1,
title: 1,
color: 1,
type: 1,
sort: 1,
},