> 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)
41 lines
2.0 KiB
CSS
41 lines
2.0 KiB
CSS
/*
|
|
|
|
Name: dracula
|
|
Author: Michael Kaminsky (http://github.com/mkaminsky11)
|
|
|
|
Original dracula color scheme by Zeno Rocha (https://github.com/zenorocha/dracula-theme)
|
|
|
|
*/
|
|
|
|
|
|
.cm-s-dracula.CodeMirror, .cm-s-dracula .CodeMirror-gutters {
|
|
background-color: #282a36 !important;
|
|
color: #f8f8f2 !important;
|
|
border: none;
|
|
}
|
|
.cm-s-dracula .CodeMirror-gutters { color: #282a36; }
|
|
.cm-s-dracula .CodeMirror-cursor { border-left: solid thin #f8f8f0; }
|
|
.cm-s-dracula .CodeMirror-linenumber { color: #6D8A88; }
|
|
.cm-s-dracula .CodeMirror-selected { background: rgba(255, 255, 255, 0.10); }
|
|
.cm-s-dracula .CodeMirror-line::selection, .cm-s-dracula .CodeMirror-line > span::selection, .cm-s-dracula .CodeMirror-line > span > span::selection { background: rgba(255, 255, 255, 0.10); }
|
|
.cm-s-dracula .CodeMirror-line::-moz-selection, .cm-s-dracula .CodeMirror-line > span::-moz-selection, .cm-s-dracula .CodeMirror-line > span > span::-moz-selection { background: rgba(255, 255, 255, 0.10); }
|
|
.cm-s-dracula span.cm-comment { color: #6272a4; }
|
|
.cm-s-dracula span.cm-string, .cm-s-dracula span.cm-string-2 { color: #f1fa8c; }
|
|
.cm-s-dracula span.cm-number { color: #bd93f9; }
|
|
.cm-s-dracula span.cm-variable { color: #50fa7b; }
|
|
.cm-s-dracula span.cm-variable-2 { color: white; }
|
|
.cm-s-dracula span.cm-def { color: #50fa7b; }
|
|
.cm-s-dracula span.cm-operator { color: #ff79c6; }
|
|
.cm-s-dracula span.cm-keyword { color: #ff79c6; }
|
|
.cm-s-dracula span.cm-atom { color: #bd93f9; }
|
|
.cm-s-dracula span.cm-meta { color: #f8f8f2; }
|
|
.cm-s-dracula span.cm-tag { color: #ff79c6; }
|
|
.cm-s-dracula span.cm-attribute { color: #50fa7b; }
|
|
.cm-s-dracula span.cm-qualifier { color: #50fa7b; }
|
|
.cm-s-dracula span.cm-property { color: #66d9ef; }
|
|
.cm-s-dracula span.cm-builtin { color: #50fa7b; }
|
|
.cm-s-dracula span.cm-variable-3, .cm-s-dracula span.cm-type { color: #ffb86c; }
|
|
|
|
.cm-s-dracula .CodeMirror-activeline-background { background: rgba(255,255,255,0.1); }
|
|
.cm-s-dracula .CodeMirror-matchingbracket { text-decoration: underline; color: white !important; }
|