Skip to content

Commit 4729341

Browse files
authored
style: Update chat history item styles for light theme (#1628)
1 parent 83d3d23 commit 4729341

2 files changed

Lines changed: 14 additions & 4 deletions

File tree

com.microsoft.copilot.eclipse.ui/css/dark.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,14 @@
137137
background-color: #26282B;
138138
}
139139

140-
/* List Items: default state (chat history, popup menus) */
140+
/* Chat history list items - dark theme */
141141
#chat-history-viewer Composite.chat-history-item,
142-
#chat-history-viewer Composite.chat-history-item *,
142+
#chat-history-viewer Composite.chat-history-item * {
143+
color: #D3D2D2; /* default/hover exit foreground */
144+
background-color: #1E1F22;/* default/hover exit background */
145+
}
146+
147+
/* Dropdown popup default state */
143148
#dropdown-popup,
144149
#dropdown-popup * {
145150
color: #D3D2D2; /* default/hover exit foreground */

com.microsoft.copilot.eclipse.ui/css/light.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,14 @@
137137
background-color: #EFEFEE;
138138
}
139139

140-
/* List Items: default state (chat history, popup menus) */
140+
/* Chat history list items - light theme */
141141
#chat-history-viewer Composite.chat-history-item,
142-
#chat-history-viewer Composite.chat-history-item *,
142+
#chat-history-viewer Composite.chat-history-item * {
143+
color: #000000; /* default/hover exit foreground */
144+
background-color: #F8F8F8;/* default/hover exit background */
145+
}
146+
147+
/* Dropdown popup default state */
143148
#dropdown-popup,
144149
#dropdown-popup * {
145150
color: #000000; /* default/hover exit foreground */

0 commit comments

Comments
 (0)