firefox-scripts
firefox-scripts copied to clipboard
StyloaiX editor does not work correctly in Firefox 122
- The editor's "useful area" is narrower than the window.
- Autocomplete suggestions are not shown.
- Line break separates "!important", isolating the exclamation mark. Some help?
It worked! Thank you very much! It seems to me that the editor separates any word that contains characters like "!", "-" or "." Maybe it's a change from version 122, I don't know. If you find a solution I will greatly appreciate it. Have a merry Christmas!
I found a "solution" for separating words and characters. Actually, it's just a CSS code that minimizes the problem, until the correct solution appears:
@-moz-document url-prefix("chrome://userchromejs/content/styloaix/edit") {
.CodeMirror pre.CodeMirror-line > span > span:is(.cm-keyword, .cm-variable-2, .cm-number)
{
white-space: nowrap
}
}