feat: improve UI animations and tab behavior#2679
Open
m11tya wants to merge 1 commit intominbrowser:masterfrom
Open
feat: improve UI animations and tab behavior#2679m11tya wants to merge 1 commit intominbrowser:masterfrom
m11tya wants to merge 1 commit intominbrowser:masterfrom
Conversation
m11tya
commented
Feb 15, 2026
- Fix scrollbar colors in dark mode (darker thumb)
- Improve tab sizing: 1.1x for 2-4 tabs, 1.6x for 5+ tabs
- Add trackpad scroll transform animation support
- Fix scrollbar colors in dark mode (darker thumb) - Improve tab sizing: 1.1x for 2-4 tabs, 1.6x for 5+ tabs - Add trackpad scroll transform animation support
PalmerAL
reviewed
Feb 19, 2026
| } | ||
| .dark-theme .has-thin-scrollbar::-webkit-scrollbar-track { | ||
| background-color: rgba(255, 255, 255, 0.25); | ||
| background-color: rgba(0, 0, 0, 0.3); |
Collaborator
| } | ||
| .tab-item.active { | ||
| min-width: 168px; | ||
| flex: 1.1; |
Collaborator
There was a problem hiding this comment.
Can you remove the flex rule here? Let's apply the growing/shrinking effect only when there are many tabs open.
| min-width: 220px; | ||
| } | ||
| /* When 5 or more tabs are open, make active tab grow more */ | ||
| .tab-item:first-child:nth-last-child(n+5).active, |
Collaborator
There was a problem hiding this comment.
You can use .compact-tabs .tab-item.active. That class is set from JS and also considers the window width to determine whether the tabs will be small.
| </div> | ||
| </div> | ||
| <div id="task-area"></div> | ||
| <div id="task-area" class="has-thin-scrollbar"></div> |
Collaborator
There was a problem hiding this comment.
The task list has plenty of space for a native scrollbar, so I think we should continue doing that.
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.
