-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Replace checkboxes with Compound checkboxes, and appropriately label each checkbox. #29363
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
Merged
Merged
Changes from 32 commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
b000831
Fix labelling of avatar menu
Half-Shot a7c94cd
Make the integration manager toggle more clear.
Half-Shot 5a8fc24
Merge remote-tracking branch 'origin/develop' into hs/a11y-elements-w…
Half-Shot e8d3888
fix label
Half-Shot da80d91
lint
Half-Shot 2c2f07d
Update snapshots.
Half-Shot 0842763
Refactor many cases of checkbox to use the new compound component.
Half-Shot 69b1db3
Remove non-checkbox related changes
Half-Shot 8d5f6ad
Merge branch 'develop' into hs/a11y-elements-without-descriptions
Half-Shot e2e07fe
Reset some things
Half-Shot 3bdc9ff
Remove usages of mx_checkbox* styling.
Half-Shot dd4c0f2
Use label locators for apperance tests.
Half-Shot 20a4111
small linter tweaks
Half-Shot a48f455
lint
Half-Shot 88e7606
update screenshot
Half-Shot 1bdd6d6
Test updates
Half-Shot 4e81de4
lint
Half-Shot 5e0fc5d
Merge branch 'develop' into hs/a11y-elements-without-descriptions
Half-Shot 4538f37
Realign checkboxes for device selection.
Half-Shot af9943c
Merge remote-tracking branch 'origin/develop' into hs/a11y-elements-w…
Half-Shot 0604517
Fixup QuickSettings styling
Half-Shot 55e7b2c
remove comment
Half-Shot 6c57dda
lint
Half-Shot aaa6f5e
flex comment
Half-Shot 163458d
remove unused label
Half-Shot 18ef2f4
remove redundant classes
Half-Shot 69696ca
add test for spaces
Half-Shot 4957a2e
lint
Half-Shot f5cc519
Copyright
Half-Shot 533b9d2
fixup spaces test
Half-Shot f65831e
Merge remote-tracking branch 'origin/develop' into hs/a11y-elements-w…
Half-Shot b341e68
spaces lint
Half-Shot 0098cb1
Replace pin with compound pin.
Half-Shot 532ada1
Realign icons
Half-Shot 80c1a1c
Remove hack for colouring icons
Half-Shot 0cd4839
Adjust existing rooms component to correctly label room.
Half-Shot 760d715
Add test for adding an existing room to an existing space.
Half-Shot 7bfd720
Merge remote-tracking branch 'origin/develop' into hs/a11y-elements-w…
Half-Shot 0620008
Merge branch 'develop' into hs/a11y-elements-without-descriptions
Half-Shot ef459f9
Set deterministic sort order for rooms
Half-Shot 45c2490
lint
Half-Shot 3b330ee
Merge branch 'develop' into hs/a11y-elements-without-descriptions
Half-Shot 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
Binary file modified
BIN
+995 Bytes
(100%)
...user-settings-tab/appearance-user-settings-tab.spec.ts/appearance-tab-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+212 Bytes
(100%)
playwright/snapshots/settings/quick-settings-menu.spec.ts/quick-settings-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 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
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 |
|---|---|---|
| @@ -1,32 +1,11 @@ | ||
| /* | ||
| Copyright 2024 New Vector Ltd. | ||
| Copyright 2024,2025 New Vector Ltd. | ||
| Copyright 2022 The Matrix.org Foundation C.I.C. | ||
|
|
||
| SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial | ||
| Please see LICENSE files in the repository root for full details. | ||
| */ | ||
|
|
||
| .mx_LabelledCheckbox { | ||
| display: flex; | ||
| gap: 8px; | ||
| flex-direction: row; | ||
|
|
||
| .mx_Checkbox { | ||
| margin-top: 3px; /* visually align with label text */ | ||
| } | ||
|
|
||
| .mx_LabelledCheckbox_labels { | ||
| flex: 1; | ||
|
|
||
| .mx_LabelledCheckbox_label { | ||
| vertical-align: middle; | ||
| } | ||
|
|
||
| .mx_LabelledCheckbox_byline { | ||
| display: block; | ||
| padding-top: $spacing-4; | ||
| color: $muted-fg-color; | ||
| font-size: $font-11px; | ||
| } | ||
| } | ||
| margin-top: var(--cpd-space-2x); | ||
| } |
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.