Created
July 11, 2024 03:48
-
-
Save dstanek/d967999291dcf469fd2a9093f464f283 to your computer and use it in GitHub Desktop.
A really simple panel widget for Textual
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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