Merge pull request #212 from Textualize/visibility

Visibility
This commit is contained in:
Darren Burns
2022-01-19 16:09:54 +00:00
committed by GitHub
7 changed files with 92 additions and 26 deletions

View File

@@ -2,6 +2,7 @@
App > View {
docks: side=left/1;
text: on #20639b;
}
Widget:hover {
@@ -28,6 +29,10 @@ Widget:hover {
border: hkey;
}
#header.-visible {
visibility: hidden;
}
#content {
text: white on #20639b;
border-bottom: hkey #0f2b41;

View File

@@ -8,6 +8,7 @@ class BasicApp(App):
def on_load(self):
"""Bind keys here."""
self.bind("tab", "toggle_class('#sidebar', '-active')")
self.bind("a", "toggle_class('#header', '-visible')")
def on_mount(self):
"""Build layout here."""