File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
src/braindrop/app/screens Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 11# Braindrop ChangeLog
22
3+ ## Unreleased
4+
5+ ** Released: WiP**
6+
7+ - Made some cosmetic changes to the raindrop input dialog.
8+ ([ #194 ] ( https://github.com/davep/braindrop/pull/194 ) )
9+
310## v0.13.0
411
512** Released: 2025-11-03**
Original file line number Diff line number Diff line change @@ -95,6 +95,11 @@ class RaindropInput(ModalScreen[Raindrop | None]):
9595 display: block;
9696 }
9797 }
98+
99+ /* Have the TextAreas' text better align with other input widgets. */
100+ TextArea {
101+ padding: 0 2;
102+ }
98103 }
99104 """
100105
@@ -168,9 +173,9 @@ def compose(self) -> ComposeResult:
168173 validators = [Length (1 , failure_description = "A title is required" )],
169174 )
170175 yield Label ("Excerpt:" )
171- yield TextArea (id = "excerpt" )
176+ yield TextArea (id = "excerpt" , highlight_cursor_line = False )
172177 yield Label ("Note:" )
173- yield TextArea (id = "note" , language = "markdown" )
178+ yield TextArea (id = "note" , language = "markdown" , highlight_cursor_line = False )
174179 yield Label ("URL:" )
175180 yield Input (
176181 placeholder = "The URL of the link for the Raindrop" ,
You can’t perform that action at this time.
0 commit comments