Skip to content

Commit f6d3e50

Browse files
authored
making border radius visible on chat changes summary (microsoft#257808)
1 parent 90fcd05 commit f6d3e50

File tree

1 file changed

+27
-6
lines changed
  • src/vs/workbench/contrib/chat/browser/media

1 file changed

+27
-6
lines changed

src/vs/workbench/contrib/chat/browser/media/chat.css

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1576,7 +1576,7 @@ have to be updated for changes to the rules above, or to support more deeply nes
15761576
}
15771577

15781578
.interactive-session .checkpoint-file-changes-summary .checkpoint-file-changes-summary-header {
1579-
padding: 3px 3px 2px 3px;
1579+
padding: 3px 3px 3px 3px;
15801580
width: 100%;
15811581
display : flex;
15821582
box-sizing: border-box;
@@ -1617,6 +1617,10 @@ have to be updated for changes to the rules above, or to support more deeply nes
16171617
display: flex;
16181618
}
16191619

1620+
.interactive-session .checkpoint-file-changes-summary .chat-summary-list .monaco-scrollable-element {
1621+
border-radius: 4px;
1622+
}
1623+
16201624
.interactive-session .checkpoint-file-changes-summary .insertions {
16211625
color: var(--vscode-chat-linesAddedForeground);
16221626
font-weight: bold;
@@ -1634,7 +1638,11 @@ have to be updated for changes to the rules above, or to support more deeply nes
16341638
display: none;
16351639
}
16361640

1637-
.interactive-session .checkpoint-file-changes-summary,
1641+
.interactive-session .checkpoint-file-changes-summary {
1642+
display: flex;
1643+
flex-direction: column;
1644+
}
1645+
16381646
.interactive-session .chat-used-context {
16391647
display: flex;
16401648
flex-direction: column;
@@ -1676,7 +1684,10 @@ have to be updated for changes to the rules above, or to support more deeply nes
16761684
padding: 8px 12px;
16771685
}
16781686

1679-
.interactive-session .chat-summary-list .monaco-list .monaco-list-row,
1687+
.interactive-session .chat-summary-list .monaco-list .monaco-list-row {
1688+
border-radius: 4px;
1689+
}
1690+
16801691
.interactive-session .chat-used-context-list .monaco-list .monaco-list-row {
16811692
border-radius: 2px;
16821693
}
@@ -1699,17 +1710,27 @@ have to be updated for changes to the rules above, or to support more deeply nes
16991710

17001711
.interactive-session .chat-file-changes-label .monaco-button,
17011712
.interactive-session .chat-used-context-label .monaco-button {
1702-
/* unset Button styles */
1703-
display: inline-flex;
17041713
width: fit-content;
17051714
border: none;
17061715
border-radius: 4px;
17071716
gap: 4px;
1708-
padding: 2px 6px 2px 2px;
17091717
text-align: initial;
17101718
justify-content: initial;
17111719
}
17121720

1721+
.interactive-session .chat-used-context-label .monaco-button {
1722+
/* unset Button styles */
1723+
display: inline-flex;
1724+
}
1725+
1726+
.interactive-session .chat-file-changes-label .monaco-button {
1727+
padding: 2px 2px 2px 2px;
1728+
}
1729+
1730+
.interactive-session .chat-used-context-label .monaco-button {
1731+
padding: 2px 6px 2px 2px;
1732+
}
1733+
17131734
.interactive-session .chat-file-changes-label .monaco-button:hover,
17141735
.interactive-session .chat-used-context-label .monaco-button:hover {
17151736
background-color: var(--vscode-list-hoverBackground);

0 commit comments

Comments
 (0)