mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-14 10:35:11 +00:00
Changing the focus manager at runtime doesn't work as expected, so we work around with a css hack instead.
12 lines
394 B
SCSS
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;
|
|
}
|