-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
complete global styles migration in partner dashboard
- Loading branch information
Showing
47 changed files
with
728 additions
and
691 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<AkStack local-class='project-card' @alignItems='center'> | ||
<AkIcon | ||
@iconName='{{@project.platformIcon}}' | ||
class='platform-icon--{{@project.platformIcon}}' | ||
/> | ||
<span class='black-text'>{{@project.packageName}}</span> | ||
<AppPlatformIcon @platform='{{@project.platformIcon}}' /> | ||
|
||
<AkTypography> | ||
{{@project.packageName}} | ||
</AkTypography> | ||
</AkStack> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 12 additions & 11 deletions
23
app/components/partner/client-project-list/item/index.hbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
<AkStack | ||
@alignItems='center' | ||
local-class='platform platform-{{@project.platformIcon}}' | ||
data-test-platform='{{@project.platformIcon}}' | ||
> | ||
<AkIcon @iconName='{{@project.platformIcon}}' /> | ||
<AkStack @alignItems='center' data-test-platform='{{@project.platformIcon}}'> | ||
<AppPlatformIcon @platform='{{@project.platformIcon}}' /> | ||
</AkStack> | ||
|
||
<div | ||
local-class='package-name' | ||
title='Project ID: {{@project.id}}' | ||
data-test-package_name | ||
> | ||
{{@project.packageName}} | ||
</div> | ||
<div local-class='created-on' class='text-lightgray' data-test-created_on> | ||
|
||
<AkTypography @color='textSecondary' @fontWeight='light' data-test-created_on> | ||
{{day-js date=@project.createdOn format='DD MMM YYYY'}} | ||
</div> | ||
</AkTypography> | ||
|
||
{{#if (and @enableViewFiles @clientId @project.id)}} | ||
<LinkTo | ||
<AkLink | ||
@route='authenticated.partner.project' | ||
@models={{array @clientId @project.id}} | ||
class='button is-primary margin-l-3q' | ||
@underline='none' | ||
@color='primary' | ||
local-class='view-files-button' | ||
data-test-view-files | ||
> | ||
{{t 'viewUploads'}} | ||
</LinkTo> | ||
</AkLink> | ||
{{/if}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.