Skip to content

Commit

Permalink
Merge pull request #22262 from yoshi2no/fix/hover-color-inconsistency
Browse files Browse the repository at this point in the history
UI: Custom theme hover-color inconsistency
  • Loading branch information
ndelangen authored Sep 19, 2023
2 parents 08ae741 + b3983c3 commit b2c69ee
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion code/ui/manager/src/components/sidebar/Tree.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export const LeafNodeStyleWrapper = styled.div(({ theme }) => ({
background: 'transparent',
'&:hover, &:focus': {
outline: 'none',
background: theme.background.hoverable,
background: transparentize(0.93, theme.color.secondary),
},
'&[data-selected="true"]': {
color: theme.color.lightest,
Expand Down
2 changes: 1 addition & 1 deletion code/ui/manager/src/components/sidebar/TreeNode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const BranchNode = styled.button<{
fontSize: `${theme.typography.size.s2 - 1}px`,
background: 'transparent',
'&:hover, &:focus': {
background: theme.background.hoverable,
background: transparentize(0.93, theme.color.secondary),
outline: 'none',
},
}));
Expand Down
2 changes: 1 addition & 1 deletion scripts/release/pick-patches.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import program from 'commander';
import chalk from 'chalk';
import ora from 'ora';
import { setOutput } from '@actions/core';
import invariant from 'tiny-invariant';
import { git } from './utils/git-client';
import { getUnpickedPRs } from './utils/github-client';
import invariant from 'tiny-invariant';

program.name('pick-patches').description('Cherry pick patch PRs back to main');

Expand Down
2 changes: 1 addition & 1 deletion scripts/task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { join, resolve } from 'path';
import { prompt } from 'prompts';
import { dedent } from 'ts-dedent';

import invariant from 'tiny-invariant';
import { CODE_DIRECTORY, JUNIT_DIRECTORY, SANDBOX_DIRECTORY } from './utils/constants';
import type { OptionValues } from './utils/options';
import { createOptions, getCommand, getOptionsOrPrompt } from './utils/options';
Expand Down Expand Up @@ -35,7 +36,6 @@ import {
} from '../code/lib/cli/src/sandbox-templates';

import { version } from '../code/package.json';
import invariant from 'tiny-invariant';

const sandboxDir = process.env.SANDBOX_ROOT || SANDBOX_DIRECTORY;

Expand Down

0 comments on commit b2c69ee

Please sign in to comment.