Re-enable a CSS fix for the Monaco Editor's focus behavior (#60803)

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This commit is contained in:
Poff Poffenberger 2020-03-23 14:09:05 -05:00 committed by GitHub
parent 452193fdba
commit 2da5d635bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -25,6 +25,8 @@ import { monaco } from '@kbn/ui-shared-deps/monaco';
import { LIGHT_THEME, DARK_THEME } from './editor_theme';
import './editor.scss';
export interface Props {
/** Width of editor. Defaults to 100%. */
width?: string | number;

View file

@ -1,3 +1,3 @@
.react-monaco-editor-container .monaco-editor .inputarea:focus {
animation: none; // Removes textarea EUI blue underline animation from EUI
animation: none !important; // Removes textarea EUI blue underline animation from EUI
}