mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
* nested * remove debug * patch scope * fix nested * docs * clarification * docstring * fix test * remove debug * copy * fix example * wording * Apply suggestions from code review Co-authored-by: Rodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com> Co-authored-by: Dave Pearson <davep@davep.org> * highlighting * wording * wording * check errors * type checking: * extra errors * extra test [skip ci] --------- Co-authored-by: Rodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com> Co-authored-by: Dave Pearson <davep@davep.org>
26 lines
340 B
Plaintext
26 lines
340 B
Plaintext
Screen {
|
|
background: $panel;
|
|
}
|
|
|
|
Input {
|
|
dock: top;
|
|
margin: 1 0;
|
|
}
|
|
|
|
#results {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
#results-container {
|
|
background: $background 50%;
|
|
margin: 0 0 1 0;
|
|
height: 100%;
|
|
overflow: hidden auto;
|
|
border: tall $background;
|
|
}
|
|
|
|
#results-container:focus {
|
|
border: tall $accent;
|
|
}
|