Skip to content

Instantly share code, notes, and snippets.

@dstanek
Created July 11, 2024 03:48
Show Gist options
  • Save dstanek/d967999291dcf469fd2a9093f464f283 to your computer and use it in GitHub Desktop.
Save dstanek/d967999291dcf469fd2a9093f464f283 to your computer and use it in GitHub Desktop.
A really simple panel widget for Textual
# Copyright 2026 David Stanek <[email protected]>
from textual.containers import Vertical
class Panel(Vertical):
DEFAULT_CSS = """
Panel {
width: 1fr;
height: 1fr;
layout: vertical;
overflow: hidden hidden;
border: heavy $primary;
border-title-color: $primary;
border-title-style: bold;
}
"""
def __init__(self, title: str):
super().__init__()
self.border_title = title
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment