Skip to content

Commit c63b2fc

Browse files
authored
Merge pull request #271 from netwrix/feature/as_docs_reskin_1211580225365795
reskin & docs fixes
2 parents 4ff4ab1 + 3991ff5 commit c63b2fc

File tree

8 files changed

+59
-22
lines changed

8 files changed

+59
-22
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ packages
1717
.env.development.local
1818
.env.test.local
1919
.env.production.local
20+
.idea
2021

2122
# Claude settings
2223
.claude/settings.local.json

docs/auditor/10.8/addon/linux/parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Click **Proceed** and complete the following fields:
1717
| Specify General Settings | |
1818
| Listed UDP port | Specify UDP port for listening incoming events. (**514** by default). |
1919
| 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_ ) |
20-
| Certificate Thumbprint | Possible values: <br>- `Empty`— Check Auditor certificate via Windows Certificate Store. <br>- `AB:BB:CC`— Check Auditor Server certificate thumbprint identifier. <br>- `NOCHECK`— Do not check Auditor certificate. <br>Make sure to select this parameter if you plan to specify servers by their IP. |
20+
| Certificate Thumbprint | Possible values: <br />- `Empty`— Check Auditor certificate via Windows Certificate Store. <br />- `AB:BB:CC`— Check Auditor Server certificate thumbprint identifier. <br />- `NOCHECK`— Do not check Auditor certificate. <br />Make sure to select this parameter if you plan to specify servers by their IP. |
2121
| Specify Active Directory credentials | |
2222
| Username | Specify the account under which the service will authenticate to the **Netwrix_Auditor_API**. |
2323
| Password | Provide the password for the selected account. |

docs/auditor/10.8/addon/privilegeduserlinux/parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Click **Proceed** and complete the following fields:
1717
| Specify General Settings | |
1818
| Listed UDP port | Specify UDP port for listening incoming events. (**514** by default). |
1919
| 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_ ) |
20-
| Certificate Thumbprint | Possible values: <br>- `Empty`— Check Auditor certificate via Windows Certificate Store. <br>- `AB:BB:CC`— Check Auditor Server certificate thumbprint identifier. <br>- `NOCHECK`— Do not check Auditor certificate. <br>Make sure to select this parameter if you plan to specify servers by their IP. |
20+
| Certificate Thumbprint | Possible values: <br />- `Empty`— Check Auditor certificate via Windows Certificate Store. <br />- `AB:BB:CC`— Check Auditor Server certificate thumbprint identifier. <br />- `NOCHECK`— Do not check Auditor certificate. <br />Make sure to select this parameter if you plan to specify servers by their IP. |
2121
| Specify Active Directory credentials | |
2222
| Username | Specify the account under which the service will authenticate to the **Netwrix_Auditor_API**. |
2323
| Password | Provide the password for the selected account. |

docusaurus.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ const config = {
180180
navbar: {
181181
logo: {
182182
alt: 'Netwrix Logo',
183-
src: 'branding/logo-red.svg',
184-
srcDark: 'branding/logo-white.svg',
183+
src: 'branding/Netwrix_Logo_Dark.svg',
184+
srcDark: 'branding/Netwrix_Logo_Light.svg',
185185
href: '/',
186186
},
187187
items: [

src/css/custom.css

Lines changed: 33 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,43 @@
66

77
/* You can override the default Infima variables here. */
88
:root {
9-
--ifm-color-primary: #2a5298;
10-
--ifm-color-primary-dark: #254a89;
11-
--ifm-color-primary-darker: #234582;
12-
--ifm-color-primary-darkest: #1c376b;
13-
--ifm-color-primary-light: #2f5aa7;
14-
--ifm-color-primary-lighter: #325fae;
15-
--ifm-color-primary-lightest: #4169c4;
9+
--ifm-color-primary: #5851DB;
10+
--ifm-color-primary-dark: #232058;
11+
--ifm-color-primary-darker: #1A1536;
12+
--ifm-color-primary-darkest: #12102C;
13+
--ifm-color-primary-light: #5851DB;
14+
--ifm-color-primary-lighter: #7974E2;
15+
--ifm-color-primary-lightest: #9B97E9;
1616
--ifm-code-font-size: 95%;
1717
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
18-
--ifm-font-family-base: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
18+
--ifm-font-family-base: Syne,Syne-fallback,Trebuchet MS,Verdana,sans-serif;
19+
--ifm-color-emphasis-600: #767386;
20+
--ifm-color-success: #34C263;
21+
--ifm-color-success-dark: #27914A;
22+
--ifm-button-background-color: #5851DB;
23+
}
24+
25+
.table-of-contents {
26+
font-size: 0.9rem;
27+
}
28+
29+
.breadcrumbs {
30+
--ifm-breadcrumb-size-multiplier: 0.9;
31+
}
32+
33+
h1, h2, h3, h4, h5, h6 {
34+
font-family: Hubot Sans,HubotSans-fallback,Courier New,monospace;
1935
}
2036

2137
/* For readability concerns, you should choose a lighter palette in dark mode. */
2238
[data-theme='dark'] {
23-
--ifm-color-primary: #4d7fd8;
24-
--ifm-color-primary-dark: #3770d3;
25-
--ifm-color-primary-darker: #2d66d0;
26-
--ifm-color-primary-darkest: #1e4fac;
27-
--ifm-color-primary-light: #638edd;
28-
--ifm-color-primary-lighter: #6d97e0;
29-
--ifm-color-primary-lightest: #8eafe8;
39+
--ifm-color-primary: #5851DB;
40+
--ifm-color-primary-dark: #4641AF;
41+
--ifm-color-primary-darker: #353183;
42+
--ifm-color-primary-darkest: #232058;
43+
--ifm-color-primary-light: #7974E2;
44+
--ifm-color-primary-lighter: #9B97E9;
45+
--ifm-color-primary-lightest: #BCB9F1;
3046
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
3147
}
3248

@@ -99,7 +115,7 @@ html {
99115
.navbar-item-latest {
100116
font-weight: 600 !important;
101117
color: var(--ifm-color-primary-darkest) !important;
102-
background: linear-gradient(90deg, rgba(42, 82, 152, 0.08), rgba(42, 82, 152, 0.03));
118+
background: linear-gradient(90deg, rgba(88, 81, 219, 0.08), rgba(88, 81, 219, 0.03));
103119
border-left: 3px solid var(--ifm-color-primary);
104120
padding-left: 12px !important;
105121
margin: 2px 0;
@@ -197,7 +213,7 @@ html {
197213
/* Start of Selection */
198214
/* Apply borders only to images within docs pages */
199215
.theme-doc-markdown img {
200-
border: 1px solid #e0e0e0;
216+
border: 1px solid #E2E1DC;
201217
border-radius: 4px;
202218
}
203219
/* End of Selection */

src/pages/index.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
.heroBanner {
88
padding: 4rem 0;
99
text-align: center !important;
10-
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
10+
background: linear-gradient(135deg, #5851DB 0%, #219EBC 100%);
1111
color: white;
1212
position: relative;
1313
overflow: hidden;
Lines changed: 10 additions & 0 deletions
Loading
Lines changed: 10 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)