diff options
author | Kimsible <1877318+kimsible@users.noreply.github.com> | 2020-12-13 14:54:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-13 14:54:12 +0100 |
commit | 51a83970061b4005343d2bfc4edb883318ef2ca6 (patch) | |
tree | c33753d0dc51bc534706b0839cf567d673294f29 /client/src/app/shared | |
parent | 75594f474a3e04086b37a014d23e89780ca67458 (diff) | |
download | PeerTube-51a83970061b4005343d2bfc4edb883318ef2ca6.tar.gz PeerTube-51a83970061b4005343d2bfc4edb883318ef2ca6.tar.zst PeerTube-51a83970061b4005343d2bfc4edb883318ef2ca6.zip |
User dropdown and notifications popover improvements (#3344)
* hove user dropdown on avatar and username
* rename avatar-notification to notification component
* use a link on mobile for notification component
* add profile user dropdown and mobile notifications link as reusable active link
* replace markAllAsRead inbox glyphicon to ok in notification popover
* remove keyboard shortcuts from user dropdown on mobile
* use common bell icon instead of inbox-full for notifications
* remove duplicated notification in user dropdown since the bell appears on the right
* adjust sensitive icon in user dropdown
* align vertically user buttons popover and dropdown
* adjust ellipsis on user display name and username in menu
* adjust notification bell for mobile in menu
* display background of user dropdown avatar and username for touchscreens
* add right arrow indicator on mobile
Co-authored-by: kimsible <kimsible@users.noreply.github.com>
Co-authored-by: Rigel Kent <sendmemail@rigelk.eu>
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/shared-icons/global-icon.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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 53a2aee9a..0924b8119 100644 --- a/client/src/app/shared/shared-icons/global-icon.component.ts +++ b/client/src/app/shared/shared-icons/global-icon.component.ts | |||
@@ -36,7 +36,7 @@ const icons = { | |||
36 | 'clock': require('!!raw-loader?!../../../assets/images/feather/clock.svg').default, | 36 | 'clock': require('!!raw-loader?!../../../assets/images/feather/clock.svg').default, |
37 | 'cog': require('!!raw-loader?!../../../assets/images/feather/cog.svg').default, | 37 | 'cog': require('!!raw-loader?!../../../assets/images/feather/cog.svg').default, |
38 | 'delete': require('!!raw-loader?!../../../assets/images/feather/delete.svg').default, | 38 | 'delete': require('!!raw-loader?!../../../assets/images/feather/delete.svg').default, |
39 | 'inbox-full': require('!!raw-loader?!../../../assets/images/feather/inbox-full.svg').default, | 39 | 'bell': require('!!raw-loader?!../../../assets/images/feather/bell.svg').default, |
40 | 'sign-out': require('!!raw-loader?!../../../assets/images/feather/log-out.svg').default, | 40 | 'sign-out': require('!!raw-loader?!../../../assets/images/feather/log-out.svg').default, |
41 | 'sign-in': require('!!raw-loader?!../../../assets/images/feather/log-in.svg').default, | 41 | 'sign-in': require('!!raw-loader?!../../../assets/images/feather/log-in.svg').default, |
42 | 'download': require('!!raw-loader?!../../../assets/images/feather/download.svg').default, | 42 | 'download': require('!!raw-loader?!../../../assets/images/feather/download.svg').default, |