mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
implement inline styles
This commit is contained in:
3
sandbox/README.md
Normal file
3
sandbox/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# Dev Sandbox
|
||||
|
||||
This directory contains test code. None of the .py files here are garanteed to run or do anything useful, but you are welcome to look around.
|
||||
7
sandbox/local_styles.css
Normal file
7
sandbox/local_styles.css
Normal file
@@ -0,0 +1,7 @@
|
||||
App > View {
|
||||
layout: dock;
|
||||
}
|
||||
|
||||
Widget {
|
||||
text: on blue;
|
||||
}
|
||||
33
sandbox/local_styles.py
Normal file
33
sandbox/local_styles.py
Normal file
@@ -0,0 +1,33 @@
|
||||
from textual.app import App
|
||||
from textual.widgets import Placeholder
|
||||
from textual.widget import Widget
|
||||
from textual import events
|
||||
|
||||
|
||||
class BasicApp(App):
|
||||
"""Sandbox application used for testing/development by Textual developers"""
|
||||
|
||||
def on_mount(self):
|
||||
"""Build layout here."""
|
||||
self.mount(
|
||||
header=Widget(),
|
||||
content=Placeholder(),
|
||||
footer=Widget(),
|
||||
sidebar=Widget(),
|
||||
)
|
||||
|
||||
async def on_key(self, event: events.Key) -> None:
|
||||
await self.dispatch_key(event)
|
||||
|
||||
def key_a(self) -> bool | None:
|
||||
self.query("#footer").set_styles(text="on magenta").refresh()
|
||||
|
||||
self.log(self["#footer"].styles.css)
|
||||
self.bell()
|
||||
self.refresh()
|
||||
|
||||
def key_b(self) -> bool | None:
|
||||
self["#content"].set_styles("text: on magenta")
|
||||
|
||||
|
||||
BasicApp.run(css_file="local_styles.css", log="textual.log")
|
||||
Reference in New Issue
Block a user