Skip to content

Commit

Permalink
Backport/ux UI prs (#593)
Browse files Browse the repository at this point in the history
* adjust the panel content color (#583)

Signed-off-by: nabim777 <nabinalemagar019@gmail.com>

* removed ! character from dashboard content

Signed-off-by: nabim777 <nabinalemagar019@gmail.com>

* adjust the left align between the row-task-status and row-assigned

Signed-off-by: sagargurung1001@gmail.com <sagargurung1001@gmail.com>

---------

Signed-off-by: nabim777 <nabinalemagar019@gmail.com>
Signed-off-by: sagargurung1001@gmail.com <sagargurung1001@gmail.com>
Co-authored-by: Nalem7 <61624650+nabim777@users.noreply.github.com>
Co-authored-by: nabim777 <nabinalemagar019@gmail.com>
  • Loading branch information
3 people committed Mar 13, 2024
1 parent b75512e commit 51a5010
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 10 additions & 0 deletions css/dashboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/components/tab/EmptyContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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')
}
Expand Down
1 change: 0 additions & 1 deletion src/components/tab/WorkPackage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,6 @@ export default {
&__assignee {
display: flex;
flex-direction: row;
padding: 5px;
&__assignee {
font-size: 0.81rem;
Expand Down
2 changes: 1 addition & 1 deletion src/views/Dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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'
},
Expand Down

0 comments on commit 51a5010

Please sign in to comment.