mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 06:39:11 +00:00
d618ddc172
- feature: codemirror modules now loaded by default: search.js, comment.js dialog.js, autorefresh.js, searchcursor.js, dialog.css codemirror search & replace is now activated by default. to use this feature now you must only load in fhemweb attribute 'JavaScripts' the codemirror/fhem_codemirror.js file new extraKeys for 'TAB', 'Shift+Tab', 'STRG+Q', 'STRG+UP', and 'STRG+DOWN' are added. codemirror default parameters are now: indentUnit:4, indentWithTabs:false, autoCloseBrackets:false, matchBrackets:true, autofocus:true, theme:"blackboard", lineNumbers:true, autoRefresh:true this can be overwritten with fhemweb attribute 'codemirrorParam' - updated: codemirror version to 5.8 the default codemirror javascript files are now minified git-svn-id: https://svn.fhem.de/fhem/trunk@9668 2b470e98-0d58-463d-a4d8-8e2adae1ed80
33 lines
1.9 KiB
CSS
33 lines
1.9 KiB
CSS
/* Port of TextMate's Blackboard theme */
|
|
|
|
.cm-s-blackboard.CodeMirror { background: #0C1021; color: #F8F8F8; }
|
|
.cm-s-blackboard div.CodeMirror-selected { background: #253B76; }
|
|
.cm-s-blackboard .CodeMirror-line::selection, .cm-s-blackboard .CodeMirror-line > span::selection, .cm-s-blackboard .CodeMirror-line > span > span::selection { background: rgba(37, 59, 118, .99); }
|
|
.cm-s-blackboard .CodeMirror-line::-moz-selection, .cm-s-blackboard .CodeMirror-line > span::-moz-selection, .cm-s-blackboard .CodeMirror-line > span > span::-moz-selection { background: rgba(37, 59, 118, .99); }
|
|
.cm-s-blackboard .CodeMirror-gutters { background: #0C1021; border-right: 0; }
|
|
.cm-s-blackboard .CodeMirror-guttermarker { color: #FBDE2D; }
|
|
.cm-s-blackboard .CodeMirror-guttermarker-subtle { color: #888; }
|
|
.cm-s-blackboard .CodeMirror-linenumber { color: #888; }
|
|
.cm-s-blackboard .CodeMirror-cursor { border-left: 1px solid #A7A7A7; }
|
|
|
|
.cm-s-blackboard .cm-keyword { color: #FBDE2D; }
|
|
.cm-s-blackboard .cm-atom { color: #D8FA3C; }
|
|
.cm-s-blackboard .cm-number { color: #D8FA3C; }
|
|
.cm-s-blackboard .cm-def { color: #8DA6CE; }
|
|
.cm-s-blackboard .cm-variable { color: #FF6400; }
|
|
.cm-s-blackboard .cm-operator { color: #FBDE2D; }
|
|
.cm-s-blackboard .cm-comment { color: #AEAEAE; }
|
|
.cm-s-blackboard .cm-string { color: #61CE3C; }
|
|
.cm-s-blackboard .cm-string-2 { color: #61CE3C; }
|
|
.cm-s-blackboard .cm-meta { color: #D8FA3C; }
|
|
.cm-s-blackboard .cm-builtin { color: #8DA6CE; }
|
|
.cm-s-blackboard .cm-tag { color: #8DA6CE; }
|
|
.cm-s-blackboard .cm-attribute { color: #8DA6CE; }
|
|
.cm-s-blackboard .cm-header { color: #FF6400; }
|
|
.cm-s-blackboard .cm-hr { color: #AEAEAE; }
|
|
.cm-s-blackboard .cm-link { color: #8DA6CE; }
|
|
.cm-s-blackboard .cm-error { background: #9D1E15; color: #F8F8F8; }
|
|
|
|
.cm-s-blackboard .CodeMirror-activeline-background { background: #3C3636; }
|
|
.cm-s-blackboard .CodeMirror-matchingbracket { outline:1px solid grey;color:white !important; }
|