From 29b034ef2ef2161dd7ef88fea44cb21647623aa2 Mon Sep 17 00:00:00 2001 From: Kamakshi Mudgal Date: Tue, 27 Jan 2026 19:28:01 +0530 Subject: [PATCH] docs: fix prev/next card links Signed-off-by: Kamakshi Mudgal --- src/components/KeployCloud.js | 45 ++++---- src/css/custom.css | 103 ++++++++++++++++++ .../keploy-cloud/keploy-console.md | 2 +- .../keploy-cloud/time-freezing.md | 2 +- 4 files changed, 129 insertions(+), 23 deletions(-) diff --git a/src/components/KeployCloud.js b/src/components/KeployCloud.js index 1650346c8..e09c328fb 100644 --- a/src/components/KeployCloud.js +++ b/src/components/KeployCloud.js @@ -3,28 +3,31 @@ import React from "react"; export const KeployCloud = () => { return (
-
-

Questions? 🤔💭

-

- For any support please{" "} - - join keploy slack community - {" "} - to get help from fellow users, or{" "} - - book a demo - {" "} - if you're exploring enterprise use cases. -

+
+ Need help? + + + Join Slack + + + | + + + Book a Demo +
); diff --git a/src/css/custom.css b/src/css/custom.css index b40fda1aa..3c79d7fad 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -873,4 +873,107 @@ textarea { background-color: #e67643 !important; } +/* Support strip (Need help? Slack | Demo) */ +.support-strip { + display: flex; + align-items: center; + justify-content: center; + gap: 15px; + padding: 10px; + background: var(--ifm-color-emphasis-100); /* Slim strip look */ + border-radius: 4px; + margin-bottom: 20px; +} + +#support span { + color: #6b6a6a; +} + +#support a { + font-weight: 600; + color: #ff7849; + text-decoration: none; +} + +#support a:hover { + color: #ffa07a; +} + +/* ===== FINAL Compact Pagination ===== */ + +.pagination-nav { + border-top: 2.5px solid var(--ifm-color-emphasis-200); + padding-top: 2rem; + margin-top: 2rem; +} + +.pagination-nav__link { + padding: 0.5rem 1rem !important; + border-radius: 6px !important; + box-shadow: none !important; + border: 1.5px solid var(--ifm-color-emphasis-200) !important; + background: transparent !important; + min-height: auto !important; + display: flex; + flex-direction: column; +} + +.pagination-nav__label { + font-weight: 700 !important; + color: var(--ifm-color-emphasis-900) !important; + font-size: 0.9rem; +} + +.pagination-nav__sublabel { + font-weight: 500; + color: var(--ifm-color-emphasis-600); +} +/* Hover */ +.pagination-nav__link:hover { + border-color: var(--ifm-color-primary); + background-color: var(--ifm-color-emphasis-100); + text-decoration: none; +} + + + +/* Title */ +.pagination-nav__title { + font-size: 0.82rem; + font-weight: 600; + color: var(--ifm-font-color-base); + line-height: 1.9; +} + +/* Arrows subtle */ +.pagination-nav__link svg { + transform: scale(0.7); + opacity: 1.65; +} + +[data-theme='dark'] .pagination-nav__link { + border-color: var(--ifm-color-emphasis-100); /* softer than before */ +} + +[data-theme='dark'] .pagination-nav__label { + color: var(--ifm-color-emphasis-500); +} + +/* ===== Divider Between Pagination and Footer ===== */ + +/* Add space below pagination */ +.pagination-nav { + margin-bottom: 3rem; +} + +/* Add a top border to footer */ +.footer { + border-top: 1px solid var(--ifm-toc-border-color); + margin-top: 0; + padding-top: 2rem; +} + +[data-theme='dark'] .footer { + border-top: 1px solid var(--ifm-color-emphasis-200); +} diff --git a/versioned_docs/version-3.0.0/keploy-cloud/keploy-console.md b/versioned_docs/version-3.0.0/keploy-cloud/keploy-console.md index 39150cab6..02bab7b21 100644 --- a/versioned_docs/version-3.0.0/keploy-cloud/keploy-console.md +++ b/versioned_docs/version-3.0.0/keploy-cloud/keploy-console.md @@ -68,7 +68,7 @@ Noisy fields are ignored for assertion when the test-cases runs. Say, `Date` and Noise -You'd see the changes in the test-case file locally, new noisy fields are added under noise param in the test case. +You’ll see the changes in the test-case file locally. New noisy fields are added under the noise parameter in the test case configuration. De-noise diff --git a/versioned_docs/version-3.0.0/keploy-cloud/time-freezing.md b/versioned_docs/version-3.0.0/keploy-cloud/time-freezing.md index 88b376e9a..e791b235e 100644 --- a/versioned_docs/version-3.0.0/keploy-cloud/time-freezing.md +++ b/versioned_docs/version-3.0.0/keploy-cloud/time-freezing.md @@ -46,7 +46,7 @@ For Docker-based applications, you'll need to make a few adjustments to your Doc uname -a ``` -2. Download the the appropriate time freeze agent for your architecture & set the `LD_PRELOAD` Environment Variable in your Dockerfile +2. Download the appropriate time freeze agent for your architecture & set the `LD_PRELOAD` Environment Variable in your Dockerfile ### For Golang(Go) Applications -