diff --git a/.gitignore b/.gitignore
index 4721582f01..bdbef839cf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,6 +17,7 @@ packages
.env.development.local
.env.test.local
.env.production.local
+.idea
# Claude settings
.claude/settings.local.json
diff --git a/docs/auditor/10.8/addon/linux/parameters.md b/docs/auditor/10.8/addon/linux/parameters.md
index f46f0f4ac8..c784167c37 100644
--- a/docs/auditor/10.8/addon/linux/parameters.md
+++ b/docs/auditor/10.8/addon/linux/parameters.md
@@ -17,7 +17,7 @@ Click **Proceed** and complete the following fields:
| Specify General Settings | |
| Listed UDP port | Specify UDP port for listening incoming events. (**514** by default). |
| Netwrix Auditor Endpoint | Netwrix Auditor Server IP address and port number followed by endpoint for posting Activity Records. Assumes that the add-on runs on the computer hosting Netwrix Auditor Server and uses default port _9699_. To specify a non-default port, provide a server name followed by the port number (e.g., _WKS.ent erprise.local:9999_). Do not modify the endpoint part (_/netwrix/api_ ) |
-| Certificate Thumbprint | Possible values: - `Empty`— Check Auditor certificate via Windows Certificate Store. - `AB:BB:CC`— Check Auditor Server certificate thumbprint identifier. - `NOCHECK`— Do not check Auditor certificate. Make sure to select this parameter if you plan to specify servers by their IP. |
+| Certificate Thumbprint | Possible values: - `Empty`— Check Auditor certificate via Windows Certificate Store. - `AB:BB:CC`— Check Auditor Server certificate thumbprint identifier. - `NOCHECK`— Do not check Auditor certificate. Make sure to select this parameter if you plan to specify servers by their IP. |
| Specify Active Directory credentials | |
| Username | Specify the account under which the service will authenticate to the **Netwrix_Auditor_API**. |
| Password | Provide the password for the selected account. |
diff --git a/docs/auditor/10.8/addon/privilegeduserlinux/parameters.md b/docs/auditor/10.8/addon/privilegeduserlinux/parameters.md
index 1aee5d1559..de456f5b84 100644
--- a/docs/auditor/10.8/addon/privilegeduserlinux/parameters.md
+++ b/docs/auditor/10.8/addon/privilegeduserlinux/parameters.md
@@ -17,7 +17,7 @@ Click **Proceed** and complete the following fields:
| Specify General Settings | |
| Listed UDP port | Specify UDP port for listening incoming events. (**514** by default). |
| Netwrix Auditor Endpoint | Netwrix Auditor Server IP address and port number followed by endpoint for posting Activity Records. Assumes that the add-on runs on the computer hosting Netwrix Auditor Server and uses default port _9699_. To specify a non-default port, provide a server name followed by the port number (e.g., _WKS.ent erprise.local:9999_). Do not modify the endpoint part (_/netwrix/api_ ) |
-| Certificate Thumbprint | Possible values: - `Empty`— Check Auditor certificate via Windows Certificate Store. - `AB:BB:CC`— Check Auditor Server certificate thumbprint identifier. - `NOCHECK`— Do not check Auditor certificate. Make sure to select this parameter if you plan to specify servers by their IP. |
+| Certificate Thumbprint | Possible values: - `Empty`— Check Auditor certificate via Windows Certificate Store. - `AB:BB:CC`— Check Auditor Server certificate thumbprint identifier. - `NOCHECK`— Do not check Auditor certificate. Make sure to select this parameter if you plan to specify servers by their IP. |
| Specify Active Directory credentials | |
| Username | Specify the account under which the service will authenticate to the **Netwrix_Auditor_API**. |
| Password | Provide the password for the selected account. |
diff --git a/docusaurus.config.js b/docusaurus.config.js
index 28bffce38c..2f614d286f 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -180,8 +180,8 @@ const config = {
navbar: {
logo: {
alt: 'Netwrix Logo',
- src: 'branding/logo-red.svg',
- srcDark: 'branding/logo-white.svg',
+ src: 'branding/Netwrix_Logo_Dark.svg',
+ srcDark: 'branding/Netwrix_Logo_Light.svg',
href: '/',
},
items: [
diff --git a/src/css/custom.css b/src/css/custom.css
index 4eb275d2f9..c8ad683f54 100644
--- a/src/css/custom.css
+++ b/src/css/custom.css
@@ -6,27 +6,43 @@
/* You can override the default Infima variables here. */
:root {
- --ifm-color-primary: #2a5298;
- --ifm-color-primary-dark: #254a89;
- --ifm-color-primary-darker: #234582;
- --ifm-color-primary-darkest: #1c376b;
- --ifm-color-primary-light: #2f5aa7;
- --ifm-color-primary-lighter: #325fae;
- --ifm-color-primary-lightest: #4169c4;
+ --ifm-color-primary: #5851DB;
+ --ifm-color-primary-dark: #232058;
+ --ifm-color-primary-darker: #1A1536;
+ --ifm-color-primary-darkest: #12102C;
+ --ifm-color-primary-light: #5851DB;
+ --ifm-color-primary-lighter: #7974E2;
+ --ifm-color-primary-lightest: #9B97E9;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
- --ifm-font-family-base: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
+ --ifm-font-family-base: Syne,Syne-fallback,Trebuchet MS,Verdana,sans-serif;
+ --ifm-color-emphasis-600: #767386;
+ --ifm-color-success: #34C263;
+ --ifm-color-success-dark: #27914A;
+ --ifm-button-background-color: #5851DB;
+}
+
+.table-of-contents {
+ font-size: 0.9rem;
+}
+
+.breadcrumbs {
+ --ifm-breadcrumb-size-multiplier: 0.9;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ font-family: Hubot Sans,HubotSans-fallback,Courier New,monospace;
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
- --ifm-color-primary: #4d7fd8;
- --ifm-color-primary-dark: #3770d3;
- --ifm-color-primary-darker: #2d66d0;
- --ifm-color-primary-darkest: #1e4fac;
- --ifm-color-primary-light: #638edd;
- --ifm-color-primary-lighter: #6d97e0;
- --ifm-color-primary-lightest: #8eafe8;
+ --ifm-color-primary: #5851DB;
+ --ifm-color-primary-dark: #4641AF;
+ --ifm-color-primary-darker: #353183;
+ --ifm-color-primary-darkest: #232058;
+ --ifm-color-primary-light: #7974E2;
+ --ifm-color-primary-lighter: #9B97E9;
+ --ifm-color-primary-lightest: #BCB9F1;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}
@@ -99,7 +115,7 @@ html {
.navbar-item-latest {
font-weight: 600 !important;
color: var(--ifm-color-primary-darkest) !important;
- background: linear-gradient(90deg, rgba(42, 82, 152, 0.08), rgba(42, 82, 152, 0.03));
+ background: linear-gradient(90deg, rgba(88, 81, 219, 0.08), rgba(88, 81, 219, 0.03));
border-left: 3px solid var(--ifm-color-primary);
padding-left: 12px !important;
margin: 2px 0;
@@ -197,7 +213,7 @@ html {
/* Start of Selection */
/* Apply borders only to images within docs pages */
.theme-doc-markdown img {
- border: 1px solid #e0e0e0;
+ border: 1px solid #E2E1DC;
border-radius: 4px;
}
/* End of Selection */
diff --git a/src/pages/index.module.css b/src/pages/index.module.css
index 84be4ffb0b..181268cf43 100644
--- a/src/pages/index.module.css
+++ b/src/pages/index.module.css
@@ -7,7 +7,7 @@
.heroBanner {
padding: 4rem 0;
text-align: center !important;
- background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
+ background: linear-gradient(135deg, #5851DB 0%, #219EBC 100%);
color: white;
position: relative;
overflow: hidden;
diff --git a/static/branding/Netwrix_Logo_Dark.svg b/static/branding/Netwrix_Logo_Dark.svg
new file mode 100644
index 0000000000..9c695e4359
--- /dev/null
+++ b/static/branding/Netwrix_Logo_Dark.svg
@@ -0,0 +1,10 @@
+
diff --git a/static/branding/Netwrix_Logo_Light.svg b/static/branding/Netwrix_Logo_Light.svg
new file mode 100644
index 0000000000..2397df0e81
--- /dev/null
+++ b/static/branding/Netwrix_Logo_Light.svg
@@ -0,0 +1,10 @@
+