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 808
Social Login and login delight tweaks #5426
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
fc3542a
Extend Platform to support idpId for SSO flows
t3chguy a1351ea
Increase Dialog button mixin border-radius to 8px
t3chguy 6f6e850
lowercase username placeholder in Password Login and Registration Form
t3chguy 2263280
Improve no email warning during registration
t3chguy 613710b
Iterate Auth copy
t3chguy 1d53a5c
Initial support for MSC2858
t3chguy b1ca1eb
Merge branch 'develop' of github.com:matrix-org/matrix-react-sdk into…
t3chguy f7d7182
Iterate Multi-SSO support
t3chguy 2f64160
Remove backwards compatibility in ServerConfig for m.require_identity…
t3chguy 225d541
Extend Field and InfoDialog with more configurability
t3chguy 6a315e8
Improve auth error messages
t3chguy 758b47c
Replace *ServerConfig and SignInToText with ServerPicker
t3chguy 1b1c482
Iterate tests
t3chguy c408419
delint
t3chguy 3bdedd7
fix another test
t3chguy 8602545
Remove unused dialog, todo comments and other tiny tweaks
t3chguy 5f03cbd
Iterate PR some more
t3chguy 26e1cdb
Update i18n
t3chguy ba542f2
Merge branch 'develop' into t3chguy/socials
t3chguy eb25c39
Merge branch 'develop' of github.com:matrix-org/matrix-react-sdk into…
t3chguy e0b6844
i18n
t3chguy d8e46c7
Merge remote-tracking branch 'origin/t3chguy/socials' into t3chguy/so…
t3chguy 3fda7e3
Merge branch 'develop' of github.com:matrix-org/matrix-react-sdk into…
t3chguy 8593845
i18n
t3chguy 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 was deleted.
Oops, something went wrong.
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,78 @@ | ||
| /* | ||
| Copyright 2020 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_ServerPickerDialog { | ||
| width: 468px; | ||
jryans marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| box-sizing: border-box; | ||
|
|
||
| .mx_Dialog_content { | ||
| margin-bottom: 0; | ||
|
|
||
| > p { | ||
| color: $secondary-fg-color; | ||
| font-size: $font-14px; | ||
| margin: 16px 0; | ||
|
|
||
| &:first-of-type { | ||
| margin-bottom: 40px; | ||
| } | ||
|
|
||
| &:last-of-type { | ||
| margin: 0 24px 24px; | ||
| } | ||
| } | ||
|
|
||
| > h4 { | ||
| font-size: $font-15px; | ||
| font-weight: $font-semi-bold; | ||
| color: $secondary-fg-color; | ||
| margin-left: 8px; | ||
| } | ||
|
|
||
| > a { | ||
| color: $accent-color; | ||
| margin-left: 8px; | ||
| } | ||
| } | ||
|
|
||
| .mx_ServerPickerDialog_otherHomeserverRadio { | ||
| input[type="radio"] + div { | ||
| margin-top: auto; | ||
| margin-bottom: auto; | ||
| } | ||
| } | ||
|
|
||
| .mx_ServerPickerDialog_otherHomeserver { | ||
| border-top: none; | ||
| border-left: none; | ||
| border-right: none; | ||
| border-radius: unset; | ||
|
|
||
| > input { | ||
| padding-left: 0; | ||
| } | ||
|
|
||
| > label { | ||
| margin-left: 0; | ||
| } | ||
| } | ||
|
|
||
| .mx_AccessibleButton_kind_primary { | ||
| width: calc(100% - 64px); | ||
| margin: 0 8px; | ||
| padding: 15px 18px; | ||
| } | ||
| } | ||
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,49 @@ | ||
| /* | ||
| Copyright 2020 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_SSOButtons { | ||
| display: flex; | ||
| justify-content: center; | ||
|
|
||
| .mx_SSOButton { | ||
| position: relative; | ||
| width: 100%; | ||
| padding-left: 32px; | ||
| padding-right: 32px; | ||
|
|
||
| > img { | ||
| object-fit: contain; | ||
| position: absolute; | ||
| left: 8px; | ||
| top: 4px; | ||
| } | ||
| } | ||
|
|
||
| .mx_SSOButton_mini { | ||
| box-sizing: border-box; | ||
| width: 50px; // 48px + 1px border on all sides | ||
| height: 50px; // 48px + 1px border on all sides | ||
|
|
||
| > img { | ||
| left: 12px; | ||
| top: 12px; | ||
| } | ||
|
|
||
| & + .mx_SSOButton_mini { | ||
| margin-left: 24px; | ||
| } | ||
| } | ||
| } |
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.