 Command

Pranesh Nikhar's personal site. Vim-style keybinds for navigation; theme + font pickers below.

Theme
 Font Body Code
Reader
Keybinds
Navigation
j / ↓ Next item k / ↑ Previous item g First item in region G Last item in region zz Center focused item h / l Move left/right region ] / [ Next/previous heading } / { Next/previous block d / u Half-page down/up
Layout
<zh> / <zl> Toggle left/right sidebar <zr> Toggle reader view <zj> / <zk> Focus main/navbar <S-h/j/k/l> Focus left/main/navbar/right ⌃H / ⌃L Focus left/right sidebar ⌃J / ⌃K Focus main/navbar ⇧C / ⇧E Collapse / expand all sections
Dialogs
⌃P / : Command palette ⌃X Theme picker / Search ? Show keybinds Esc / ⌃C Close dialog
History
n Next document b Previous document ⌃O History back ⌃I History forward
 Search
about: Pranesh Nikhar about/more: 🪪 More docs/test: Docs Test ideas: 💡 Ideas more: ➕ More now: Now posts: 📬 Posts projects: 📚 Projects webtui: Style posts/agentic-eda: 📊 AgenticEDA — Automated Exploratory Data Analysis with LangGraph posts/cap-theorem-outage-story: 🌐 CAP Theorem with a Real Outage Story posts/codepilot: ✈️ CodePilot — From Requirements to Deployable FastAPI Backend posts/common-auth-mistakes: 🔐 Common Auth Mistakes Developers Make posts/compiled-vs-jit-vs-interpreted: ⚡ Why Is X Language Fast or Slow? — Compiled vs JIT vs Interpreted posts/cs-degree-gaps: 🎓 Things CS Degrees Don't Teach You posts/cve-2025-breach-analysis: 🛡️ CVE-2025 Breach Analysis — Midnight Blizzard and the 16 Billion Credential Leak posts/fixloop: 🔄 FixLoop — AI Agent Loop for Self-Correcting Code posts/functional-vs-oop: ⚡ Functional vs OOP — Same Problem, Both Ways posts/getman: 🦾 Getman — Declarative API Tester for CLI & TUI posts/how-compilers-optimize: ⚙️ How Compilers Actually Optimize Your Code posts/http3-quic: ⚡ HTTP/3 and QUIC — Why They Matter posts/leetcode-vs-engineering: 🧩 LeetCode vs Real Engineering Skills posts/llm-from-scratch: 🧠 LLM from Scratch — GPT-Style Transformer in PyTorch posts/lsm-trees-bloom-filters: 🌳 LSM Trees & Bloom Filters — Production Deep Dive posts/mcp-workflow-builder: 🔧 MCP Workflow Builder — Visual DAG for MCP Tools posts/persistent-memory: 🧠 Persistent Memory — Long-Term Memory for AI Agents via MCP posts/playcli: 🎬 PlayCLI — Terminal Video Player posts/postgres-mvcc: 🗄️ How PostgreSQL MVCC Works — Multi-Version Concurrency Control Deep Dive posts/raft-consensus: ⛵ Raft Consensus Algorithm Explained posts/rust-borrow-checker: 🦀 Rust Borrow Checker — Catches Real Bugs posts/titan: 🤖 Titan — Terminal AI Coding Agent posts/what-happens-url: 🌐 What Happens Between Typing a URL and Seeing the Page posts/what-happens-when-you-run-a-program: ⚙️ What Actually Happens When You Run a Program posts/zero-knowledge-proofs: 🔐 Zero-Knowledge Proofs Explained Simply webtui/components/accordion: Accordion webtui/components/badge: Badge webtui/components/button: Button webtui/components/checkbox: Checkbox webtui/components/dialog: Dialog webtui/components/input: Input webtui/components/popover: Popover webtui/components/pre: Pre webtui/components/progress: Progress webtui/components/radio: Radio webtui/components/range: Range webtui/components/separator: Separator webtui/components/spinner: Spinner webtui/components/switch: Switch webtui/components/table: Table webtui/components/textarea: Textarea webtui/components/tooltip: Popover webtui/components/typography: Typography webtui/components/view: View webtui/contributing/contributing: Contributing webtui/contributing/contributing: ## Local Development webtui/contributing/contributing: ## Issues webtui/contributing/contributing: ## Pull Requests webtui/contributing/style-guide: Style Guide webtui/contributing/style-guide: ## CSS Units webtui/contributing/style-guide: ## Selectors webtui/contributing/style-guide: ## Documentation webtui/installation/astro: Astro webtui/installation/astro: ## Scoping webtui/installation/astro: ### Frontmatter Imports webtui/installation/astro: ### ‹style› tag webtui/installation/astro: ### Full Library Import webtui/installation/nextjs: Next.js webtui/installation/vite: Vite webtui/plugins/plugin-dev: Developing Plugins webtui/plugins/plugin-dev: ### Style Layers webtui/plugins/plugin-nf: Nerd Font Plugin webtui/plugins/theme-catppuccin: Catppuccin Theme webtui/plugins/theme-custom: Custom Theme webtui/plugins/theme-everforest: Everforest Theme webtui/plugins/theme-gruvbox: Gruvbox Theme webtui/plugins/theme-nord: Nord Theme webtui/plugins/theme-vitesse: Vitesse Theme webtui/start/ascii-boxes: ASCII Boxes webtui/start/changelog: Changelog webtui/start/installation: Installation webtui/start/installation: ## Installation webtui/start/installation: ## Using CSS webtui/start/installation: ## Using ESM webtui/start/installation: ## Using a CDN webtui/start/installation: ## Full Library Import webtui/start/installation: ### CSS webtui/start/installation: ### ESM webtui/start/installation: ### CDN webtui/start/intro: Introduction webtui/start/intro: ## Features webtui/start/plugins: Plugins webtui/start/plugins: ## Official Plugins webtui/start/plugins: ### Themes webtui/start/plugins: ## Community Plugins webtui/start/theming: Theming webtui/start/theming: ## CSS Variables webtui/start/theming: ### Font Styles webtui/start/theming: ### Colors webtui/start/theming: ### Light & Dark webtui/start/theming: ## Theme Plugins webtui/start/theming: ### Using Multiple Theme Accents webtui/start/tuis-vs-guis: TUIs vs GUIs webtui/start/tuis-vs-guis: ## Monospace Fonts webtui/start/tuis-vs-guis: ## Character Cells
 Theme Current: Light j/k or ↑/↓ + Enter

Popover

Creates a popover component powered by the Details and Summary elements

1
2 <details is-="popover">
3 <summary>Click Me</summary>
4 <div>Popover content</div>
5 </details>
6
1
2 div {
3 background-color: var(--background1);
4 padding: 1lh 1ch;
5 }
6

Import

@import '@webtui/css/components/popover.css';

Usage

<details is-="popover">
    <summary>Popover</summary>
    <div>Popover content</div>
</details>

Examples

Positioning

Use the position- property to control the position of the popover

Pass two values into position- to set the horizontal and vertical position anchor

<details is-="popover" position-="<anchor>"></details>
<details is-="popover" position-="<x-anchor> <y-anchor>"></details>

<details is-="popover" position-="center"></details>
<details is-="popover" position-="start end"></details>
1
2 <div class="row">
3 <details is-="popover" position-="bottom right">
4 <summary>BR ↘</summary>
5 <div class="popover-content">Popover content</div>
6 </details>
7 <details is-="popover" position-="bottom left">
8 <summary>BL ↙</summary>
9 <div class="popover-content">Popover content</div>
10 </details>
11 </div>
12 <div class="row">
13 <details is-="popover" position-="top right">
14 <summary>TR ↗</summary>
15 <div class="popover-content">Popover content</div>
16 </details>
17 <details is-="popover" position-="top left">
18 <summary>TL ↖</summary>
19 <div class="popover-content">Popover content</div>
20 </details>
21 </div>
22
1
2 body {
3 display: flex;
4 flex-direction: column;
5 gap: 1lh;
6 justify-content: center;
7 height: 100vh;
8 }
9 .row {
10 display: flex;
11 gap: 1ch;
12 aling-items: center;
13 justify-content: center;
14 }
15 summary {
16 background-color: var(--background1);
17 }
18 .popover-content {
19 background-color: var(--background1);
20 white-space: nowrap;
21 padding: 1lh 1ch;
22 }
23

Use baseline-* values to position the content relative to the edges of the popover

1
2 <div class="row">
3 <details is-="popover" position-="bottom baseline-right">
4 <summary>Bottom Baseline-Right</summary>
5 <div class="popover-content">Popover content</div>
6 </details>
7 <details is-="popover" position-="bottom baseline-left">
8 <summary>Bottom Baseline-Left</summary>
9 <div class="popover-content">Popover content</div>
10 </details>
11 </div>
12 <div class="row">
13 <details is-="popover" position-="right baseline-top">
14 <summary>Right Baseline-Top</summary>
15 <div class="popover-content">Popover content</div>
16 </details>
17 <details is-="popover" position-="left baseline-bottom">
18 <summary>Left Baseline-Bottom</summary>
19 <div class="popover-content">Popover content</div>
20 </details>
21 </div>
22
1
2 body {
3 display: flex;
4 flex-direction: column;
5 gap: 1lh;
6 }
7 .row {
8 display: flex;
9 gap: 1ch;
10 }
11 summary {
12 background-color: var(--background1);
13 }
14 .popover-content {
15 background-color: var(--background1);
16 white-space: nowrap;
17 padding: 1lh 1ch;
18 }
19

The image below shows the values and positions that can be used in the position- property

popover-positioning.png

Backdrop

1 <details is-="popover">
2 <summary>Click Me</summary>
3 <div class="popover-content">Popover content</div>
4 </details>
5 <p>This appears behind the backdrop</p>
1
2 body {
3 display: flex;
4 flex-direction: column;
5 gap: 1lh;
6 }
7 [is-='popover'] {
8 --popover-backdrop-color: rgba(0, 0, 0, 0.5);
9 }
10 .popover-content {
11 background-color: var(--background1);
12 white-space: nowrap;
13 padding: 1lh 1ch;
14 }
15

Caveats

Elements using the box- utility that appear after the popover in the html markup will appear above the popover content no matter what z-index you provide

<style>
    .column {
        display: flex;
        flex-direction: column;
    }
</style>

<div class="column">
    <details is-="popover">
        <summary>Popover</summary>
        <div>Popover content</div>
    </details>
    <div box-="square">
        Will appear above the open popover since defined after it in the html
    </div>
</div>

As a workaround, you can set the flex-direction to row-reverse or column-reverse on the parent element of the popover

<style>
    .column-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
</style>

<div class="column-reverse">
    <div box-="square">
        Will appear behind the open popover since defined before it in the html
    </div>
    <details is-="popover">
        <summary>Popover</summary>
        <div>Popover content</div>
    </details>
</div>

Reference

Properties

  • --popover-backdrop-color: The background color of the backdrop (transparent by default)
  • --popover-offset-x: The horizontal offset of the popover
  • --popover-offset-y: The vertical offset of the popover
#my-custom-popover {
    --popover-backdrop-color: rgba(0, 0, 0, 0.5);
    --popover-offset-x: 1ch;
    --popover-offset-y: 1lh;
}

Extending

To extend the Popover stylesheet, define a CSS rule on the components layer

@layer components {
    details[is-~='popover'] {
        &[variant-='inverted'] {
            /* ... */
        }

        /* ... */
    }
}

Scope

details[is-~='popover'] {
    /* ... */
}
 praneshnikhar.site / webtui / components / popover · Top 1:1