Skip to content

Commit

Permalink
fix: some UI elements missing from editor UI
Browse files Browse the repository at this point in the history
Fixes #4582
  • Loading branch information
starpit committed May 14, 2020
1 parent 663a972 commit 797f527
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/webpack/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -423,10 +423,15 @@ module.exports = {
},

{
test: /\.(ttf|eot)$/i,
test: /\.(eot)$/i,
use: 'ignore-loader'
},

{
test: /\.(ttf)$/i,
use: 'file-loader'
},

//
// typescript exclusion rules
{ test: /\/node_modules\/typescript\//, use: 'ignore-loader' },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,7 @@
[kui-theme-style] .monaco-editor .cursor {
background-color: var(--color-support-01);
}

[kui-theme-style] .monaco-editor .folded-background {
background-color: var(--color-table-border3);
}

0 comments on commit 797f527

Please sign in to comment.