-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In invite dialog add text indicating that we can invite multiple people #447
Merged
aulamber
merged 9 commits into
develop_tchap
from
342-invite-dialog-indicate-that-we-can-invite-multiple-people
Mar 10, 2023
Merged
Changes from 8 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
9ae3054
In invite dialog add text indicating that we can invite multiple people
aulamber 24c2667
Fix typo "separe"
aulamber 5ec0eef
Add spaces between commas in label
aulamber e87fe62
Add scrolling when copy-pasting a list and adequate texte with it
aulamber 48063fa
Add horizontal scroll for multiple emails
aulamber 99ec69f
Merge branch 'develop_tchap' into 342-invite-dialog-indicate-that-we-…
aulamber 4f6b89f
Fix breaking comma in patches from develop branch
aulamber 94e97a4
Remove an unecessary overflow property
aulamber 0e230a6
Remove e in email texts
aulamber 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
22 changes: 22 additions & 0 deletions
22
...alog-add-text-indicating-that-we-can-invite-multiple-people/matrix-react-sdk+3.63.0.patch
This file contains 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,22 @@ | ||
diff --git a/node_modules/matrix-react-sdk/res/css/views/dialogs/_InviteDialog.pcss b/node_modules/matrix-react-sdk/res/css/views/dialogs/_InviteDialog.pcss | ||
index c03e78d..9d795b1 100644 | ||
--- a/node_modules/matrix-react-sdk/res/css/views/dialogs/_InviteDialog.pcss | ||
+++ b/node_modules/matrix-react-sdk/res/css/views/dialogs/_InviteDialog.pcss | ||
@@ -37,8 +37,7 @@ limitations under the License. | ||
border-radius: 4px; | ||
min-height: 25px; | ||
padding-inline-start: $spacing-8; | ||
- overflow-x: hidden; | ||
- overflow-y: auto; | ||
+ overflow: auto; | ||
display: flex; | ||
flex-wrap: wrap; | ||
|
||
@@ -194,6 +193,7 @@ limitations under the License. | ||
|
||
.mx_InviteDialog_addressBar { | ||
margin-inline-end: 0; | ||
+ overflow: auto; | ||
} | ||
|
||
.mx_InviteDialog_userSections { |
This file contains 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 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@aulamber on n'a moyen de mettre des sauts de ligne ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Je n'y arrive pas en modifiant la string de traduction seulement. Par contre je peux faire un patch dans le code d'Element pour rajouter une div... mais je trouve que c'est lourd juste pour un saut à la ligne, qu'en penses-tu ?