fix(plugins): styling in the "about" plugin (#4062)
* fix(about): Don't repeat item number. * fix(about): Color entire key sequence. * CHANGELOG: Add MR #4062.
This commit is contained in:
parent
865eb68ad1
commit
ba745cd700
3 changed files with 5 additions and 4 deletions
|
|
@ -45,6 +45,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||||
* fix(plugins): prevent paging plugins from cache at runtime (https://github.com/zellij-org/zellij/pull/4044)
|
* fix(plugins): prevent paging plugins from cache at runtime (https://github.com/zellij-org/zellij/pull/4044)
|
||||||
* fix(ui): add split right/down shortcut hints to the status-bar (https://github.com/zellij-org/zellij/pull/4046)
|
* fix(ui): add split right/down shortcut hints to the status-bar (https://github.com/zellij-org/zellij/pull/4046)
|
||||||
* chore(repo): remove compile warnings (https://github.com/zellij-org/zellij/pull/4026)
|
* chore(repo): remove compile warnings (https://github.com/zellij-org/zellij/pull/4026)
|
||||||
|
* fix(plugins): fix styling in "about" (https://github.com/zellij-org/zellij/pull/4062)
|
||||||
|
|
||||||
## [0.41.2] - 2024-11-19
|
## [0.41.2] - 2024-11-19
|
||||||
* fix(input): keypresses not being identified properly with kitty keyboard protocol in some terminals (https://github.com/zellij-org/zellij/pull/3725)
|
* fix(input): keypresses not being identified properly with kitty keyboard protocol in some terminals (https://github.com/zellij-org/zellij/pull/3725)
|
||||||
|
|
|
||||||
|
|
@ -144,9 +144,9 @@ impl Page {
|
||||||
.color_range(3, 6..=10)
|
.color_range(3, 6..=10)
|
||||||
)),
|
)),
|
||||||
ActiveComponent::new(TextOrCustomRender::Text(
|
ActiveComponent::new(TextOrCustomRender::Text(
|
||||||
Text::new("5. You can always snap back to the built-in swap layouts with Alt <[]>")
|
Text::new("You can always snap back to the built-in swap layouts with Alt <[]>")
|
||||||
.color_range(3, 62..=64)
|
.color_range(3, 59..=61)
|
||||||
.color_range(3, 67..=68)
|
.color_range(3, 64..=65)
|
||||||
)),
|
)),
|
||||||
])
|
])
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -430,7 +430,7 @@ impl Page {
|
||||||
.color_range(0, 34..=36)
|
.color_range(0, 34..=36)
|
||||||
.color_range(2, 40..=45)
|
.color_range(2, 40..=45)
|
||||||
.color_range(0, 50..=52)
|
.color_range(0, 50..=52)
|
||||||
.color_range(2, 56..=60)
|
.color_range(2, 56..=61)
|
||||||
))
|
))
|
||||||
]),
|
]),
|
||||||
ComponentLine::new(vec![
|
ComponentLine::new(vec![
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue