Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
workspaces
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ssa
workspaces
Merge requests
!396
WS-561: Capability definition UI simplification
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
WS-561: Capability definition UI simplification
WS-461-capability-step-sequence-overhaul
into
main
Overview
0
Commits
4
Pipelines
4
Changes
3
Merged
Nathan Hertz
requested to merge
WS-461-capability-step-sequence-overhaul
into
main
3 years ago
Overview
0
Commits
4
Pipelines
4
Changes
3
Expand
Things done in the MR
Removed icons from the capability step sequence and adjusted the way the font is displayed slightly and the proportions
Updated capability definition to be more in line with the design of the other components on the page and to reduce confusion
Removed icons from status badges
Screenshots
Old design
New design
Tickets completed by this MR:
WS-461
Edited
3 years ago
by
Nathan Hertz
0
0
Merge request reports
Viewing commit
c80e3297
Show latest version
3 files
+
15
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
c80e3297
Updated capability definition to be more in line with the design of the
· c80e3297
Nathan Hertz
authored
3 years ago
other components on the page and to reduce confusion
apps/web/src/app/workspaces/components/capability-request/components/capability-definition/capability-definition.component.html
+
10
−
5
Options
<div
id=
"definition-container"
>
<h5
id=
"capability-name"
><strong>
{{ capability.name.toUpperCase() }}
</strong></h5>
<div
id=
"definition-container"
class=
"container-fluid rounded-top rounded-3 py-2"
>
<!--
<h5 id="capability-name"><strong>{{ capability.name.toUpperCase() }}</strong></h5>
-->
<div
id=
"step-sequence"
class=
"container-fluid"
>
<div
id=
"step-sequence"
>
<div
class=
"capability-step row rounded rounded-lg m
b
-1 py-2 align-items-center"
class=
"capability-step row rounded rounded-lg m
y-2 mx
-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>
<span
class=
"col text-left px-3"
>
{{ step[0].toUpperCase() }}
<strong
class=
"pl-2"
*ngIf=
"step[1] !== undefined"
>
{{
step[1].toUpperCase()
}}
</strong></span
>
</div>
</div>
</div>
Loading