Skip to content

[BUG] [alpha] Editor actions toolbar .editor-actions uses padding: 0 8px 0 4px — asymmetric horizontal (4px left vs 8px right) #38215

@pedro91123

Description

@pedro91123

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 rightnot 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 11

Screenshots

Image

Steps to Reproduce

  1. Open at least one editor tab so the tab row and trailing actions (toolbar) are visible.
  2. DevTools → select the .editor-actions container (next to the tabs container).
  3. 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

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workingideIssues related to IDEinvalidThis doesn't seem right

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions