-
Notifications
You must be signed in to change notification settings - Fork 27
[BUG] [alpha] Editor actions toolbar .editor-actions uses padding: 0 8px 0 4px — asymmetric horizontal (4px left vs 8px right) #38215
Copy link
Copy link
Open
Labels
bugSomething isn't workingSomething isn't workingideIssues related to IDEIssues related to IDEinvalidThis doesn't seem rightThis doesn't seem right
Description
Project
ide
Description
Plain language
The editor group combines the tab strip with a trailing actions strip (split editor, overflow menu, etc.). tabs.css styles .editor-actions with padding: 0 8px 0 4px (top, right, bottom, left). Computed shows 4px left and 8px right — not mirrored. Triagers often focus on .tabs-container padding in the same file and never open this block (“Editor Actions Toolbar”), so the asymmetry is easy to overlook.
Technical detail
/* ============================================================================
* Editor Actions Toolbar
* ============================================================================ */
.editor-actions {
cursor: default;
flex: initial;
padding: 0 8px 0 4px;
height: var(--editor-group-tab-height);
display: flex;
align-items: center;
}Error Message
Debug Logs
System Information
OS: Windows 11Screenshots
Steps to Reproduce
- Open at least one editor tab so the tab row and trailing actions (toolbar) are visible.
- DevTools → select the
.editor-actionscontainer (next to the tabs container). - Computed: padding-left 4px, padding-right 8px, padding-top / padding-bottom 0px.
Expected Behavior
Symmetric horizontal padding or documented reason (e.g. alignment with scroll buttons).
Actual Behavior
Unequal left/right padding in the shorthand.
Additional Context
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingideIssues related to IDEIssues related to IDEinvalidThis doesn't seem rightThis doesn't seem right