diff --git a/src/app/layout/blocks/communities/communities-block.html b/src/app/layout/blocks/communities/communities-block.html index 4c4f5ee..0c0be9e 100644 --- a/src/app/layout/blocks/communities/communities-block.html +++ b/src/app/layout/blocks/communities/communities-block.html @@ -1,5 +1,5 @@
- +
diff --git a/src/app/layout/blocks/communities/communities-block.scss b/src/app/layout/blocks/communities/communities-block.scss index 7b27995..cc4e2cd 100644 --- a/src/app/layout/blocks/communities/communities-block.scss +++ b/src/app/layout/blocks/communities/communities-block.scss @@ -1,8 +1,25 @@ .communities-block { .profile { - margin: 10px; + // margin: 10px; + + #profile-image-container { + float: left; + text-align: center; + + .profile-image-wrap { + float: left; + margin-left: 10px; + width: 130px; + height: 130px; + } + } + img, i.profile-image { - width: 60px; + width: 80px; + height: 80px; + overflow: hidden; + border-radius: 50%; + background-clip: padding-box; } img { display: inline-block; @@ -12,5 +29,21 @@ text-align: center; font-size: 4.5em; } + .details { + + margin-top: -25px; + + > .profile-name { + font-size: 11pt; + font-weight: 600; + a { + list-style: none; + color: #212121; + &:hover { + color: $primary-color; + } + } + } + } } } diff --git a/src/app/profile/image/image.component.ts b/src/app/profile/image/image.component.ts index cd46f19..99f6c38 100644 --- a/src/app/profile/image/image.component.ts +++ b/src/app/profile/image/image.component.ts @@ -37,6 +37,9 @@ export class ProfileImageComponent { @Input() editClass: string; + @Input() + showDetails: boolean = false; + picFile: any; croppedDataUrl: any; modalInstance: any; diff --git a/src/app/profile/image/image.html b/src/app/profile/image/image.html index 41e23d6..498301d 100644 --- a/src/app/profile/image/image.html +++ b/src/app/profile/image/image.html @@ -5,6 +5,11 @@
+
+
+ {{ ctrl.profile.name }} +
+
-- libgit2 0.21.2