Action in recent sessions view have no padding (fix #280551) (#280886)

This commit is contained in:
Benjamin Pasero
2025-12-03 10:20:20 +01:00
committed by GitHub
parent 2d96f38ce6
commit 1bf8d03009
2 changed files with 11 additions and 10 deletions
@@ -22,7 +22,16 @@
}
}
.monaco-list-row .agent-session-title-toolbar {
position: relative; /* for the absolute positioning of the toolbar below */
width: 22px;
}
.monaco-list-row .agent-session-title-toolbar .monaco-toolbar {
/* this is required because the overal height (including the padding needed for hover feedback) would push down the title otherwise */
position: absolute;
right: 0;
top: 0;
display: none;
}
@@ -31,10 +40,6 @@
display: block;
}
.monaco-list-row .agent-session-title-toolbar .monaco-toolbar .action-label {
padding: 0; /* limit padding top/bottom to preserve line-height per row */
}
.agent-session-item {
display: flex;
flex-direction: row;
@@ -28,11 +28,7 @@
padding: 8px;
.agent-sessions-toolbar {
display: none;
.action-label {
padding: 0; /* limit padding top/bottom to preserve line-height per row */
}
visibility: hidden;
}
}
@@ -46,7 +42,7 @@
}
.agent-sessions-container:hover .agent-sessions-title-container .agent-sessions-toolbar {
display: block;
visibility: visible;
}
.interactive-session {