I noticed that hovering over a color last night did not open the color picker. I’m not sure when this first happened because I haven’t done anything with CSS in VS Code for at least a week or more. Has anyone else had this problem, and if so, how did you fix it?
I found something in Stack Overflow about disabling PostCSS Language Support. Assuming that is the fix, how would you do that?
Here is my settings.json file:
{
"window.autoDetectColorScheme": true,
"editor.accessibilityPageSize": 26,
"editor.wordWrap": "on",
"debug.console.fontSize": 26,
"workbench.iconTheme": "vscode-icons",
"editor.renderLineHighlight": "gutter",
"prettier.singleQuote": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.tabSize": 2,
"emmet.triggerExpansionOnTab": true,
"liveServer.settings.fullReload": true,
"editor.minimap.enabled": false,
"breadcrumbs.enabled": true,
"editor.renderWhitespace": "none",
"editor.fontSize": 16,
// added this one last night:
"editor.hover.enabled": true,
"editor.hover.delay": 5000,
"editor.quickSuggestionsDelay": 500,
"liveServer.settings.donotShowInfoMsg": true,
"terminal.integrated.cursorBlinking": true,
"diffEditor.renderSideBySide": false,
"html.hover.references": false,
"html.hover.documentation": false,
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb"
},
"liveServer.settings.donotVerifyTags": true,
"editor.acceptSuggestionOnCommitCharacter": false,
"git.autofetch": true,
"files.associations": {
"*.css": "scss"
},
"window.zoomLevel": 1,
"html.format.maxPreserveNewLines": null,
"html.format.wrapAttributes": "auto",
"workbench.colorTheme": "GitHub Dark Default",
"redhat.telemetry.enabled": true,
}