René's URL Explorer Experiment


Title: Transparent CSS not working in Android · Issue #10360 · NativeScript/NativeScript · GitHub

Open Graph Title: Transparent CSS not working in Android · Issue #10360 · NativeScript/NativeScript

X Title: Transparent CSS not working in Android · Issue #10360 · NativeScript/NativeScript

Description: Issue Description Transparent CSS is not working in Android but it works in iOS. I have a modal page that suppose to show transparent background. In Android when the modal loaded, it shows a white background instead of transparent. Code ...

Open Graph Description: Issue Description Transparent CSS is not working in Android but it works in iOS. I have a modal page that suppose to show transparent background. In Android when the modal loaded, it shows a white ...

X Description: Issue Description Transparent CSS is not working in Android but it works in iOS. I have a modal page that suppose to show transparent background. In Android when the modal loaded, it shows a white ...

Opengraph URL: https://github.com/NativeScript/NativeScript/issues/10360

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Transparent CSS not working in Android ","articleBody":"### Issue Description\r\n\r\nTransparent CSS is not working in Android but it works in iOS.\r\n\r\nI have a modal page that suppose to show transparent background. In Android when the modal loaded, it shows a white background instead of transparent. \r\n\r\nCode that opens the modal : \r\n\r\n```\r\n  const config: SharedTransitionConfig = {\r\n\r\n            pageStart: {\r\n              opacity: 0\r\n            },\r\n            pageEnd: {\r\n              opacity: 1,\r\n              duration: 1000,\r\n              spring: { tension: 110, friction: 9, mass: 1 },\r\n            },\r\n            pageReturn: {\r\n              opacity: 0,\r\n              duration: 500,\r\n              spring: { tension: 70, friction: 9, mass: 2 }\r\n            },\r\n          };\r\n      \r\n          const options: ModalDialogOptions = {\r\n            viewContainerRef: this.vcRef,\r\n            cancelable: true,\r\n            fullscreen: true,\r\n            transition: SharedTransition.custom(new ModalTransition(), config),\r\n            \r\n          };\r\n\r\n          this.modal.showModal(ModalComponent, options).then((result: string) =\u003e {\r\n\r\n          });\r\n```\r\n\r\nThe Modal Component HTML : \r\n\r\n```\r\n\u003cRootLayout class=\"bgco-transparent\"\u003e\r\n\r\n    \u003cGridLayout\u003e\u003c/GridLayout\u003e\r\n```\r\n\r\nbgco-transparent CSS Class :  \r\n\r\n```\r\n.bgco-transparent {\r\n    background-color: transparent;\r\n    background: transparent;\r\n    background: rgba(0, 0, 0, 0); //Tried this as well, not working\r\n}\r\n```\r\n\r\n### Reproduction\r\n\r\n_No response_\r\n\r\n### Relevant log output (if applicable)\r\n\r\n_No response_\r\n\r\n### Environment\r\n\r\n```yaml\r\nOS: macOS 13.4.1\r\nCPU: (16) x64 Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz\r\nShell: /bin/zsh\r\nnode: 14.21.3\r\nnpm: 6.14.18\r\nnativescript: 8.5.3\r\n\r\n# android\r\njava: 11.0.18\r\nndk: Not Found\r\napis: 31, 32, 33, 33\r\nbuild_tools: 33.0.2\r\nsystem_images: \r\n  - android-31 | Google APIs Intel x86_64 Atom\r\n\r\n# ios\r\nxcode: 14.3/14E222b\r\ncocoapods: 1.12.1\r\npython: Not Found\r\npython3: 3.9.6\r\nruby: 2.7.8\r\nplatforms: \r\n  - DriverKit 22.4\r\n  - iOS 16.4\r\n  - macOS 13.3\r\n  - tvOS 16.4\r\n  - watchOS 9.4\r\n```\r\n\r\n### Dependencies\r\n\r\n```json\r\n\"dependencies\": {\r\n  \"@angular/animations\": \"~15.2.0\",\r\n  \"@angular/common\": \"~15.2.0\",\r\n  \"@angular/compiler\": \"~15.2.0\",\r\n  \"@angular/core\": \"~15.2.0\",\r\n  \"@angular/forms\": \"~15.2.0\",\r\n  \"@angular/platform-browser\": \"~15.2.0\",\r\n  \"@angular/platform-browser-dynamic\": \"~15.2.0\",\r\n  \"@angular/router\": \"~15.2.0\",\r\n  \"@nativescript/angular\": \"~15.2.0\",\r\n  \"@nativescript/camera\": \"^5.0.12\",\r\n  \"@nativescript/core\": \"^8.4.7\",\r\n  \"@nativescript/theme\": \"^3.0.0\",\r\n  \"@types/underscore\": \"^1.9.4\",\r\n  \"nativescript-ui-listview\": \"^15.2.3\",\r\n  \"zone.js\": \"~0.13.0\"\r\n},\r\n\"devDependencies\": {\r\n  \"@angular-devkit/build-angular\": \"~15.2.0\",\r\n  \"@angular/compiler-cli\": \"~15.2.0\",\r\n  \"@nativescript-dom/angular-types\": \"^1.0.6\",\r\n  \"@nativescript-dom/core-types\": \"^1.0.25\",\r\n  \"@nativescript/android\": \"~8.5.0\",\r\n  \"@nativescript/ios\": \"~8.5.2\",\r\n  \"@nativescript/types\": \"~8.5.0\",\r\n  \"@nativescript/webpack\": \"5.0.16\",\r\n  \"@ngtools/webpack\": \"~15.2.0\",\r\n  \"nativescript-worker-loader\": \"^0.12.1\",\r\n  \"ts-loader\": \"^8.0.18\",\r\n  \"typescript\": \"~4.8.4\"\r\n}\r\n```\r\n\r\n\r\n[Screenshot Android ](https://imgur.com/qjn3WkU)\r\n\r\n[Screenshot IOS](https://imgur.com/CsLosSB)\r\n\r\n\r\n\r\n### Please accept these terms\r\n\r\n- [X] I have searched the [existing issues](https://github.com/NativeScript/NativeScript/issues) as well as [StackOverflow](https://stackoverflow.com/questions/tagged/nativescript) and this has not been posted before\r\n- [X] This is a bug report\r\n- [X] I agree to follow this project's [Code of Conduct](https://github.com/NativeScript/NativeScript/blob/master/tools/notes/CONTRIBUTING.md#coc)","author":{"url":"https://github.com/Georgelimyh","@type":"Person","name":"Georgelimyh"},"datePublished":"2023-08-07T02:01:27.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/10360/NativeScript/issues/10360"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:e2034d2e-5ed6-3662-8dd9-40d0ab1acc87
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE52A:174FB1:16D5527:1E808AF:696AE43A
html-safe-nonce4d66767772b8676ed076ddb175b47011a3e22c1100212e0ac87e9cb0402ac102
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFNTJBOjE3NEZCMToxNkQ1NTI3OjFFODA4QUY6Njk2QUU0M0EiLCJ2aXNpdG9yX2lkIjoiNDI0NDg2MjE3NDkzMzczODU1NCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacfb29d3a5c80ee23f2adea788f31d8949dc6077293643c388aa4c85d42f0d078f
hovercard-subject-tagissue:1838542261
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/NativeScript/NativeScript/10360/issue_layout
twitter:imagehttps://opengraph.githubassets.com/b6b253de1306b971c9b34d8fcd039108cb23392a4d2f8dd3f7c5578332f474b4/NativeScript/NativeScript/issues/10360
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/b6b253de1306b971c9b34d8fcd039108cb23392a4d2f8dd3f7c5578332f474b4/NativeScript/NativeScript/issues/10360
og:image:altIssue Description Transparent CSS is not working in Android but it works in iOS. I have a modal page that suppose to show transparent background. In Android when the modal loaded, it shows a white ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameGeorgelimyh
hostnamegithub.com
expected-hostnamegithub.com
None5f99f7c1d70f01da5b93e5ca90303359738944d8ab470e396496262c66e60b8d
turbo-cache-controlno-preview
go-importgithub.com/NativeScript/NativeScript git https://github.com/NativeScript/NativeScript.git
octolytics-dimension-user_id7392261
octolytics-dimension-user_loginNativeScript
octolytics-dimension-repository_id31492490
octolytics-dimension-repository_nwoNativeScript/NativeScript
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id31492490
octolytics-dimension-repository_network_root_nwoNativeScript/NativeScript
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release3d84d50b3c75fa36755c3cf392edbc09e626f979
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/NativeScript/NativeScript/issues/10360#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FNativeScript%2FNativeScript%2Fissues%2F10360
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FNativeScript%2FNativeScript%2Fissues%2F10360
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=NativeScript%2FNativeScript
Reloadhttps://github.com/NativeScript/NativeScript/issues/10360
Reloadhttps://github.com/NativeScript/NativeScript/issues/10360
Reloadhttps://github.com/NativeScript/NativeScript/issues/10360
NativeScript https://github.com/NativeScript
NativeScripthttps://github.com/NativeScript/NativeScript
Please reload this pagehttps://github.com/NativeScript/NativeScript/issues/10360
Notifications https://github.com/login?return_to=%2FNativeScript%2FNativeScript
Fork 1.7k https://github.com/login?return_to=%2FNativeScript%2FNativeScript
Star 25.4k https://github.com/login?return_to=%2FNativeScript%2FNativeScript
Code https://github.com/NativeScript/NativeScript
Issues 868 https://github.com/NativeScript/NativeScript/issues
Pull requests 59 https://github.com/NativeScript/NativeScript/pulls
Discussions https://github.com/NativeScript/NativeScript/discussions
Actions https://github.com/NativeScript/NativeScript/actions
Projects 0 https://github.com/NativeScript/NativeScript/projects
Wiki https://github.com/NativeScript/NativeScript/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/NativeScript/NativeScript/security
Please reload this pagehttps://github.com/NativeScript/NativeScript/issues/10360
Insights https://github.com/NativeScript/NativeScript/pulse
Code https://github.com/NativeScript/NativeScript
Issues https://github.com/NativeScript/NativeScript/issues
Pull requests https://github.com/NativeScript/NativeScript/pulls
Discussions https://github.com/NativeScript/NativeScript/discussions
Actions https://github.com/NativeScript/NativeScript/actions
Projects https://github.com/NativeScript/NativeScript/projects
Wiki https://github.com/NativeScript/NativeScript/wiki
Security https://github.com/NativeScript/NativeScript/security
Insights https://github.com/NativeScript/NativeScript/pulse
New issuehttps://github.com/login?return_to=https://github.com/NativeScript/NativeScript/issues/10360
New issuehttps://github.com/login?return_to=https://github.com/NativeScript/NativeScript/issues/10360
Transparent CSS not working in Android https://github.com/NativeScript/NativeScript/issues/10360#top
bug-pending-triageReported bug, pending triage to confirm.https://github.com/NativeScript/NativeScript/issues?q=state%3Aopen%20label%3A%22bug-pending-triage%22
https://github.com/Georgelimyh
https://github.com/Georgelimyh
Georgelimyhhttps://github.com/Georgelimyh
on Aug 7, 2023https://github.com/NativeScript/NativeScript/issues/10360#issue-1838542261
Screenshot Android https://imgur.com/qjn3WkU
Screenshot IOShttps://imgur.com/CsLosSB
existing issueshttps://github.com/NativeScript/NativeScript/issues
StackOverflowhttps://stackoverflow.com/questions/tagged/nativescript
Code of Conducthttps://github.com/NativeScript/NativeScript/blob/master/tools/notes/CONTRIBUTING.md#coc
bug-pending-triageReported bug, pending triage to confirm.https://github.com/NativeScript/NativeScript/issues?q=state%3Aopen%20label%3A%22bug-pending-triage%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.