> Version 0.6 brings DashMachine one big step forward to being a finished product by adding a gui to edit the various settings in the config.ini. **Changelog** - improvements to /home including 'pinned' cards, multi-select tag filtering, 'action providers' allowing you to do web searches from the searchbar - rebuilt sidenav with list view, mirroring filter/search/collapse state of the homepage - /settings and /home now on same route - dynamic reloading of settings (no more page reloads) - dedicated config.ini editor slide-out - settings editor slide-out - card editor slide-out - better access group control - dedicated documentation pages - improved documentation - new system for automatically generating documentation for platforms - ability to load custom platforms - added an 'on_starup' method for platforms allowing for registering api routes. (example coming soon)
42 lines
2.1 KiB
CSS
42 lines
2.1 KiB
CSS
/* Based on Sublime Text's Monokai theme */
|
|
|
|
.cm-s-monokai.CodeMirror { background: #272822; color: #f8f8f2; }
|
|
.cm-s-monokai div.CodeMirror-selected { background: #49483E; }
|
|
.cm-s-monokai .CodeMirror-line::selection, .cm-s-monokai .CodeMirror-line > span::selection, .cm-s-monokai .CodeMirror-line > span > span::selection { background: rgba(73, 72, 62, .99); }
|
|
.cm-s-monokai .CodeMirror-line::-moz-selection, .cm-s-monokai .CodeMirror-line > span::-moz-selection, .cm-s-monokai .CodeMirror-line > span > span::-moz-selection { background: rgba(73, 72, 62, .99); }
|
|
.cm-s-monokai .CodeMirror-gutters { background: #272822; border-right: 0px; }
|
|
.cm-s-monokai .CodeMirror-guttermarker { color: white; }
|
|
.cm-s-monokai .CodeMirror-guttermarker-subtle { color: #d0d0d0; }
|
|
.cm-s-monokai .CodeMirror-linenumber { color: #d0d0d0; }
|
|
.cm-s-monokai .CodeMirror-cursor { border-left: 1px solid #f8f8f0; }
|
|
|
|
.cm-s-monokai span.cm-comment { color: #75715e; }
|
|
.cm-s-monokai span.cm-atom { color: #ae81ff; }
|
|
.cm-s-monokai span.cm-number { color: #ae81ff; }
|
|
|
|
.cm-s-monokai span.cm-comment.cm-attribute { color: #97b757; }
|
|
.cm-s-monokai span.cm-comment.cm-def { color: #bc9262; }
|
|
.cm-s-monokai span.cm-comment.cm-tag { color: #bc6283; }
|
|
.cm-s-monokai span.cm-comment.cm-type { color: #5998a6; }
|
|
|
|
.cm-s-monokai span.cm-property, .cm-s-monokai span.cm-attribute { color: #a6e22e; }
|
|
.cm-s-monokai span.cm-keyword { color: #f92672; }
|
|
.cm-s-monokai span.cm-builtin { color: #66d9ef; }
|
|
.cm-s-monokai span.cm-string { color: #e6db74; }
|
|
|
|
.cm-s-monokai span.cm-variable { color: #f8f8f2; }
|
|
.cm-s-monokai span.cm-variable-2 { color: #9effff; }
|
|
.cm-s-monokai span.cm-variable-3, .cm-s-monokai span.cm-type { color: #66d9ef; }
|
|
.cm-s-monokai span.cm-def { color: #fd971f; }
|
|
.cm-s-monokai span.cm-bracket { color: #f8f8f2; }
|
|
.cm-s-monokai span.cm-tag { color: #f92672; }
|
|
.cm-s-monokai span.cm-header { color: #ae81ff; }
|
|
.cm-s-monokai span.cm-link { color: #ae81ff; }
|
|
.cm-s-monokai span.cm-error { background: #f92672; color: #f8f8f0; }
|
|
|
|
.cm-s-monokai .CodeMirror-activeline-background { background: #373831; }
|
|
.cm-s-monokai .CodeMirror-matchingbracket {
|
|
text-decoration: underline;
|
|
color: white !important;
|
|
}
|