Skip to content

Commit

Permalink
draw background color on URL bar in Viewer pane (#3578)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcphers authored Jun 20, 2024
1 parent 123108f commit 1467820
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ bar to fill the center of the toolbar.

.preview-action-bar .url-bar {
border: 1px solid var(--vscode-input-border);
background-color: var(--vscode-input-background);
border-radius: 4px;
margin-left: 10px;
padding-left: 10px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export const ActionBars = (props: PropsWithChildren<ActionBarsProps>) => {
<ActionBarRegion location='center'>
<form onSubmit={navigateToHandler}>
<input
className='url-bar'
className='text-input url-bar'
aria-label={currentUrl}
name={kUrlBarInputName}
type='text'
Expand Down

0 comments on commit 1467820

Please sign in to comment.