Skip to content

Commit f4b19bc

Browse files
authored
🔀 Merge pull request #132 from davep/code-tidy
Code tidying
2 parents ebcb804 + ea84cfc commit f4b19bc

File tree

1 file changed

+20
-25
lines changed

1 file changed

+20
-25
lines changed

src/braindrop/app/screens/main.py

+20-25
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
from textual import on, work
1616
from textual.app import ComposeResult
1717
from textual.command import CommandPalette
18-
from textual.containers import Horizontal
1918
from textual.reactive import var
2019
from textual.screen import Screen
2120
from textual.widgets import Footer, Header
@@ -90,28 +89,8 @@ class Main(Screen[None]):
9089
Main {
9190
layout: horizontal;
9291
93-
Navigation {
94-
width: 2fr;
95-
height: 1fr;
96-
&> .option-list--option {
97-
padding: 0 1;
98-
}
99-
}
100-
101-
RaindropsView {
102-
width: 5fr;
103-
height: 1fr;
104-
&> .option-list--option {
105-
padding: 0 1;
106-
}
107-
}
108-
109-
RaindropDetails {
110-
width: 3fr;
92+
.panel {
11193
height: 1fr;
112-
}
113-
114-
.focus {
11594
padding-right: 0;
11695
border: none;
11796
border-left: round $border 50%;
@@ -128,6 +107,22 @@ class Main(Screen[None]):
128107
scrollbar-background-hover: $panel;
129108
scrollbar-background-active: $panel;
130109
}
110+
&> .option-list--option {
111+
padding: 0 1;
112+
}
113+
}
114+
115+
Navigation {
116+
width: 2fr;
117+
}
118+
119+
RaindropsView {
120+
width: 5fr;
121+
scrollbar-gutter: stable;
122+
}
123+
124+
RaindropDetails {
125+
width: 3fr;
131126
}
132127
133128
/* For when the details are hidden. */
@@ -203,9 +198,9 @@ def __init__(self, api: API) -> None:
203198
def compose(self) -> ComposeResult:
204199
"""Compose the content of the screen."""
205200
yield Header()
206-
yield Navigation(self._api, classes="focus").data_bind(Main.active_collection)
207-
yield RaindropsView(classes="focus").data_bind(raindrops=Main.active_collection)
208-
yield RaindropDetails(classes="focus").data_bind(
201+
yield Navigation(self._api, classes="panel").data_bind(Main.active_collection)
202+
yield RaindropsView(classes="panel").data_bind(raindrops=Main.active_collection)
203+
yield RaindropDetails(classes="panel").data_bind(
209204
raindrop=Main.highlighted_raindrop
210205
)
211206
yield Footer()

0 commit comments

Comments
 (0)