Skip to content

Commit

Permalink
beer-garden#325 - consdense steps, add toasts
Browse files Browse the repository at this point in the history
  • Loading branch information
obr42 committed Apr 14, 2023
1 parent 39abede commit f24c4e2
Show file tree
Hide file tree
Showing 4 changed files with 75 additions and 7 deletions.
2 changes: 1 addition & 1 deletion functionary/ui/scss/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ $font-sizes: (
// @import "./progress";
@import "./list-group";
@import "./close";
// @import "./toasts";
@import "./toasts";
@import "./modal";
// @import "./tooltip";
@import "./popover";
Expand Down
67 changes: 67 additions & 0 deletions functionary/ui/static/css/custom_bootstrap.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion functionary/ui/static/css/custom_bootstrap.css.map

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions functionary/ui/templates/core/workflow_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,16 @@ <h2 class="mt-2 mb-1">
{% endif %}
{% endif %}
{% if workflow.first_step %}
<div>
<h3 class="fw-semibold">
<div class="mt-2">
<span class="fs-4 fw-bold me-2">
<i class="fa fa-stairs fa-sm fa-fw me-1"></i>Steps
</h3>
</span>
<ul id="envs" class="list-group list-group-flush">
{% for step in workflow.ordered_steps %}
<li class="list-group-item">
<p class="fw-bold mb-0">{{ step.name }}</p>
<p class="ms-4 mb-0">{{ step.function }}</p>
<p class="mb-0">
{{ step.name }}<span class="text-muted ms-3">:<span class="ms-3">{{ step.function }}</span></span>
</p>
</li>
{% endfor %}
</ul>
Expand Down

0 comments on commit f24c4e2

Please sign in to comment.