Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
INT-2372 Fix the selection color for light theme (#851)
Browse files Browse the repository at this point in the history
  • Loading branch information
hbjORbj authored Jan 4, 2024
1 parent b1f0371 commit 4e61628
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,12 @@ const Codemod = ({
<span className={cn('codicon', 'codicon-verified')} />
)}
</IntuitaPopover>
<span className={styles.labelContainer}>
<span
className={cn(
styles.labelContainer,
focused && styles.focused,
)}
>
<span
className={styles.label}
style={getLabelStyle(areButtonsVisible, screenWidth)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
align-items: center;
}

.labelContainer.focused {
color: var(--vscode-list-activeSelectionForeground);
}

.directorySelector {
display: flex;
}
Expand All @@ -69,6 +73,7 @@
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
color: inherit;
}

.codemodRoot {
Expand Down
1 change: 1 addition & 0 deletions intuita-webview/src/codemodList/TreeView/style.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
margin-left: 3px;
display: flex;
align-items: center;
color: inherit;
}

.active {
Expand Down

0 comments on commit 4e61628

Please sign in to comment.