Skip to content

feat: improve UI animations and tab behavior#2679

Open
m11tya wants to merge 1 commit intominbrowser:masterfrom
m11tya:ui-improvements-feb2026
Open

feat: improve UI animations and tab behavior#2679
m11tya wants to merge 1 commit intominbrowser:masterfrom
m11tya:ui-improvements-feb2026

Conversation

@m11tya
Copy link

@m11tya 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
}
.dark-theme .has-thin-scrollbar::-webkit-scrollbar-track {
background-color: rgba(255, 255, 255, 0.25);
background-color: rgba(0, 0, 0, 0.3);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't look very good against a dark-gray background; let's leave the background as-is:

Image

}
.tab-item.active {
min-width: 168px;
flex: 1.1;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The task list has plenty of space for a native scrollbar, so I think we should continue doing that.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Everything will be ready today

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants