Skip to content

Commit

Permalink
Add select colours to ts-dropdown (#4448)
Browse files Browse the repository at this point in the history
* Add select colours to ts-dropdown

* Ensure readable colour
  • Loading branch information
RubenRBS authored and mattgodbolt committed Jan 24, 2023
1 parent f78d885 commit 43794de
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 6 additions & 1 deletion static/styles/themes/dark-theme.scss
Expand Up @@ -583,7 +583,12 @@ textarea.form-control {
}

.active {
background-color: #68688e;
background-color: #68688e !important;
}

.selected {
background-color: #21525f !important;
color: #dddddd !important;
}

.optgroup-header {
Expand Down
4 changes: 4 additions & 0 deletions static/styles/themes/default-theme.scss
Expand Up @@ -366,6 +366,10 @@ div.argmenuitem span.argdescription {
background-color: #f6f6f6;
}

.ts-dropdown .selected {
background-color: #dae0e5;
}

.currentCursorPosition {
color: #15a3b9;
background-color: darken(rgba(248, 249, 250, 0.85), 3%);
Expand Down

0 comments on commit 43794de

Please sign in to comment.