diff --git a/CHANGELOG.md b/CHANGELOG.md index 19c116b40..1093e77e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - Add quick link for `group folder` app when not downloaded and enabled (project folder setup) +- Adjust dashboard panel of `integration app` consistent to that dashboard panel of other nextcloud apps +- Adjust padding for assignee avatar in `workpackage` template ## 2.6.1 - 2024-02-19 ### Changed diff --git a/css/dashboard.css b/css/dashboard.css index 78e9e2dc9..03decd28d 100644 --- a/css/dashboard.css +++ b/css/dashboard.css @@ -22,6 +22,16 @@ body.theme--dark .icon-openproject { height: 100%; align-items: start; justify-content: center; + color: var(--color-text-maxcontrast); +} + +.panel--content .empty-content .empty-content--message--title { + font-weight: normal; + font-size: 100%; +} + +.panel--content .empty-content .empty-content--icon { + opacity: .4; } .panel > .panel--header .icon-openproject::before { diff --git a/src/components/tab/EmptyContent.vue b/src/components/tab/EmptyContent.vue index 30364ef90..bf4b16f1c 100644 --- a/src/components/tab/EmptyContent.vue +++ b/src/components/tab/EmptyContent.vue @@ -90,7 +90,7 @@ export default { return t('integration_openproject', 'Could not fetch work packages from OpenProject') } else if (this.isStateOk) { if (this.dashboard) { - return t('integration_openproject', 'No OpenProject notifications!') + return t('integration_openproject', 'No OpenProject notifications') } else if (this.isMultipleWorkpackageLinking) { return t('integration_openproject', 'Add a new link to all selected files') } diff --git a/src/components/tab/WorkPackage.vue b/src/components/tab/WorkPackage.vue index d0cf7ec41..d57dad900 100644 --- a/src/components/tab/WorkPackage.vue +++ b/src/components/tab/WorkPackage.vue @@ -294,7 +294,6 @@ export default { &__assignee { display: flex; flex-direction: row; - padding: 5px; &__assignee { font-size: 0.81rem; diff --git a/src/views/Dashboard.vue b/src/views/Dashboard.vue index daa30e304..9cb91c848 100644 --- a/src/views/Dashboard.vue +++ b/src/views/Dashboard.vue @@ -90,7 +90,7 @@ export default { } else if (this.state === STATE.CONNECTION_ERROR) { return t('integration_openproject', 'Error connecting to OpenProject') } else if (this.state === STATE.OK) { - return t('integration_openproject', 'No OpenProject notifications!') + return t('integration_openproject', 'No OpenProject notifications') } return 'Cannot connect to OpenProject' },