-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workspace control buttons and align text style
New Pause, Resume, and Step buttons have been added to the Wolder Interactive Web project for workspace control. The text in the 'main' selector of MainLayout.razor.css was aligned to the center. Workflow event handling improvements were also made in the Web and Core projects.
- Loading branch information
Showing
8 changed files
with
30 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
@page "/" | ||
@using Wolder.Interactive.Web.Services | ||
|
||
@inject WorkspaceStateManager WorkspaceStateManager; | ||
|
||
@rendermode InteractiveServer | ||
|
||
<h3>Wolder Interactive</h3> | ||
|
||
<div> | ||
<button @onclick="WorkspaceStateManager.Pause">Pause</button> | ||
<button @onclick="WorkspaceStateManager.Resume">Resume</button> | ||
<button @onclick="WorkspaceStateManager.Step">Step</button> | ||
</div> | ||
|
||
@code { | ||
|
||
} |
1 change: 1 addition & 0 deletions
1
src/Wolder.Interactive.Web/Components/Layout/MainLayout.razor.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
| ||
main { | ||
font-family: monospace; | ||
text-align: center; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters