-
Notifications
You must be signed in to change notification settings - Fork 912
Mobile/prepare webviews 2 #2309
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 all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
e8c2474
Move custom insets declaration to global css
adjogima 5891345
Use custom insets instead of env values
adjogima 8508f13
Hide the content of the header instead the header itself
adjogima 241ce9f
Tweak the top corners of the container on the card perma
adjogima 268c643
Merge branch 'main' into mobile/prepare-webviews-2
adjogima 8bf2397
Don't make all buttons bigger on mobile
adjogima fb0ee93
Don't max-height lists in settings on mobile
adjogima 4a3e560
Fix sticky activity headers for iOS
adjogima d9759ef
Merge branch 'main' into mobile/prepare-webviews-2
adjogima 161925a
Merge branch 'main' into mobile/prepare-webviews-2
adjogima 3a685ca
Hide filters by default on mobile
adjogima 8c5ce34
Remove keyboard shortcut from input's placeholder on mobile
adjogima 7e84e44
Support system font sizes on iOS
adjogima 4519d75
Bump filters font-size on Android
adjogima ff9e617
Merge branch 'main' into mobile/prepare-webviews-2
adjogima 97a1c29
Use bottom inset
adjogima 65b2db0
Add vertically compact layout for touch keyboard devices
adjogima 764eb89
Tweak orientation helper to prevent popups from going off screen
adjogima 39575a0
Fix lightbox layout and focus
adjogima e5bef41
Refactor orientation helper to express intent more clearly
adjogima 70fc2a8
Clean iOS text size CSS
adjogima fefb288
Merge branch 'main' into mobile/prepare-webviews-2
adjogima 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
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 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,13 @@ | ||
| @layer components { | ||
| .expandable-on-native { | ||
| body:not([data-platform~=native]) & { | ||
| &::details-content { | ||
| display: contents; | ||
| } | ||
|
|
||
| summary { | ||
| display: none; | ||
| } | ||
| } | ||
| } | ||
| } |
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,7 +1,27 @@ | ||
| @layer platform { | ||
| :root:has([data-platform~=ios]) { | ||
| &[data-text-size=xsmall] { font-size: 14px; } | ||
| &[data-text-size=small] { font-size: 15px; } | ||
| &[data-text-size=medium] { font-size: 16px; } | ||
| &[data-text-size=large] { font-size: 17px; } | ||
| &[data-text-size=xlarge] { font-size: 19px; } | ||
| &[data-text-size=xxlarge] { font-size: 21px; } | ||
| &[data-text-size=xxxlarge] { font-size: 23px; } | ||
| } | ||
|
|
||
| [data-platform~=ios] { | ||
| .hide-on-ios { | ||
| display: none; | ||
| } | ||
|
|
||
| /* Events | ||
| /* ------------------------------------------------------------------------ */ | ||
|
|
||
| .events__column-header { | ||
| -webkit-backdrop-filter: blur(16px); | ||
| backdrop-filter: blur(16px); | ||
| background-color: oklch(from var(--color-canvas) l c h / 0.5); | ||
| border-radius: 10em; | ||
| } | ||
| } | ||
| } |
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
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.