Skip to content

Commit

Permalink
make more like material ui wants it
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Sep 28, 2023
1 parent f99d5f2 commit 7ea8ac5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions solara/lab/components/confirmation_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ def on_v_model(value):
max_width=max_width,
):
with solara.v.Card():
solara.v.Toolbar(color="primary", dark=True, children=[title])
with solara.v.CardText(class_="pa-4"):
solara.v.CardTitle(children=[title])
with solara.v.CardText(style_="min-height: 64px"):
if isinstance(content, str):
solara.Text(content)
else:
Expand All @@ -103,7 +103,7 @@ def on_v_model(value):
solara.display(*children)
with solara.v.CardActions(class_="justify-end"):
if isinstance(cancel, str):
solara.Button(label=cancel, on_click=perform_cancel, outlined=True, color="primary")
solara.Button(label=cancel, on_click=perform_cancel, text=True, classes=["grey--text", "text--darken-2"])
else:
# the user may have passed in on_click already
user_on_click_cancel = cancel.kwargs.get("on_click")
Expand All @@ -113,7 +113,7 @@ def on_v_model(value):

# similar as cancel
if isinstance(ok, str):
solara.Button(label=ok, on_click=perform_ok, color="primary")
solara.Button(label=ok, on_click=perform_ok, dark=True, color="primary", elevation=0)
else:
user_on_click_ok = ok.kwargs.get("on_click")
ok.kwargs = {**ok.kwargs, "on_click": perform_ok}
Expand Down

0 comments on commit 7ea8ac5

Please sign in to comment.