iocave / customize-ui

UI Customization plugin for vscode
MIT License
523 stars 36 forks source link

Tabs do not resize correctly on zoom. #137

Open DanielFitzsimmons opened 2 years ago

DanielFitzsimmons commented 2 years ago

Tabs do not resize correctly on zoom. https://www.icloud.com/iclouddrive/04admHCHbksiVcFXJCe7UTZ_Q#tabs

jdmansour commented 2 years ago

The issue seems to be the following code in customize-ui.css:

body.inline-title-bar .monaco-workbench .part.editor>.content .editor-group-container>.title .tabs-container,
body.inline-title-bar .monaco-workbench .part.editor>.content .editor-group-container>.title .tabs-container>.tab,
body.inline-title-bar .monaco-workbench .part.editor>.content .editor-group-container>.title .editor-actions {
    height: var(--traffic-lights-height) !important;
    line-height: var(--traffic-lights-height) !important;
}

If you comment it out with the inspector, the tabs resize properly. They don't align anymore with the window controls, but that doesn't bother me.