-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/vaimee/my3sec
- Loading branch information
Showing
10 changed files
with
54 additions
and
30 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
...rc/app/modules/organizations/components/organization-list/organization-list.component.css
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,3 +1,7 @@ | ||
.line-icon { | ||
vertical-align: middle; | ||
} | ||
|
||
.clickable { | ||
cursor: pointer !important; | ||
} |
7 changes: 5 additions & 2 deletions
7
...c/app/modules/organizations/components/organization-list/organization-list.component.html
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
8 changes: 6 additions & 2 deletions
8
frontend/src/app/modules/profiles/components/profile-list/profile-list.component.css
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,3 +1,7 @@ | ||
img { | ||
object-fit: cover; | ||
} | ||
object-fit: cover; | ||
} | ||
|
||
.clickable { | ||
cursor: pointer !important; | ||
} |
32 changes: 16 additions & 16 deletions
32
frontend/src/app/modules/profiles/components/profile-list/profile-list.component.html
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,16 +1,16 @@ | ||
<mat-list> | ||
<mat-list-item *ngFor="let profile of profiles$ | async" (click)="goTo(profile.id)"> | ||
<img matListItemAvatar src="{{ profile.profileImage }}" alt="{{ profile.firstName }} icon" /> | ||
<span matListItemTitle>{{ profile.firstName }} {{ profile.surname }}</span> | ||
<button | ||
mat-icon-button | ||
#tooltip="matTooltip" | ||
matTooltip="Go to profile" | ||
matTooltipPosition="below" | ||
matTooltipHideDelay="500" | ||
matListItemMeta | ||
color="primary"> | ||
<mat-icon>login</mat-icon> | ||
</button> | ||
</mat-list-item> | ||
</mat-list> | ||
<mat-list> | ||
<mat-list-item class="clickable" *ngFor="let profile of profiles$ | async" (click)="goTo(profile.id)"> | ||
<img matListItemAvatar src="{{ profile.profileImage }}" alt="{{ profile.firstName }} icon" /> | ||
<span matListItemTitle>{{ profile.firstName }} {{ profile.surname }}</span> | ||
<button | ||
mat-icon-button | ||
#tooltip="matTooltip" | ||
matTooltip="Go to profile" | ||
matTooltipPosition="below" | ||
matTooltipHideDelay="500" | ||
matListItemMeta | ||
color="primary"> | ||
<mat-icon>login</mat-icon> | ||
</button> | ||
</mat-list-item> | ||
</mat-list> |
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
File renamed without changes.
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