fix: broken CSS in the bottom panel fixed

This commit is contained in:
2026-07-18 09:05:31 +02:00
parent 23f05b72f7
commit c77450d497
7 changed files with 13 additions and 33 deletions

View File

@@ -49,8 +49,7 @@
border-radius: 3px;
}
.editor-toolbar-button:hover,
.panel-tab:hover {
.editor-toolbar-button:hover {
background: var(--vscode-toolbar-hoverBackground);
}

View File

@@ -8,14 +8,11 @@
display: none;
}
.panel-tabs {
display: flex;
gap: 8px;
}
.panel-tabs {
display: flex;
gap: 2px;
align-items: stretch;
height: 100%;
}
.panel-tab {
@@ -246,6 +243,12 @@
background-color: var(--vscode-sideBar-background);
}
/* .panel-entry (shell.css) forces flex-direction: column and, being unlayered,
beats the Tailwind row utilities on this button — force the row here. */
.task-group-toggle {
flex-direction: row;
}
.output-entry {
padding: 8px;
border-bottom: none;

View File

@@ -402,24 +402,6 @@
border-bottom: 1px solid var(--vscode-panel-border);
}
.panel-tabs {
display: flex;
align-items: stretch;
height: 100%;
}
.panel-tab {
border: none;
background: transparent;
color: var(--vscode-descriptionForeground);
padding: 0 12px;
cursor: pointer;
}
.panel-tab.active {
color: var(--vscode-tab-activeForeground);
}
.panel-close {
background: transparent;
border: none;
@@ -778,11 +760,6 @@
padding-left: 18px;
}
.editor-toolbar {
display: flex;
gap: 10px;
}
.editor-meta {
display: flex;
flex-direction: column;