Skip to content

Commit

Permalink
Improve casing of names of instance groups in Instance Composer (Issue
Browse files Browse the repository at this point in the history
…#6155, PR #6213)

# Description

Improve casing of names of instance groups in Instance Composer
![Screenshot 2025-02-17 at 15 10 40](https://github.com/user-attachments/assets/b3938b67-2ddc-4e6d-874a-250032d8438f)

closes #6155

# Self Check:

Strike through any lines that are not applicable (`~~line~~`) then check the box

- [ ] Attached issue to pull request
- [ ] Changelog entry
- [ ] Code is clear and sufficiently documented
- [ ] Sufficient test cases (reproduces the bug/tests the requested feature)
- [ ] Correct, in line with design
- [ ] End user documentation is included or an issue is created for end-user documentation (add ref to issue here: )
  • Loading branch information
matborowczyk authored and inmantaci committed Feb 18, 2025
1 parent e9e6091 commit 7c28f61
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
6 changes: 6 additions & 0 deletions changelogs/unreleased/6155-casing-composer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
description: Improve casing of names of instance groups in Instance Composer
issue-nr: 6155
change-type: patch
destination-branches: [master, iso8]
sections:
minor-improvement: "{{description}}"
10 changes: 10 additions & 0 deletions src/UI/Components/Diagram/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,16 @@ export const CanvasWrapper = styled.div`
border: 0;
background-color: var(--pf-t--global--background--color--primary--default);
.group > .group-label {
text-transform: none;
color: var(--pf-t--global--text--color--regular);
font-size: var(--pf-t_global_font_size_body_lg);
&::before {
border-top-color: var(--pf-t--global--text--color--regular);
}
}
&.joint-hidden {
visibility: hidden; //note: display: none breaks the stencil-groups
}
Expand Down

0 comments on commit 7c28f61

Please sign in to comment.