fix: одинаковая высота карточек сессий в сетке#52
Merged
vakovalskii merged 1 commit intovakovalskii:mainfrom Apr 7, 2026
Merged
fix: одинаковая высота карточек сессий в сетке#52vakovalskii merged 1 commit intovakovalskii:mainfrom
vakovalskii merged 1 commit intovakovalskii:mainfrom
Conversation
vakovalskii
added a commit
that referenced
this pull request
Apr 7, 2026
…, #59) Bug fixes: - PR #59 (@akolotov): Fix Codex session message count in grid/list views - PR #54 (@NovakPAai): Remove claude-ext sessions from Cursor filter - PR #52 (@NovakPAai): Equal-height session cards in grid view - PR #44 (@izzzzzi): Use tab separator for sqlite3 queries (fixes pipes in titles) Features: - PR #56 (@NovakPAai): Subscription service/plan selector with auto-price in Analytics - PR #58 (@NovakPAai): Git-repo based project grouping with session list in Projects view Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
vakovalskii
added a commit
that referenced
this pull request
Apr 7, 2026
…, #59) (#63) Bug fixes: - PR #59 (@akolotov): Fix Codex session message count in grid/list views - PR #54 (@NovakPAai): Remove claude-ext sessions from Cursor filter - PR #52 (@NovakPAai): Equal-height session cards in grid view - PR #44 (@izzzzzi): Use tab separator for sqlite3 queries (fixes pipes in titles) Features: - PR #56 (@NovakPAai): Subscription service/plan selector with auto-price in Analytics - PR #58 (@NovakPAai): Git-repo based project grouping with session list in Projects view Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Закрывает #51
Что изменено
Файл:
src/frontend/styles.css— 3 правки, +4 строки.card-live-wrapdisplay:flex; flex-direction:column.card-live-wrap > .cardflex:1.card-body-webkit-line-clamp:3+overflow:hiddenПочему
CSS Grid по умолчанию растягивает все ячейки строки до одинаковой высоты (
align-items:stretch). Для обычных.cardэто работает автоматически — они прямые дети грида. Но LIVE/WAITING сессии обёрнуты в.card-live-wrap(нужен для анимированной conic-gradient рамки), и безdisplay:flexна обёртке вложенная.cardне наследует растянутую высоту — отсюда кривота.Ограничение строк через
line-clampвыравнивает высоту строк сетки, убирая разброс из-за длины описания.Эффект
До: карточки в одной строке разной высоты, LIVE/WAITING-карточки короче соседних.
После: все карточки в строке одинаковой высоты, текст обрезан на 3 строках с многоточием.
Как проверить
🤖 Generated with Claude Code