From cdbefe79721ed25f3df41d66133a79fd6dc9d4aa Mon Sep 17 00:00:00 2001 From: qbit982 Date: Wed, 22 Oct 2025 12:16:20 +0300 Subject: [PATCH 1/3] feat(ChangelogDialog): increase item meta width --- src/components/ChangelogDialog/components/Item/Item.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ChangelogDialog/components/Item/Item.scss b/src/components/ChangelogDialog/components/Item/Item.scss index 8fb0b1cc..d666c8cb 100644 --- a/src/components/ChangelogDialog/components/Item/Item.scss +++ b/src/components/ChangelogDialog/components/Item/Item.scss @@ -2,7 +2,7 @@ @use '../../../variables'; $block: '.#{variables.$ns}changelog-dialog-item'; -$metaWidth: 80px; +$metaWidth: 90px; #{$block} { display: flex; From 1fb9ad2bc4eea343a27e2ec45ee8e0111d36279d Mon Sep 17 00:00:00 2001 From: qbit982 Date: Wed, 22 Oct 2025 14:22:27 +0300 Subject: [PATCH 2/3] feat(ChangelogDialog): add css-token to change meta width --- src/components/ChangelogDialog/ChangelogDialog.scss | 1 + src/components/ChangelogDialog/components/Item/Item.scss | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ChangelogDialog/ChangelogDialog.scss b/src/components/ChangelogDialog/ChangelogDialog.scss index ee87fffc..7e807116 100644 --- a/src/components/ChangelogDialog/ChangelogDialog.scss +++ b/src/components/ChangelogDialog/ChangelogDialog.scss @@ -6,6 +6,7 @@ $maxItemsHeight: 70vh; #{$block} { width: $width; + --gc-changelog-dialog-meta-width: 80px; &__full-list-link-icon { margin-inline-start: var(--g-spacing-1); diff --git a/src/components/ChangelogDialog/components/Item/Item.scss b/src/components/ChangelogDialog/components/Item/Item.scss index d666c8cb..5ced6537 100644 --- a/src/components/ChangelogDialog/components/Item/Item.scss +++ b/src/components/ChangelogDialog/components/Item/Item.scss @@ -2,13 +2,12 @@ @use '../../../variables'; $block: '.#{variables.$ns}changelog-dialog-item'; -$metaWidth: 90px; #{$block} { display: flex; &__meta { - width: $metaWidth; + width: var(--gc-changelog-dialog-meta-width); } &__date { From 2e214058baf81076d5c17fd931f7a14d99e6749e Mon Sep 17 00:00:00 2001 From: qbit982 Date: Wed, 22 Oct 2025 14:23:29 +0300 Subject: [PATCH 3/3] feat(ChangelogDialog): add css-token to change meta and dialog width --- src/components/ChangelogDialog/ChangelogDialog.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/ChangelogDialog/ChangelogDialog.scss b/src/components/ChangelogDialog/ChangelogDialog.scss index 7e807116..913bea4d 100644 --- a/src/components/ChangelogDialog/ChangelogDialog.scss +++ b/src/components/ChangelogDialog/ChangelogDialog.scss @@ -1,13 +1,14 @@ @use '../variables'; $block: '.#{variables.$ns}changelog-dialog'; -$width: 732px; $maxItemsHeight: 70vh; #{$block} { - width: $width; + --gc-changelog-dialog-width: 732px; --gc-changelog-dialog-meta-width: 80px; + width: var(--gc-changelog-dialog-width); + &__full-list-link-icon { margin-inline-start: var(--g-spacing-1); vertical-align: middle;