Skip to content

Commit

Permalink
Fixes codicons regression (#2635)
Browse files Browse the repository at this point in the history
  • Loading branch information
softwarenerd authored Apr 3, 2024
1 parent 8a331a4 commit dcfe850
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/vs/base/browser/ui/positronComponents/button/button.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
* Copyright (C) 2024 Posit Software, PBC. All rights reserved.
*--------------------------------------------------------------------------------------------*/

.button {
.positron-button {
border: none;
cursor: pointer;
background-color: transparent;
font-family: unset !important;
}

.button:focus {
.positron-button:focus {
outline: none !important;
}

.button:focus-visible {
.positron-button:focus-visible {
border-radius: 4px;
outline: 1px solid var(--vscode-focusBorder) !important;
}

.button.solid:focus-visible {
.positron-button.solid:focus-visible {
outline-offset: 2px !important;
}
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export const Button = forwardRef<HTMLButtonElement, PropsWithChildren<Props>>((p
<button
ref={ref}
className={positronClassNames(
'button',
'positron-button',
props.className,
{ 'disabled': props.disabled }
)}
Expand Down

0 comments on commit dcfe850

Please sign in to comment.