-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 10.9.1
- Loading branch information
Showing
24 changed files
with
271 additions
and
71 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
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,26 +1,29 @@ | ||
# Changelog | ||
|
||
## \[10.9.0\] - 24.11.2023 | ||
## \[10.9.1\] - 24.01.2024 | ||
|
||
## Component changes | ||
|
||
### Non breaking UI changes | ||
|
||
- Typography | ||
- PayEx - non-breaking UI updates | ||
- color variables updates (brand-secondary hover, btn-secondary-hover, disabled, ...) | ||
- input fields colors (for states disabled & success) | ||
- badge colors | ||
- skip-link font | ||
- link | ||
- hover state colors on bright mode | ||
- hover state for inline links | ||
- code tags secondary & tertiary background colors | ||
- | ||
|
||
- update typography values (line-heights) | ||
- add text-wrap balance for headings & pretty for paragraphs (progressive enhancement) | ||
### Bugfix | ||
|
||
- Colors ( & colors utilities): | ||
|
||
- some colors variables got updated | ||
- removed the possibility to combine text-color utility classes WITH `.text-muted` to decrease their opacity | ||
- `.text-muted` class still exist, but it will always mean a full opacity color | ||
- Tooltip | ||
- fix position tooltip (it got detached from its parent element a few versions back) | ||
|
||
## Maintenance | ||
|
||
- npm packages dependencies upgrades | ||
|
||
## Design System website | ||
|
||
- Update the Identity/Colors page for SwedbankPay side |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -33,7 +33,7 @@ | |
} | ||
|
||
&:active { | ||
border: 1px solid @brand-secondary-info-1; | ||
border: 1px solid var(--brand-primary); | ||
} | ||
} | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@import "../code-tags.less"; | ||
|
||
.tag { | ||
&.tag-secondary { | ||
background-color: var(--brand-bg-4); | ||
} | ||
|
||
&.tag-tertiary { | ||
background-color: var(--light-gray); | ||
} | ||
} |
Oops, something went wrong.