Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion react-common/styles/react-common-variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* Checkboxes *
****************************************************/

@checkboxFocusOutline: var(--pxt-neutral-stencil1) solid 1px;
@checkboxFocusOutline: var(--pxt-focus-border) solid 3px;

/****************************************************
* EditorToggle *
Expand Down
1 change: 1 addition & 0 deletions webapp/src/extensionsBrowser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,7 @@ export const ExtensionsBrowser = (props: ExtensionsProps) => {
<Input
placeholder={lf("Search or enter project URL...")}
ariaLabel={lf("Search or enter project URL...")}
iconTitle={lf("Search")}
onEnterKey={onSearchBarChange}
onIconClick={onSearchBarChange}
preserveValueOnBlur={true}
Expand Down
6 changes: 4 additions & 2 deletions webapp/src/pxtjson.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,10 @@ export class Editor extends srceditor.Editor {
this.isSaving = false;
this.changeMade = true;
// switch to previous coding experience
if (!stayInEditor) this.parent.openPreviousEditor();
core.resetFocus();
if (!stayInEditor) {
this.parent.openPreviousEditor();
core.resetFocus();
}
}

protected async saveConfigContentAsync() {
Expand Down
Loading