diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-12-04 11:04:08 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-12-04 11:04:08 +0100 |
commit | d2cc03aaad62fa6cf1c64622229bcc83f24fccb6 (patch) | |
tree | 75f99b2bd38b3a9a632293575ad5601a90fadb7f /client/src/app/shared | |
parent | d178b5c1f8eabb0face854d48e708f0ac72e7d2e (diff) | |
download | PeerTube-d2cc03aaad62fa6cf1c64622229bcc83f24fccb6.tar.gz PeerTube-d2cc03aaad62fa6cf1c64622229bcc83f24fccb6.tar.zst PeerTube-d2cc03aaad62fa6cf1c64622229bcc83f24fccb6.zip |
Design account videos
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/search/search.component.scss | 4 | ||||
-rw-r--r-- | client/src/app/shared/users/user.model.ts | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/shared/search/search.component.scss b/client/src/app/shared/search/search.component.scss index 191d3d597..7ba8ef26c 100644 --- a/client/src/app/shared/search/search.component.scss +++ b/client/src/app/shared/search/search.component.scss | |||
@@ -10,7 +10,7 @@ | |||
10 | 10 | ||
11 | .icon.icon-search { | 11 | .icon.icon-search { |
12 | display: inline-block; | 12 | display: inline-block; |
13 | background: url('../../../assets/header/search.svg') no-repeat; | 13 | background: url('../../../assets/images/header/search.svg') no-repeat; |
14 | background-size: contain; | 14 | background-size: contain; |
15 | width: 25px; | 15 | width: 25px; |
16 | height: 21px; | 16 | height: 21px; |
@@ -29,7 +29,7 @@ | |||
29 | 29 | ||
30 | .icon.icon-upload { | 30 | .icon.icon-upload { |
31 | display: inline-block; | 31 | display: inline-block; |
32 | background: url('../../../assets/header/upload.svg') no-repeat; | 32 | background: url('../../../assets/images/header/upload.svg') no-repeat; |
33 | background-size: contain; | 33 | background-size: contain; |
34 | width: 22px; | 34 | width: 22px; |
35 | height: 24px; | 35 | height: 24px; |
diff --git a/client/src/app/shared/users/user.model.ts b/client/src/app/shared/users/user.model.ts index 83990d8b8..220362ef0 100644 --- a/client/src/app/shared/users/user.model.ts +++ b/client/src/app/shared/users/user.model.ts | |||
@@ -54,6 +54,6 @@ export class User implements UserServerModel { | |||
54 | getAvatarPath () { | 54 | getAvatarPath () { |
55 | if (this.account && this.account.avatar) return this.account.avatar.path | 55 | if (this.account && this.account.avatar) return this.account.avatar.path |
56 | 56 | ||
57 | return '/assets/default-avatar.png' | 57 | return '/assets/images/default-avatar.png' |
58 | } | 58 | } |
59 | } | 59 | } |