From b175154474cae8edfa46b3bf711501ec9f4e56df Mon Sep 17 00:00:00 2001 From: Robert Keyser Date: Wed, 21 Jun 2023 13:10:48 -0500 Subject: [PATCH 1/3] repoint links to moved Fides documentation --- .../admin-ui/src/pages/management/about.tsx | 2 +- clients/privacy-center/config/config.css | 39 ++++++++++++++++--- docs/README.md | 2 +- docs/fides/docs/development/documentation.md | 2 +- 4 files changed, 36 insertions(+), 9 deletions(-) diff --git a/clients/admin-ui/src/pages/management/about.tsx b/clients/admin-ui/src/pages/management/about.tsx index d012b3b4fa..6062d317a8 100644 --- a/clients/admin-ui/src/pages/management/about.tsx +++ b/clients/admin-ui/src/pages/management/about.tsx @@ -78,7 +78,7 @@ const About: NextPage = () => { Please visit{" "} docs.ethyca.com diff --git a/clients/privacy-center/config/config.css b/clients/privacy-center/config/config.css index 191348d8f4..3ecd8498ff 100644 --- a/clients/privacy-center/config/config.css +++ b/clients/privacy-center/config/config.css @@ -4,16 +4,43 @@ Override basic theme colors by uncommenting and editing those below */ :root:root { + /* Background color */ - /* --chakra-colors-gray-50: #F7FAFC; */ + --chakra-colors-gray-50: #ffffff; /* Header & highlight color */ - /* --chakra-colors-gray-100: #EDF2F7; */ + --chakra-colors-gray-100: #0f1536; /* Modal text color */ - /* --chakra-colors-gray-500: #718096; */ + --chakra-colors-gray-500: #000000; /* Body text color */ - /* --chakra-colors-gray-600: #4A5568; */ + --chakra-colors-gray-600: #000000; /* Primary button hover color */ - /* --chakra-colors-primary-400: #464B83; */ + --chakra-colors-primary-400: #00f5bd; /* Primary button color */ - /* --chakra-colors-primary-800: #111439; */ + --chakra-colors-primary-800: #0f1536; + /* Privacy action button focus color */ + --chakra-colors-complimentary-500: #03f0ff; +} + +.chakra-button:hover, .chakra-button[type="button"]:hover, .chakra-button[type="submit"]:hover { + background: #00f5bd; + color: #0f1536; +} + +a.chakra-link p, a.chakra-link svg, p a.chakra-link { + color: #000000; + font-style: italic; +} + +.chakra-stack[data-testid="gpc-banner"]{ + background: #f1f1f1; + border-color:#0f1536; +} + +.chakra-stack[data-testid="gpc-banner"] svg{ + color: #000000; +} + +.chakra-stack div[data-testid*="consent-item-"] *:not(.chakra-badge){ + background: #ffffff; + color: #413939; } diff --git a/docs/README.md b/docs/README.md index 148ede534e..a73b65f351 100644 --- a/docs/README.md +++ b/docs/README.md @@ -2,4 +2,4 @@ This is where the autogenerated docs for Fides lives. To run the docs locally, use `nox -s docs_serve` and visit `localhost:8000` -The full, official docs live at https://docs.ethyca.com/fides/overview +The full, official docs live at https://docs.ethyca.com diff --git a/docs/fides/docs/development/documentation.md b/docs/fides/docs/development/documentation.md index 5f4b0b2683..330f5005f1 100644 --- a/docs/fides/docs/development/documentation.md +++ b/docs/fides/docs/development/documentation.md @@ -1,6 +1,6 @@ # Documentation -Primary documentation for Fides now lives at , however autogenerated documentation as well as developer documentation is still maintained and hosted within the [Fides project repo](https://github.com/ethyca/fides). +Primary documentation for Fides now lives at , however autogenerated documentation as well as developer documentation is still maintained and hosted within the [Fides project repo](https://github.com/ethyca/fides). ## Previewing Docs Locally From b8de988efcadb0c3e551f071c40b6ab25668ee1c Mon Sep 17 00:00:00 2001 From: Robert Keyser Date: Wed, 21 Jun 2023 13:28:51 -0500 Subject: [PATCH 2/3] changelog update for broken link in admin ui, remove accidental change --- CHANGELOG.md | 1 + clients/privacy-center/config/config.css | 41 ++++-------------------- 2 files changed, 8 insertions(+), 34 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47b62a8df5..87efecfcaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,7 @@ The types of changes are: - Update to latest asyncpg dependency to avoid build error [#3614](https://github.com/ethyca/fides/pull/3614) - Fix bug where editing a data use on a system could delete existing data uses [#3627](https://github.com/ethyca/fides/pull/3627) - Restrict Privacy Center debug logging to development-only [#3638](https://github.com/ethyca/fides/pull/3638) +- Broken link to Fides docs site on the About Fides page in Admin UI [#3643](https://github.com/ethyca/fides/pull/3643) ### Developer Experience diff --git a/clients/privacy-center/config/config.css b/clients/privacy-center/config/config.css index 3ecd8498ff..cec2053043 100644 --- a/clients/privacy-center/config/config.css +++ b/clients/privacy-center/config/config.css @@ -4,43 +4,16 @@ Override basic theme colors by uncommenting and editing those below */ :root:root { - /* Background color */ - --chakra-colors-gray-50: #ffffff; + /* --chakra-colors-gray-50: #F7FAFC; */ /* Header & highlight color */ - --chakra-colors-gray-100: #0f1536; + /* --chakra-colors-gray-100: #EDF2F7; */ /* Modal text color */ - --chakra-colors-gray-500: #000000; + /* --chakra-colors-gray-500: #718096; */ /* Body text color */ - --chakra-colors-gray-600: #000000; + /* --chakra-colors-gray-600: #4A5568; */ /* Primary button hover color */ - --chakra-colors-primary-400: #00f5bd; + /* --chakra-colors-primary-400: #464B83; */ /* Primary button color */ - --chakra-colors-primary-800: #0f1536; - /* Privacy action button focus color */ - --chakra-colors-complimentary-500: #03f0ff; -} - -.chakra-button:hover, .chakra-button[type="button"]:hover, .chakra-button[type="submit"]:hover { - background: #00f5bd; - color: #0f1536; -} - -a.chakra-link p, a.chakra-link svg, p a.chakra-link { - color: #000000; - font-style: italic; -} - -.chakra-stack[data-testid="gpc-banner"]{ - background: #f1f1f1; - border-color:#0f1536; -} - -.chakra-stack[data-testid="gpc-banner"] svg{ - color: #000000; -} - -.chakra-stack div[data-testid*="consent-item-"] *:not(.chakra-badge){ - background: #ffffff; - color: #413939; -} + /* --chakra-colors-primary-800: #111439; */ +} \ No newline at end of file From 4eadfe84f94c46632a332c2d6e361ba3b80deffb Mon Sep 17 00:00:00 2001 From: Robert Keyser Date: Wed, 21 Jun 2023 13:30:04 -0500 Subject: [PATCH 3/3] add newline back --- clients/privacy-center/config/config.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/privacy-center/config/config.css b/clients/privacy-center/config/config.css index cec2053043..191348d8f4 100644 --- a/clients/privacy-center/config/config.css +++ b/clients/privacy-center/config/config.css @@ -16,4 +16,4 @@ Override basic theme colors by uncommenting and editing those below /* --chakra-colors-primary-400: #464B83; */ /* Primary button color */ /* --chakra-colors-primary-800: #111439; */ -} \ No newline at end of file +}