This repository was archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 822
Implement new Read Receipt design #8389
Merged
justjanne
merged 15 commits into
develop
from
justjanne/feat/20574-read-receipts-redesign
Apr 22, 2022
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
1786b53
feat: introduce new alignment types for tooltip
justjanne 1c73d20
feat: introduce new hook for tooltips
justjanne 9d80fcf
feat: allow using onFocus callback for RovingAccessibleButton
justjanne bb3b999
feat: allow using custom class for ContextMenu
justjanne ff70092
feat: allow setting tab index for avatar
justjanne ef2c0e3
refactor: move read receipts out of event tile
justjanne af91b63
feat: implement new read receipt design
justjanne 445af21
fix: correct wrapping of user tooltip
justjanne 4f19429
fix: correct margin of last person in read receipt list
justjanne 17ef940
added copyright headers
justjanne 5ddebeb
feat: added support for dark theme
justjanne 880e3f6
fix: correct issue where other themes would not work correctly with r…
justjanne b5d9aa1
feat: update SentReceipt to match new read receipts as well
justjanne 248a892
feat: fix width of empty read receipts group
justjanne 2bc9d99
feat: address feedback from designer
justjanne File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
@@ -0,0 +1,146 @@ | ||
/* | ||
Copyright 2022 The Matrix.org Foundation C.I.C. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
.mx_ReadReceiptGroup { | ||
position: relative; | ||
display: inline-block; | ||
// This aligns the avatar with the last line of the | ||
// message. We want to move it one line up | ||
// See .mx_GroupLayout .mx_EventTile .mx_EventTile_line in _GroupLayout.scss | ||
top: calc(-$font-22px - 3px); | ||
user-select: none; | ||
z-index: 1; | ||
|
||
.mx_ReadReceiptGroup_button { | ||
display: inline-flex; | ||
flex-direction: row; | ||
height: 16px; | ||
padding: 4px; | ||
border-radius: 6px; | ||
|
||
&.mx_AccessibleButton { | ||
&:hover { | ||
background: $event-selected-color; | ||
} | ||
} | ||
} | ||
|
||
.mx_ReadReceiptGroup_remainder { | ||
color: $secondary-content; | ||
font-size: $font-11px; | ||
line-height: $font-16px; | ||
margin-right: 4px; | ||
} | ||
|
||
.mx_ReadReceiptGroup_container { | ||
position: relative; | ||
display: block; | ||
height: 100%; | ||
|
||
.mx_BaseAvatar { | ||
position: absolute; | ||
display: inline-block; | ||
height: 14px; | ||
width: 14px; | ||
border: 1px solid $background; | ||
border-radius: 100%; | ||
|
||
will-change: left, top; | ||
transition: | ||
left var(--transition-short) ease-out, | ||
top var(--transition-standard) ease-out; | ||
} | ||
} | ||
} | ||
|
||
.mx_ReadReceiptGroup_popup { | ||
max-height: 300px; | ||
width: 220px; | ||
border-radius: 8px; | ||
display: flex; | ||
flex-direction: column; | ||
text-align: left; | ||
font-size: 12px; | ||
line-height: 15px; | ||
|
||
right: 0; | ||
|
||
&.mx_ContextualMenu_top { | ||
top: 8px; | ||
} | ||
|
||
&.mx_ContextualMenu_bottom { | ||
bottom: 8px; | ||
} | ||
|
||
.mx_ReadReceiptGroup_title { | ||
font-size: 12px; | ||
line-height: 15px; | ||
margin: 16px 16px 8px; | ||
font-weight: 600; | ||
// shouldn’t be actually focusable | ||
outline: none; | ||
} | ||
|
||
.mx_AutoHideScrollbar { | ||
.mx_ReadReceiptGroup_person { | ||
display: flex; | ||
flex-direction: row; | ||
padding: 4px; | ||
margin: 0 12px; | ||
border-radius: 8px; | ||
|
||
&:hover { | ||
background: $menu-selected-color; | ||
} | ||
|
||
&:last-child { | ||
margin-bottom: 8px; | ||
} | ||
|
||
.mx_BaseAvatar { | ||
margin: 6px 8px; | ||
align-self: center; | ||
justify-self: center; | ||
} | ||
|
||
.mx_ReadReceiptGroup_name { | ||
display: flex; | ||
flex-direction: column; | ||
flex-grow: 1; | ||
flex-shrink: 1; | ||
overflow: hidden; | ||
|
||
p { | ||
margin: 2px 0; | ||
text-overflow: ellipsis; | ||
overflow: hidden; | ||
white-space: nowrap; | ||
} | ||
|
||
.mx_ReadReceiptGroup_secondary { | ||
color: $secondary-content; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
.mx_ReadReceiptGroup_person--tooltip { | ||
overflow-y: hidden; | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
} |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.