Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
05bf445
Add visual sandbox docs page
LindsayAuch May 1, 2026
ebafd47
Typography refresh: Inter throughout, smaller H1
LindsayAuch May 1, 2026
7497bff
Card components redesign: full-width stacked, compact, subtle hover
LindsayAuch May 1, 2026
738c0da
Sidebar nav refresh: bold categories, blue active state, tighter spacing
LindsayAuch May 1, 2026
2f67fb2
Render markdown link-only lists as cards (recipe README pages)
LindsayAuch May 1, 2026
e692c31
Admonition restyle: Lucide icons, per-variant color schemes
LindsayAuch May 1, 2026
70f74ab
Tighten sidebar item spacing per design review
LindsayAuch May 1, 2026
be97bd6
Set code font size to 13px (81.25% of 16px body)
LindsayAuch May 1, 2026
b11af72
Soften heading weight and round video thumbnail corners
LindsayAuch May 1, 2026
c0b1b1f
Visual polish: neo card tokens, rounded media, sidebar active leaf
LindsayAuch May 1, 2026
b723b99
Iterate on visual polish: TOC, framed media, dark-mode contrast, glas…
LindsayAuch May 1, 2026
6b478d6
Bump page background from #F8F8FF to #FAFAFF
LindsayAuch May 1, 2026
7a8eac9
Merge pull request #501 from openrewrite/LindsayAuch/visual-polish
LindsayAuch May 12, 2026
bd1ef10
Merge pull request #502 from openrewrite/LindsayAuch/visual-polish-it…
LindsayAuch May 12, 2026
cdaeeb8
Merge branch 'LindsayAuch/visual-refresh-sandbox' into LindsayAuch/he…
LindsayAuch May 12, 2026
cae439d
Merge pull request #500 from openrewrite/LindsayAuch/heading-weight-v…
LindsayAuch May 12, 2026
1f46e5a
Merge branch 'LindsayAuch/visual-refresh-sandbox' into LindsayAuch/ad…
LindsayAuch May 12, 2026
c917518
Merge branch 'LindsayAuch/visual-refresh-sandbox' into LindsayAuch/ma…
LindsayAuch May 12, 2026
52c729f
Merge pull request #494 from openrewrite/LindsayAuch/typography-refresh
LindsayAuch May 12, 2026
e61bfff
Merge branch 'LindsayAuch/visual-refresh-sandbox' into LindsayAuch/ca…
LindsayAuch May 12, 2026
c57f40c
Merge pull request #499 from openrewrite/LindsayAuch/code-font-13px
LindsayAuch May 12, 2026
d4286f4
Merge branch 'LindsayAuch/visual-refresh-sandbox' into LindsayAuch/si…
LindsayAuch May 12, 2026
02baffd
Merge pull request #498 from openrewrite/LindsayAuch/admonition-lucid…
LindsayAuch May 12, 2026
62ac0a3
Merge pull request #495 from openrewrite/LindsayAuch/card-redesign
LindsayAuch May 12, 2026
b849c25
Merge pull request #496 from openrewrite/LindsayAuch/sidebar-nav-refresh
LindsayAuch May 12, 2026
a04e4f5
Merge pull request #497 from openrewrite/LindsayAuch/markdown-link-cards
LindsayAuch May 12, 2026
d96a86d
Merge pull request #503 from openrewrite/LindsayAuch/bg-color-fafaff
LindsayAuch May 12, 2026
8d3f505
Restore subtle border on code blocks in dark mode
LindsayAuch May 12, 2026
d1389ec
TOC: switch menu icon stroke to white in dark mode
LindsayAuch May 13, 2026
092d9ea
Remove unused Beausite @font-face declaration
LindsayAuch May 13, 2026
0cd862f
Merge pull request #505 from openrewrite/LindsayAuch/code-block-dark-…
LindsayAuch May 14, 2026
df3a1a8
Code blocks: tighten inner vertical padding (scoped)
LindsayAuch May 22, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 73 additions & 0 deletions docs/sandbox.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
---
title: Visual sandbox
description: Reference page for reviewing the visual refresh.
unlisted: true
slug: /sandbox
---

# Visual sandbox

Reference page rendering one example of every pattern from the visual refresh ([issue #492](https://github.com/openrewrite/rewrite-docs/issues/492)). Used for designer/PM review of staged PRs.

## Typography

# Heading 1 — page title scale

## Heading 2 — section

### Heading 3 — subsection

#### Heading 4

Body paragraph using Inter at the docs base size. Includes an [inline link](/sandbox) and `inline code`. Set against the off-white background that runs across the site.

## Admonitions

:::info
For a better understanding of the permissions requested, please review our [GitHub permissions reference documentation](/sandbox).
:::

:::tip
Run `mod recipe debug` first if you want to see the LST output before applying any change.
:::

:::note
Running a recipe _does not_ automatically update the code in the selected repositories. You will be able to view the results and decide what you want to commit.
:::

:::warning
Depending on what organization you ran the recipe against, you may not have access to commit code or create a PR. Please don't try and open PRs against random projects that aren't your own.
:::

:::caution
If you are still on the legacy Neon development database, do not share your `DATABASE_URL`. It contains your database credentials.
:::

:::danger
Force-pushing to `master` rewrites history for every collaborator. Coordinate before doing this.
:::

## Markdown link-list cards

Plain markdown bulleted lists where every item is just a link render as cards. This pattern shows up on recipe README pages.

### Categories

- [FF4j](/sandbox)
- [LaunchDarkly](/sandbox)
- [OpenFeature](/sandbox)
- [Quarkus](/sandbox)

### Recipes

- [Remove a String feature flag for feature key](/sandbox)
- [Remove a boolean feature flag for feature key](/sandbox)
- [Remove a double feature flag for feature key](/sandbox)

## DocCard layout

Generated index page cards (e.g. `/changelog`, `/recipes`, `/authoring-recipes`) are full-width and stacked vertically. See [Changelog](/changelog) for a live example.

## Sidebar nav

The left-hand sidebar uses bold dark text for collapsible categories, blue for the active expanded section, and regular weight for child items.
Loading