This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.addEventListener('DOMContentLoaded', function() { | |
const checkElement = setInterval(() => { | |
const commandDialog = document.querySelector(".quick-input-widget"); | |
if (commandDialog) { | |
// Check if the command palette element is visible for the first time. | |
if (commandDialog.style.display !== "none") { | |
applyBlur(); | |
} | |
observeCommandDialog(commandDialog); | |
clearInterval(checkElement); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ------------ Reset Font Family ------------ */ | |
.mac, | |
.windows, | |
.linux { | |
/* font-family: 'JetBrains Mono', 'MesloLGS NF', 'SF Mono', monospace; */ | |
} | |
/* ------------ Title Bar ------------ */ | |
.monaco-workbench .part.titlebar { | |
/* border-bottom: 1px solid #181C20 !important; */ |