15
15
from textual import on , work
16
16
from textual .app import ComposeResult
17
17
from textual .command import CommandPalette
18
- from textual .containers import Horizontal
19
18
from textual .reactive import var
20
19
from textual .screen import Screen
21
20
from textual .widgets import Footer , Header
@@ -90,28 +89,8 @@ class Main(Screen[None]):
90
89
Main {
91
90
layout: horizontal;
92
91
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 {
111
93
height: 1fr;
112
- }
113
-
114
- .focus {
115
94
padding-right: 0;
116
95
border: none;
117
96
border-left: round $border 50%;
@@ -128,6 +107,22 @@ class Main(Screen[None]):
128
107
scrollbar-background-hover: $panel;
129
108
scrollbar-background-active: $panel;
130
109
}
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;
131
126
}
132
127
133
128
/* For when the details are hidden. */
@@ -203,9 +198,9 @@ def __init__(self, api: API) -> None:
203
198
def compose (self ) -> ComposeResult :
204
199
"""Compose the content of the screen."""
205
200
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 (
209
204
raindrop = Main .highlighted_raindrop
210
205
)
211
206
yield Footer ()
0 commit comments