From 53b3503dba15fa64a647aacac31cf8a9cf0fdcf9 Mon Sep 17 00:00:00 2001 From: gnbm Date: Mon, 21 Jul 2025 22:38:05 +0100 Subject: [PATCH 01/16] Fixed broken link to @awesome-cordova-plugins/ionic-webview --- docs/core-concepts/webview.md | 2 +- versioned_docs/version-v5/native/ionic-webview.md | 2 +- versioned_docs/version-v6/core-concepts/webview.md | 2 +- versioned_docs/version-v7/core-concepts/webview.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/core-concepts/webview.md b/docs/core-concepts/webview.md index 17382c430e1..d32f338a4dc 100644 --- a/docs/core-concepts/webview.md +++ b/docs/core-concepts/webview.md @@ -42,7 +42,7 @@ import { Capacitor } from '@capacitor/core'; Capacitor.convertFileSrc(filePath); ``` -For Cordova apps, the [Ionic Web View plugin](https://github.com/ionic-team/cordova-plugin-ionic-webview) provides a utility function for converting File URIs: `window.Ionic.WebView.convertFileSrc()`. There is also a corresponding Ionic Native plugin: [`@awesome-cordova-plugins/ionic-webview`](../native/ionic-webview.md). +For Cordova apps, the [Ionic Web View plugin](https://github.com/ionic-team/cordova-plugin-ionic-webview) provides a utility function for converting File URIs: `window.Ionic.WebView.convertFileSrc()`. There is also a corresponding Ionic Native plugin: [`@awesome-cordova-plugins/ionic-webview`](https://danielsogl.gitbook.io/awesome-cordova-plugins/ionic-webview). ### Implementations diff --git a/versioned_docs/version-v5/native/ionic-webview.md b/versioned_docs/version-v5/native/ionic-webview.md index 9f519d62ebc..00b18ebf458 100644 --- a/versioned_docs/version-v5/native/ionic-webview.md +++ b/versioned_docs/version-v5/native/ionic-webview.md @@ -53,7 +53,7 @@ Requires the Cordova plugin: `cordova-plugin-ionic-webview` > 2.0. For more info - $ ionic cordova plugin add cordova-plugin-ionic-webview {'\n'}$ npm install @awesome-cordova-plugins/ionic-webview{' '} + $ ionic cordova plugin add cordova-plugin-ionic-webview {'\n'}$ npm install @awesome-cordova-plugins/ionic-webview{'https://danielsogl.gitbook.io/awesome-cordova-plugins/ionic-webview'} {'\n'} diff --git a/versioned_docs/version-v6/core-concepts/webview.md b/versioned_docs/version-v6/core-concepts/webview.md index 359ead6fae3..7d1f6aaac1f 100644 --- a/versioned_docs/version-v6/core-concepts/webview.md +++ b/versioned_docs/version-v6/core-concepts/webview.md @@ -42,7 +42,7 @@ import { Capacitor } from '@capacitor/core'; Capacitor.convertFileSrc(filePath); ``` -For Cordova apps, the [Ionic Web View plugin](https://github.com/ionic-team/cordova-plugin-ionic-webview) provides a utility function for converting File URIs: `window.Ionic.WebView.convertFileSrc()`. There is also a corresponding Ionic Native plugin: [`@awesome-cordova-plugins/ionic-webview`](../native/ionic-webview.md). +For Cordova apps, the [Ionic Web View plugin](https://github.com/ionic-team/cordova-plugin-ionic-webview) provides a utility function for converting File URIs: `window.Ionic.WebView.convertFileSrc()`. There is also a corresponding Ionic Native plugin: [`@awesome-cordova-plugins/ionic-webview`](https://danielsogl.gitbook.io/awesome-cordova-plugins/ionic-webview). ### Implementations diff --git a/versioned_docs/version-v7/core-concepts/webview.md b/versioned_docs/version-v7/core-concepts/webview.md index 17382c430e1..d32f338a4dc 100644 --- a/versioned_docs/version-v7/core-concepts/webview.md +++ b/versioned_docs/version-v7/core-concepts/webview.md @@ -42,7 +42,7 @@ import { Capacitor } from '@capacitor/core'; Capacitor.convertFileSrc(filePath); ``` -For Cordova apps, the [Ionic Web View plugin](https://github.com/ionic-team/cordova-plugin-ionic-webview) provides a utility function for converting File URIs: `window.Ionic.WebView.convertFileSrc()`. There is also a corresponding Ionic Native plugin: [`@awesome-cordova-plugins/ionic-webview`](../native/ionic-webview.md). +For Cordova apps, the [Ionic Web View plugin](https://github.com/ionic-team/cordova-plugin-ionic-webview) provides a utility function for converting File URIs: `window.Ionic.WebView.convertFileSrc()`. There is also a corresponding Ionic Native plugin: [`@awesome-cordova-plugins/ionic-webview`](https://danielsogl.gitbook.io/awesome-cordova-plugins/ionic-webview). ### Implementations From c9f4b985078ab4bbe0183348ce0b6300909f473b Mon Sep 17 00:00:00 2001 From: gnbm Date: Mon, 21 Jul 2025 22:38:36 +0100 Subject: [PATCH 02/16] Added support to run release notes using Windows --- scripts/release-notes.mjs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/release-notes.mjs b/scripts/release-notes.mjs index 6e3effd8dbe..a4e82310881 100644 --- a/scripts/release-notes.mjs +++ b/scripts/release-notes.mjs @@ -1,12 +1,13 @@ import pkg from 'fs-extra'; import fetch from 'node-fetch'; -import { resolve } from 'path'; +import { resolve, dirname } from 'path'; import { compare } from 'semver'; -import { URL } from 'url'; +import { URL, fileURLToPath } from 'url'; import { renderMarkdown } from './utils.mjs'; -const __dirname = new URL('.', import.meta.url).pathname; +const __filename = fileURLToPath(import.meta.url); +const __dirname = dirname(__filename); const OUTPUT_PATH = resolve(__dirname, '../src/components/page/reference/ReleaseNotes/release-notes.json'); // export default { From 4d42fcf7cd58a341e1716b8bd930f166340d550c Mon Sep 17 00:00:00 2001 From: gnbm Date: Tue, 22 Jul 2025 00:30:42 +0100 Subject: [PATCH 03/16] Update cspell-wordlist.txt --- cspell-wordlist.txt | 165 ++++++++++++++++++++++---------------------- 1 file changed, 83 insertions(+), 82 deletions(-) diff --git a/cspell-wordlist.txt b/cspell-wordlist.txt index 0889274c70b..13a8a710581 100644 --- a/cspell-wordlist.txt +++ b/cspell-wordlist.txt @@ -1,82 +1,83 @@ -Appflow -Codepen -Firestore -Genymotion -Hygen -Ionicon -Ionicons -Logcat -Maskito -Pluralsight -Swiper -Udemy -Vetur -Wistia -WCAG - -actionsheet -fabs -datetime -datetimes -datetimepicker -infinitescroll -searchbar -searchbars -sidemenu -textarea -textareas - -appstore -authed -autogrow -automations -autoplay -Callout -comparewith -composables -engageable -flexbox -frontmatter -fullscreen -geolocation -interactives -isopen -jank -janky -jarsigner -jsdelivr -keyframes -keytool -lifecycles -localstorage -mobileweb -phablet -playstore -preconfigured -preflighted -proxying -quickstart -retargeted -runtimes -scroller -subcomponent -subcomponents -swipeable -templating -transpiling -treeshaking -triaging -typeahead -unminified -unsanitized -viewports -webapps -webviews -xlarge -xsmall - -allowtransparency -mozallowfullscreen -msallowfullscreen -oallowfullscreen -webkitallowfullscreen +Appflow +Codepen +Firestore +Genymotion +Hygen +Ionicon +Ionicons +Logcat +Maskito +Pluralsight +Swiper +Udemy +Vetur +Wistia +WCAG + +actionsheet +fabs +datetime +datetimes +datetimepicker +infinitescroll +searchbar +searchbars +sidemenu +textarea +textareas + +appstore +authed +autogrow +automations +autoplay +Callout +comparewith +composables +engageable +flexbox +frontmatter +fullscreen +geolocation +interactives +isopen +jank +janky +jarsigner +jsdelivr +keyframes +keytool +lifecycles +localstorage +mobileweb +phablet +playstore +preconfigured +preflighted +proxying +quickstart +retargeted +runtimes +scroller +subcomponent +subcomponents +swipeable +templating +transpiling +treeshaking +triaging +typeahead +unminified +unsanitized +viewports +webapps +webviews +xlarge +xsmall + +allowtransparency +mozallowfullscreen +msallowfullscreen +oallowfullscreen +webkitallowfullscreen +webnative From dd45aaca4a16ecc8544ce2cc195fe51b631ab5f5 Mon Sep 17 00:00:00 2001 From: gnbm Date: Tue, 22 Jul 2025 00:30:55 +0100 Subject: [PATCH 04/16] Update vscode-extension.md --- docs/intro/vscode-extension.md | 84 +++++++++++++++++++++------------- 1 file changed, 51 insertions(+), 33 deletions(-) diff --git a/docs/intro/vscode-extension.md b/docs/intro/vscode-extension.md index 4c4a58e9791..96adde8dde1 100644 --- a/docs/intro/vscode-extension.md +++ b/docs/intro/vscode-extension.md @@ -1,39 +1,57 @@ --- -title: Ionic VS Code Extension +title: VS Code Extension --- - Using the Ionic Visual Studio Code Extension - + VS Code Extension + -The Ionic Visual Studio Code extension helps you perform various functions that are common to developing an Ionic app, all without leaving your VS Code window. You can install the [extension on the Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=ionic.ionic). Once you have the extension installed, you'll see the Ionic logo in the activity bar. - -## Create a New Project - -From an empty directory, you can create a new Angular, React, or Vue project by clicking one of the template options and providing an app name. - -Video of creating a project - -With the new project created, the extension will provide access to all of the common tasks in your `package.json`. - -## Adding Capacitor - -You can also add [Capacitor](https://capacitorjs.com/) to your application by choosing "Integrate Capacitor". - -Video of adding Capacitor - -With Capacitor integrated, you can now run your app on web, Android, and iOS with the "Run On Web", "Run On Android", and "Run On iOS" options. - -## Doing More - -There is so much the Ionic VS Code extension can help with, including migrations, debugging, monorepo support, and more. For the full list of all of the extension's capabilities, checkout the [extension overview on the VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=ionic.ionic). +The [WebNative Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=webnative.webnative) is a community-maintained plugin that helps you perform common Capacitor development tasks without needing to remember CLI commands. + +If you have VS Code on this computer click Install below. You can also find the extension by searching for "WebNative". + + + + + + + + +## Additional Documentation + +Full documentation of the WebNative extension can be found at [webnative.dev](https://webnative.dev/introduction/getting-started/) covering topics like: + +- Building, debugging and running your Capacitor application. +- Bundle analysis, dependency upgrades. +- Migration from Cordova. +- Changing native settings. +- Splash Screens & Icons. +- Developing without a Mac using the WebNative app. From 7e29f792e2db9c389a97173ab52a06546c5485c7 Mon Sep 17 00:00:00 2001 From: gnbm Date: Tue, 22 Jul 2025 14:54:19 +0100 Subject: [PATCH 05/16] Fix buttons height --- docs/intro/vscode-extension.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/docs/intro/vscode-extension.md b/docs/intro/vscode-extension.md index 96adde8dde1..22439af3a30 100644 --- a/docs/intro/vscode-extension.md +++ b/docs/intro/vscode-extension.md @@ -24,9 +24,7 @@ If you have VS Code on this computer click Install below. You can also find the borderRadius: 100, backgroundColor: 'var(--ifm-font-color-base)', }} - > - Install - + >Install + >Docs ## Additional Documentation From 5150b3bca3bf16e2bd6e793986a952ca1bd1c185 Mon Sep 17 00:00:00 2001 From: gnbm Date: Tue, 22 Jul 2025 15:01:11 +0100 Subject: [PATCH 06/16] Update vscode-extension.md --- docs/intro/vscode-extension.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/vscode-extension.md b/docs/intro/vscode-extension.md index 22439af3a30..96c971b5e68 100644 --- a/docs/intro/vscode-extension.md +++ b/docs/intro/vscode-extension.md @@ -11,7 +11,7 @@ The [WebNative Visual Studio Code extension](https://marketplace.visualstudio.co If you have VS Code on this computer click Install below. You can also find the extension by searching for "WebNative". - + + - + ## Additional Documentation diff --git a/src/styles/custom.scss b/src/styles/custom.scss index 0dba75fe64e..a5f863d9c66 100644 --- a/src/styles/custom.scss +++ b/src/styles/custom.scss @@ -35,7 +35,7 @@ 'Segoe UI emoji'; --ifm-font-family-monospace: 'SFMono-Regular', 'Roboto Mono', Consolas, 'Liberation Mono', Menlo, Courier, monospace; - --ifm-menu-link-sublist-icon: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik04Ljk5OTg4IDVMNC45OTk4OCAxTDAuOTk5ODc4IDUiIHN0cm9rZT0iIzAzMDYwQiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K'); + --ifm-menu-link-sublist-icon: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik08Ljk5OTg4IDVMNC45OTk4OCAxTDAuOTk5ODc4IDUiIHN0cm9rZT0iIzAzMDYwQiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K'); //#region ----------- Z Indices ------------ --z-sidebar: 2000; @@ -225,3 +225,26 @@ iframe { } } } + +.install-button { + color: var(--admonition-info-c-bg); + cursor: pointer; + font-weight: bold; + padding: 16px; + padding-left: 32px; + padding-right: 32px; + border: 0; + border-radius: 100px; + background-color: var(--ifm-font-color-base); +} + +.docs-button { + color: var(--ifm-font-color-base); + cursor: pointer; + font-weight: bold; + padding: 16px; + padding-left: 32px; + padding-right: 32px; + border-radius: 100px; + background-color: var(--admonition-info-c-bg); +} From 2d3ece46ee5167110feaa10fc0bf3c5f0e2d597c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20M=2E?= Date: Tue, 22 Jul 2025 23:25:09 +0100 Subject: [PATCH 09/16] Update versioned_docs/version-v5/native/ionic-webview.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- versioned_docs/version-v5/native/ionic-webview.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/versioned_docs/version-v5/native/ionic-webview.md b/versioned_docs/version-v5/native/ionic-webview.md index 00b18ebf458..0942368d3f4 100644 --- a/versioned_docs/version-v5/native/ionic-webview.md +++ b/versioned_docs/version-v5/native/ionic-webview.md @@ -53,8 +53,9 @@ Requires the Cordova plugin: `cordova-plugin-ionic-webview` > 2.0. For more info - $ ionic cordova plugin add cordova-plugin-ionic-webview {'\n'}$ npm install @awesome-cordova-plugins/ionic-webview{'https://danielsogl.gitbook.io/awesome-cordova-plugins/ionic-webview'} + $ ionic cordova plugin add cordova-plugin-ionic-webview {'\n'}$ npm install @awesome-cordova-plugins/ionic-webview {'\n'} + # For more information, visit: [Awesome Cordova Plugins - Ionic WebView](https://danielsogl.gitbook.io/awesome-cordova-plugins/ionic-webview) From d88a84c70fba9baa7e904b0c930bbccee7615763 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20M=2E?= Date: Tue, 22 Jul 2025 23:26:11 +0100 Subject: [PATCH 10/16] Update src/styles/custom.scss Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/styles/custom.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/custom.scss b/src/styles/custom.scss index a5f863d9c66..36dc74de4ca 100644 --- a/src/styles/custom.scss +++ b/src/styles/custom.scss @@ -233,7 +233,7 @@ iframe { padding: 16px; padding-left: 32px; padding-right: 32px; - border: 0; + border: 0; border-radius: 100px; background-color: var(--ifm-font-color-base); } From 434cb9993701b481fc6dfdda180144fcf6acfe78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20M=2E?= Date: Tue, 22 Jul 2025 23:31:53 +0100 Subject: [PATCH 11/16] Update docs/intro/vscode-extension.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- docs/intro/vscode-extension.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/vscode-extension.md b/docs/intro/vscode-extension.md index c6c323d29d8..4a84fda6634 100644 --- a/docs/intro/vscode-extension.md +++ b/docs/intro/vscode-extension.md @@ -11,7 +11,7 @@ The [WebNative Visual Studio Code extension](https://marketplace.visualstudio.co If you have VS Code on this computer click Install below. You can also find the extension by searching for "WebNative". - + From 27cfda5bd6e94f63c8e1c0254a7563a1dda7518b Mon Sep 17 00:00:00 2001 From: gnbm Date: Tue, 22 Jul 2025 23:45:20 +0100 Subject: [PATCH 12/16] Update vscode-extension.md --- docs/intro/vscode-extension.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/vscode-extension.md b/docs/intro/vscode-extension.md index 4a84fda6634..52688f0bb23 100644 --- a/docs/intro/vscode-extension.md +++ b/docs/intro/vscode-extension.md @@ -7,7 +7,7 @@ title: VS Code Extension -The [WebNative Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=webnative.webnative) is a community-maintained plugin that helps you perform common Capacitor development tasks without needing to remember CLI commands. +The [WebNative Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=webnative.webnative) is a community-maintained plugin that helps you perform common Ionic Framework development tasks without needing to remember CLI commands. If you have VS Code on this computer click Install below. You can also find the extension by searching for "WebNative". From 9eaadcf8ec4b4b0c020b94c9cf058af8807b76f9 Mon Sep 17 00:00:00 2001 From: gnbm Date: Wed, 23 Jul 2025 13:44:28 +0100 Subject: [PATCH 13/16] Update custom.scss --- src/styles/custom.scss | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/styles/custom.scss b/src/styles/custom.scss index 36dc74de4ca..39d7a2fd171 100644 --- a/src/styles/custom.scss +++ b/src/styles/custom.scss @@ -227,24 +227,25 @@ iframe { } .install-button { + background-color: var(--ifm-font-color-base); + border:2px solid var(--ifm-font-color-base); + border-radius: 100px; color: var(--admonition-info-c-bg); cursor: pointer; font-weight: bold; padding: 16px; padding-left: 32px; padding-right: 32px; - border: 0; - border-radius: 100px; - background-color: var(--ifm-font-color-base); } .docs-button { + background-color: transparent; + border: 2px solid var(--ifm-font-color-base); + border-radius: 100px; color: var(--ifm-font-color-base); cursor: pointer; font-weight: bold; padding: 16px; padding-left: 32px; padding-right: 32px; - border-radius: 100px; - background-color: var(--admonition-info-c-bg); } From bcd6ce3d3f93407fbf1c9aeaa7bd5c7854a61386 Mon Sep 17 00:00:00 2001 From: gnbm Date: Wed, 23 Jul 2025 13:46:32 +0100 Subject: [PATCH 14/16] Update vscode-extension.md --- docs/intro/vscode-extension.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/vscode-extension.md b/docs/intro/vscode-extension.md index 52688f0bb23..693b344e723 100644 --- a/docs/intro/vscode-extension.md +++ b/docs/intro/vscode-extension.md @@ -22,7 +22,7 @@ If you have VS Code on this computer click Install below. You can also find the Full documentation of the WebNative extension can be found at [webnative.dev](https://webnative.dev/introduction/getting-started/) covering topics like: -- Building, debugging and running your Capacitor application. +- Building, debugging and running your Ionic Framework application. - Bundle analysis, dependency upgrades. - Migration from Cordova. - Changing native settings. From 57bd7221b2f53cb1226a6cb09387917fa25a49d8 Mon Sep 17 00:00:00 2001 From: gnbm Date: Wed, 23 Jul 2025 20:29:25 +0100 Subject: [PATCH 15/16] Fix styles broken and semantics --- docs/intro/vscode-extension.md | 2 +- src/styles/custom.scss | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/intro/vscode-extension.md b/docs/intro/vscode-extension.md index 693b344e723..2a4d3bddeac 100644 --- a/docs/intro/vscode-extension.md +++ b/docs/intro/vscode-extension.md @@ -7,7 +7,7 @@ title: VS Code Extension -The [WebNative Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=webnative.webnative) is a community-maintained plugin that helps you perform common Ionic Framework development tasks without needing to remember CLI commands. +The [WebNative Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=WebNative.webnative) is a community-maintained plugin that helps you perform common Ionic Framework development tasks without needing to remember CLI commands. If you have VS Code on this computer click Install below. You can also find the extension by searching for "WebNative". diff --git a/src/styles/custom.scss b/src/styles/custom.scss index 39d7a2fd171..e4064a93153 100644 --- a/src/styles/custom.scss +++ b/src/styles/custom.scss @@ -35,7 +35,7 @@ 'Segoe UI emoji'; --ifm-font-family-monospace: 'SFMono-Regular', 'Roboto Mono', Consolas, 'Liberation Mono', Menlo, Courier, monospace; - --ifm-menu-link-sublist-icon: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik08Ljk5OTg4IDVMNC45OTk4OCAxTDAuOTk5ODc4IDUiIHN0cm9rZT0iIzAzMDYwQiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K'); + --ifm-menu-link-sublist-icon: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik04Ljk5OTg4IDVMNC45OTk4OCAxTDAuOTk5ODc4IDUiIHN0cm9rZT0iIzAzMDYwQiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K'); //#region ----------- Z Indices ------------ --z-sidebar: 2000; @@ -61,6 +61,7 @@ html[data-theme='light'] { --ifm-code-background: var(--c-indigo-10); --ifm-font-color-base: var(--c-carbon-90); + --ifm-info-color-bg: var(--c-carbon-90); } html[data-theme='dark'] { @@ -82,6 +83,7 @@ html[data-theme='dark'] { --ifm-font-color-base: var(--c-carbon-10); --ifm-background-color: var(--token-primary-bg-c); --ifm-dropdown-background-color: var(--token-secondary-bg-c); + --ifm-info-color-bg: var(--c-carbon-10); --ifm-menu-link-sublist-icon-filter: invert(100%); } @@ -227,7 +229,7 @@ iframe { } .install-button { - background-color: var(--ifm-font-color-base); + background-color: var(--ifm-info-color-bg); border:2px solid var(--ifm-font-color-base); border-radius: 100px; color: var(--admonition-info-c-bg); From e6c06a9296d704b7fc5711996e65727e65f33f37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20M=2E?= Date: Wed, 23 Jul 2025 20:36:14 +0100 Subject: [PATCH 16/16] Update src/styles/custom.scss Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/styles/custom.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/custom.scss b/src/styles/custom.scss index e4064a93153..b518dd5de32 100644 --- a/src/styles/custom.scss +++ b/src/styles/custom.scss @@ -230,7 +230,7 @@ iframe { .install-button { background-color: var(--ifm-info-color-bg); - border:2px solid var(--ifm-font-color-base); + border: 2px solid var(--ifm-font-color-base); border-radius: 100px; color: var(--admonition-info-c-bg); cursor: pointer;