Files
pybricks-code/src/utils/tree-renderer.scss
T
David Lechner 626dc82b6b tree-renderer: better workaround for focus manager
Changing the focus manager at runtime doesn't work as expected, so we
work around with a css hack instead.
2022-04-05 17:31:47 -05:00

12 lines
394 B
SCSS

// SPDX-License-Identifier: MIT
// Copyright (c) 2022 The Pybricks Authors
@import '../variables.scss';
// HACK: work around https://github.com/palantir/blueprint/issues/5229
// TODO: this can be removed when https://github.com/palantir/blueprint/pull/5235 is merged and released
.#{$ns}-focus-disabled .pb-focus-manager-ignore :focus {
outline: $pt-outline-color auto 2px !important;
}