Skip to content

Commit

Permalink
Better selection colour for Browser widget
Browse files Browse the repository at this point in the history
  • Loading branch information
jukofyork committed Nov 19, 2024
1 parent 23f6991 commit c1813bd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions eclipse.plugin.aiassistant/css/main-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
--assistant-bubble-bg-color: #444;
--notification-bubble-bg-color: #225;
--error-bubble-bg-color: #522;
--broswer-selection-bg-color: rgba(96, 96, 96, 0.8); /* Gray with 80% opacity */
--selected-shadow-color: #00f;
--thinking-color: #0c4;
--reflection-color: #c40;
Expand All @@ -26,6 +27,11 @@
--code-block-tab-size: 4; /* To match Eclipse (TODO: add a preference property change listener) */
}

/* Controls the appearance of selected text in the browser widget */
::selection {
background-color: var(--broswer-selection-bg-color);
}

/* Define common styles */
.chat-bubble {
flex-direction: column;
Expand Down

0 comments on commit c1813bd

Please sign in to comment.