mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
Merge branch 'css' of github.com:willmcgugan/textual into snapshot
This commit is contained in:
@@ -271,12 +271,6 @@ async def test_border_edge_types_impact_on_widget_size(
|
||||
("overflow: auto", "scrollbar-size-horizontal: 3"),
|
||||
Size(20 - SCROLL_V_SIZE, 20 - 3),
|
||||
],
|
||||
# scrollbar needed only vertically, custom scrollbar size
|
||||
[
|
||||
Size(20, 30),
|
||||
("overflow: auto", "scrollbar-size: 3 3"),
|
||||
Size(20 - 3, 20),
|
||||
],
|
||||
# scrollbar needed only horizontally, custom scrollbar size
|
||||
[
|
||||
Size(30, 20),
|
||||
@@ -314,6 +308,7 @@ async def test_scrollbar_size_impact_on_the_layout(
|
||||
)
|
||||
|
||||
large_widget = LargeWidget()
|
||||
large_widget.expand = False
|
||||
container = LargeWidgetContainer(large_widget, id="large-widget-container")
|
||||
|
||||
class MyTestApp(AppTest):
|
||||
|
||||
@@ -37,7 +37,9 @@ def test_widget_content_width():
|
||||
class TextWidget(Widget):
|
||||
def __init__(self, text: str, id: str) -> None:
|
||||
self.text = text
|
||||
|
||||
super().__init__(id=id)
|
||||
self.expand = False
|
||||
|
||||
def render(self) -> str:
|
||||
return self.text
|
||||
|
||||
Reference in New Issue
Block a user