Merge remote-tracking branch 'origin/develop' into shigusegubu-themes3

This commit is contained in:
Henry Jameson 2026-08-05 20:11:18 +03:00
commit a73bf0bc5b
3 changed files with 10 additions and 0 deletions

1
changelog.d/cjk.fix Normal file
View file

@ -0,0 +1 @@
fix pinned indicator looking wrong on CJK locales

View file

@ -119,6 +119,7 @@
display: flex; display: flex;
flex-shrink: 0; flex-shrink: 0;
align-self: baseline; align-self: baseline;
word-break: keep-all;
.button-unstyled { .button-unstyled {
padding: 0.2em; padding: 0.2em;

View file

@ -148,6 +148,14 @@
background-image: background-image:
linear-gradient(to bottom, var(--background), var(--background)), linear-gradient(to bottom, var(--background), var(--background)),
linear-gradient(to bottom, var(--__panel-background), var(--__panel-background)); linear-gradient(to bottom, var(--__panel-background), var(--__panel-background));
overflow: hidden;
text-overflow: ellipsis;
.title {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
--_shadow: var(--shadow); --_shadow: var(--shadow);