diff options
5 files changed, 7 insertions, 10 deletions
diff --git a/client/src/app/+my-account/my-account-videos/my-account-videos.component.html b/client/src/app/+my-account/my-account-videos/my-account-videos.component.html index 32264a70a..b6047645d 100644 --- a/client/src/app/+my-account/my-account-videos/my-account-videos.component.html +++ b/client/src/app/+my-account/my-account-videos/my-account-videos.component.html | |||
@@ -31,7 +31,7 @@ | |||
31 | 31 | ||
32 | <my-button i18n-label label="Change ownership" | 32 | <my-button i18n-label label="Change ownership" |
33 | className="action-button-change-ownership grey-button" | 33 | className="action-button-change-ownership grey-button" |
34 | icon="im-with-her" | 34 | icon="forward" |
35 | (click)="changeOwnership($event, video)" | 35 | (click)="changeOwnership($event, video)" |
36 | ></my-button> | 36 | ></my-button> |
37 | </div> | 37 | </div> |
diff --git a/client/src/app/+my-account/my-account.component.ts b/client/src/app/+my-account/my-account.component.ts index ea4da676a..4040ab4f8 100644 --- a/client/src/app/+my-account/my-account.component.ts +++ b/client/src/app/+my-account/my-account.component.ts | |||
@@ -79,7 +79,7 @@ export class MyAccountComponent implements OnInit { | |||
79 | { | 79 | { |
80 | label: this.i18n('Ownership changes'), | 80 | label: this.i18n('Ownership changes'), |
81 | routerLink: '/my-account/ownership', | 81 | routerLink: '/my-account/ownership', |
82 | iconName: 'im-with-her' | 82 | iconName: 'forward' |
83 | } | 83 | } |
84 | ] | 84 | ] |
85 | } | 85 | } |
diff --git a/client/src/app/shared/shared-icons/global-icon.component.ts b/client/src/app/shared/shared-icons/global-icon.component.ts index 169882685..3de926293 100644 --- a/client/src/app/shared/shared-icons/global-icon.component.ts +++ b/client/src/app/shared/shared-icons/global-icon.component.ts | |||
@@ -21,7 +21,7 @@ const icons = { | |||
21 | 'download': require('!!raw-loader?!../../../assets/images/global/download.svg').default, | 21 | 'download': require('!!raw-loader?!../../../assets/images/global/download.svg').default, |
22 | 'go': require('!!raw-loader?!../../../assets/images/menu/go.svg').default, | 22 | 'go': require('!!raw-loader?!../../../assets/images/menu/go.svg').default, |
23 | 'edit': require('!!raw-loader?!../../../assets/images/global/edit.svg').default, | 23 | 'edit': require('!!raw-loader?!../../../assets/images/global/edit.svg').default, |
24 | 'im-with-her': require('!!raw-loader?!../../../assets/images/global/im-with-her.svg').default, | 24 | 'forward': require('!!raw-loader?!../../../assets/images/global/forward.svg').default, |
25 | 'delete': require('!!raw-loader?!../../../assets/images/global/delete.svg').default, | 25 | 'delete': require('!!raw-loader?!../../../assets/images/global/delete.svg').default, |
26 | 'server': require('!!raw-loader?!../../../assets/images/global/server.svg').default, | 26 | 'server': require('!!raw-loader?!../../../assets/images/global/server.svg').default, |
27 | 'cross': require('!!raw-loader?!../../../assets/images/global/cross.svg').default, | 27 | 'cross': require('!!raw-loader?!../../../assets/images/global/cross.svg').default, |
diff --git a/client/src/assets/images/global/forward.svg b/client/src/assets/images/global/forward.svg new file mode 100644 index 000000000..2b3b9d9a1 --- /dev/null +++ b/client/src/assets/images/global/forward.svg | |||
@@ -0,0 +1,4 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
2 | <defs/> | ||
3 | <path fill="#000000" fill-rule="nonzero" d="M15 7v4H8l-4 1 4 1h7v4l5-5-5-5zm-7 8a2 2 0 01-.5 0l-4-1c-2-.5-2-3.4 0-4l4-1H13V7a2 2 0 013.4-1.4l5 5c.8.8.8 2 0 2.8l-5 5A2 2 0 0113 17v-2H8z"/> | ||
4 | </svg> | ||
diff --git a/client/src/assets/images/global/im-with-her.svg b/client/src/assets/images/global/im-with-her.svg deleted file mode 100644 index 9ab8b62bf..000000000 --- a/client/src/assets/images/global/im-with-her.svg +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
2 | <defs/> | ||
3 | <g fill="#000" fill-rule="evenodd"> | ||
4 | <path d="M8 9V4c0-.6-.4-1-1-1H3a1 1 0 00-1 1v16c0 .6.4 1 1 1h4c.5 0 1-.4 1-1v-5h6v5c0 .6.4 1 1 1h4c.5 0 1-.4 1-1v-5l3-3-3-3V4c0-.5-.4-1-1-1h-4a1 1 0 00-1 1v5H8z" opacity=".5"/> | ||
5 | <path fill-opacity=".5" d="M2 9h12V4c0-.6.3-.7.7-.3L23 12l-8.3 8.3c-.4.4-.7.2-.7-.3v-5H2V9z"/> | ||
6 | </g> | ||
7 | </svg> | ||