Skip to content
Snippets Groups Projects
Commit 9de619e4 authored by Nathan Hertz's avatar Nathan Hertz Committed by Nathan Hertz
Browse files

Debuttonized the capability step sequence and adjusted the way the font

is displayed slightly and the proportions of the container
parent ad8cbce8
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !396. Comments created here will be created in the context of that merge request.
......@@ -4,7 +4,7 @@
</header>
<div id="definition-parameters-and-versions" class="container-fluid">
<div class="row">
<div id="capability-definition-container" class="col">
<div id="capability-definition-container" class="col-5">
<span id="capability-label">Capability</span>
<app-capability-definition
*ngIf="capability !== undefined"
......@@ -40,7 +40,7 @@
>
</div>
</div>
<div id="parameters-files-container" class="col">
<div id="parameters-files-container" class="col-7">
<span id="parameters-label">Parameters</span>
<app-parameters
id="parameters"
......
<div id="definition-container">
<h5 id="capability-name">{{ capability.name }}</h5>
<h5 id="capability-name"><strong>{{ capability.name.toUpperCase() }}</strong></h5>
<div id="step-sequence">
<div class="container-fluid">
<div
class="row bg-primary rounded rounded-lg mb-1 text-white py-2 align-items-center"
*ngFor="let step of capabilityStepList"
>
<div class="col">{{ step[0].toUpperCase() }} {{ step[1] }}</div>
<div class="col-auto">
<span class="fas fa-play-circle fa-2x"></span>
</div>
</div>
<div id="step-sequence" class="container-fluid">
<div
class="capability-step row rounded rounded-lg mb-1 py-2 align-items-center"
*ngFor="let step of capabilityStepList"
>
<span class="col text-left px-3">{{ step[0].toUpperCase() }} <strong *ngIf="step[1] !== undefined">{{ step[1].toUpperCase() }}</strong></span>
</div>
</div>
</div>
@import "src/variables";
.capability-step {
background-color: $parameters-pill-color;
}
#definition-container {
background-color: white;
border-radius: 10px;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment