Skip to content
Merged
Show file tree
Hide file tree
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: 7 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Braindrop ChangeLog

## Unreleased

**Released: WiP**

- Made some cosmetic changes to the raindrop input dialog.
([#194](https://github.com/davep/braindrop/pull/194))

## v0.13.0

**Released: 2025-11-03**
Expand Down
9 changes: 7 additions & 2 deletions src/braindrop/app/screens/raindrop_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,11 @@ class RaindropInput(ModalScreen[Raindrop | None]):
display: block;
}
}

/* Have the TextAreas' text better align with other input widgets. */
TextArea {
padding: 0 2;
}
}
"""

Expand Down Expand Up @@ -168,9 +173,9 @@ def compose(self) -> ComposeResult:
validators=[Length(1, failure_description="A title is required")],
)
yield Label("Excerpt:")
yield TextArea(id="excerpt")
yield TextArea(id="excerpt", highlight_cursor_line=False)
yield Label("Note:")
yield TextArea(id="note", language="markdown")
yield TextArea(id="note", language="markdown", highlight_cursor_line=False)
yield Label("URL:")
yield Input(
placeholder="The URL of the link for the Raindrop",
Expand Down