diff options
author | 2022-09-12 07:26:23 +0200 | |
---|---|---|
committer | 2022-09-12 12:26:23 +0700 | |
commit | 1fc597d73bc75b3658ac593ad09d6cf515e475ef (patch) | |
tree | dbb65525bd4759c4076bfdff8d2c6d7a08362da7 /source/features/git-checkout-pr.tsx | |
parent | ef7885e5c01997bbe4626e119e5ae78efae619f4 (diff) | |
download | refined-github-1fc597d73bc75b3658ac593ad09d6cf515e475ef.tar.gz refined-github-1fc597d73bc75b3658ac593ad09d6cf515e475ef.tar.zst refined-github-1fc597d73bc75b3658ac593ad09d6cf515e475ef.zip |
Meta: Drop deprecated color classes (#5965)
Diffstat (limited to 'source/features/git-checkout-pr.tsx')
-rw-r--r-- | source/features/git-checkout-pr.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/features/git-checkout-pr.tsx b/source/features/git-checkout-pr.tsx index 5e8f174f..c79e219e 100644 --- a/source/features/git-checkout-pr.tsx +++ b/source/features/git-checkout-pr.tsx @@ -48,7 +48,7 @@ function checkoutOption(remote?: string, remoteType?: 'HTTPS' | 'SSH'): JSX.Elem tabindex="0" > <CopyIcon className="js-clipboard-copy-icon m-2"/> - <CheckIcon className="js-clipboard-check-icon color-text-success color-fg-success d-none m-2"/> + <CheckIcon className="js-clipboard-check-icon color-fg-success d-none m-2"/> </clipboard-copy> </div> <pre id={`rgh-checkout-pr-${remoteType!}`} className="mb-2 rgh-linkified-code">{/* `.rgh-linkified-code` is intentionally added to avoid parsing */} @@ -93,7 +93,7 @@ async function handleMenuOpening({delegateTarget: dropdown}: DelegateEvent): Pro const remoteName = getRemoteName(); select('.octicon-terminal', dropdown)!.closest('li.Box-row')!.after( <li className="Box-row p-3 mt-0"> - <span className="d-flex flex-items-center color-text-primary color-fg-default text-bold no-underline"> + <span className="d-flex flex-items-center color-fg-default text-bold no-underline"> <TerminalIcon className="mr-2"/> Checkout with Git </span> @@ -105,7 +105,7 @@ async function handleMenuOpening({delegateTarget: dropdown}: DelegateEvent): Pro checkoutOption(remoteName, 'SSH'), ] : checkoutOption()} </tab-container> - <p className="mb-0 f6 color-text-secondary color-fg-muted"> + <p className="mb-0 f6 color-fg-muted"> Run in your project repository{remoteName && ', pick either one'}. </p> </div> |