Darren Burns

Results 77 issues of Darren Burns

Looks like this requires access to the "Settings" for a repo to both enable and preview the templates.

Reading config files and merging them. - Things are kept in dictionary form for now as that's how they get merged. - We could throw the data into an immutable...

Application code: ```python from textual.app import App, ComposeResult from textual.widgets import Static class JustABox(App): def compose(self) -> ComposeResult: yield Static("Hello, World!", id="box") if __name__ == '__main__': app = JustABox(css_path="just_a_box.css", watch_css=True)...

When running on my personal laptop, devtools slows a Textual application down drastically. When I close the devtools, I get the following error (which I have never seen on the...

Copy and paste some text into a Textual app with devtools connected and note that the ordering is incorrect. The first letter and last letter are correct. There are a...

bug

Applying CSS margin to the buttons in the button examples shows that the margin appears to not be getting applied horizontally.

bug

With the CSS below on the uber.py example, the content gets pushed behind the scrollbar. There is an unexpected space on the left hand side. ``` #uber1 { layout: vertical;...

We're going to have a bunch of keybindings/actions available in the average Textual App. These actions could be put into a command palette. Users of a Textual app could press...

This means that by default, setting the height and width of a widget using CSS doesn't work (since the default layout is dock). The dock layout should just defined *where*...

bug