Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions src/textual/widgets/_footer.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class Footer(ScrollableContainer, can_focus=False, can_focus_children=False):
ALLOW_SELECT = False
DEFAULT_CSS = """
Footer {
layout: horizontal;
layout: horizontal;
color: $footer-foreground;
background: $footer-background;
dock: bottom;
Expand All @@ -151,7 +151,7 @@ class Footer(ScrollableContainer, can_focus=False, can_focus_children=False):
padding-right: 1;
border-left: vkey $foreground 20%;
}
HorizontalGroup.binding-group {
HorizontalGroup.binding-group {
width: auto;
height: 1;
layout: horizontal;
Expand Down Expand Up @@ -185,9 +185,8 @@ class Footer(ScrollableContainer, can_focus=False, can_focus_children=False):
}
FooterLabel {
margin: 0 1;
background: red;
color: $footer-description-foreground;
background: $footer-description-background;
color: $footer-description-foreground;
}
}
"""
Expand Down
Loading