-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
087edf1
commit 2218b1d
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule textual
updated
23 files
+7 −0 | .github/workflows/codeql.yml | |
+9 −0 | CHANGELOG.md | |
+1 −1 | CONTRIBUTING.md | |
+25 −0 | docs/guide/CSS.md | |
+9 −3 | src/textual/_ansi_sequences.py | |
+16 −6 | src/textual/app.py | |
+17 −2 | src/textual/css/_styles_builder.py | |
+10 −13 | src/textual/css/parse.py | |
+6 −1 | src/textual/css/styles.py | |
+90 −38 | src/textual/css/stylesheet.py | |
+13 −3 | src/textual/message_pump.py | |
+79 −0 | src/textual/pad.py | |
+0 −11 | src/textual/screen.py | |
+13 −7 | src/textual/widget.py | |
+18 −4 | src/textual/widgets/_button.py | |
+2 −2 | src/textual/widgets/_data_table.py | |
+39 −0 | tests/css/test_inheritance.py | |
+95 −0 | tests/css/test_initial.py | |
+0 −6 | tests/css/test_parse.py | |
+1,134 −975 | tests/snapshot_tests/__snapshots__/test_snapshots.ambr | |
+19 −0 | tests/snapshot_tests/snapshot_apps/big_button.py | |
+4 −0 | tests/snapshot_tests/test_snapshots.py | |
+21 −2 | tests/test_screens.py |