Skip to content

Commit 2fb38c0

Browse files
author
Zerline
committed
Test file small changes.
1 parent 3e63daa commit 2fb38c0

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

tests/test_borders.ipynb

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
"metadata": {},
1616
"outputs": [],
1717
"source": [
18-
"t1 = Text(\"text input\", layout=Layout(width=\"80px\", border=\"1px dashed red\"))\n",
18+
"t1 = Text(\"text input\", layout=Layout(\n",
19+
" width=\"80px\", border=\"1px dashed red\"\n",
20+
"))\n",
1921
"b1 = Button(description=\"button\")\n",
2022
"HBox((t1,b1))"
2123
]
@@ -38,7 +40,9 @@
3840
"outputs": [],
3941
"source": [
4042
"t2 = Text(\"text input\")\n",
41-
"b2 = ToggleButton(description=\"toggle button\", layout=Layout(width=\"200px\", border_left=\"2px solid yellow\"))\n",
43+
"b2 = ToggleButton(description=\"toggle button\", layout=Layout(\n",
44+
" width=\"200px\", border_left=\"2px solid yellow\"\n",
45+
"))\n",
4246
"HBox((t2,b2))"
4347
]
4448
},
@@ -63,6 +67,15 @@
6367
"b1.layout.border = \"1px solid purple\"\n",
6468
"t2.layout.border_right = \"5px double skyblue\""
6569
]
70+
},
71+
{
72+
"cell_type": "code",
73+
"execution_count": null,
74+
"metadata": {},
75+
"outputs": [],
76+
"source": [
77+
"t2.layout.border_right = None"
78+
]
6679
}
6780
],
6881
"metadata": {

0 commit comments

Comments
 (0)