diff --git a/public/assets/css/main.css b/public/assets/css/main.css index d0c4cdd..6e11265 100644 --- a/public/assets/css/main.css +++ b/public/assets/css/main.css @@ -417,10 +417,11 @@ section.team { .progress-title a.github { margin-top: 10px; color: #6D73A2; - display: flex; + display: inline-flex; align-items: center; opacity: .75; text-decoration: none; + transition: color 50ms ease-in-out; } .progress-title a.github:focus, .progress-title a.github:hover, .progress-title a.github:visited { color: #6D73A2; @@ -436,6 +437,9 @@ section.team { .feature-list-wrapper.purple .progress-title a.github, .feature-list-wrapper.purple .progress-title a.github:focus, .feature-list-wrapper.purple .progress-title a.github:hover, .feature-list-wrapper.purple .progress-title a.github:visited { color: #c69cf9; } +.feature-list-wrapper .core > .progress-title a.github:hover { + color: white; +} .feature-list-wrapper canvas { width: 100px; diff --git a/src/trello.js b/src/trello.js index 4860f2d..ca5f856 100644 --- a/src/trello.js +++ b/src/trello.js @@ -41,7 +41,7 @@ async function updateTrelloCache() { }; meta.title = board.name; - meta.id = board.id; + meta.id = board.shortLink; const lists = await trello.getListsOnBoard(board.id); const cards = await trello.getCardsOnBoard(board.id); diff --git a/views/partials/progress-list.handlebars b/views/partials/progress-list.handlebars index a72f764..91e6460 100644 --- a/views/partials/progress-list.handlebars +++ b/views/partials/progress-list.handlebars @@ -10,12 +10,14 @@