Skip to content

Commit

Permalink
fix some codemirror themes
Browse files Browse the repository at this point in the history
  • Loading branch information
tablatronix committed Dec 26, 2017
1 parent e059d33 commit f8f2e18
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions admin/inc/common.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
'GSCHMODFILE' => 0644, // (octal) chmod mode for files
'GSCHMODDIR' => 0755, // (octal) chmod mode for dirs
'GSDOCHMOD' => true, // (bool) perform chmod when creating files or directories
'GSCHMODCHECK' => false, // (bool) warn on gschmod mismatches in health check
'GSCHMODCHECK' => false, // (bool) warn on gschmod mismatches in health check
'GSSHOWCODEHINTS' => true, // (bool) show code hints on components page and snippets etc.
# ALLOW --------------------------------------------------------------------------------------------------------------------------------------------
'GSALLOWLOGIN' => true, // (bool) allow front end login
Expand Down Expand Up @@ -137,7 +137,7 @@
'GSHTMLEDITINLINE' => false, // (bool) show html cke editors inline EXPERIMENTAL
'GSHTMLEDITCOMPACT' => true, // (bool) show html cke editors compacted, hides ui when not focused
'GSHTMLEDITAUTOHEIGHT' => true, // (bool) after init, auto set the ckeditors height
'GSCODEEDITORTHEMES' => '3024-day,3024-night,abcdef,ambiance-mobile,ambiance,base16-dark,base16-light,bespin,blackboard,cobalt,colorforth,default,dracula,duotone-dark,duotone-light,eclipse,elegant,erlang-dark,hopscotch,icecoder,isotope,lesser-dark,liquibyte,material,mbo,mdn-like,midnight,monokai,neat,neo,night,panda-syntax,paraiso-dark,paraiso-light,pastel-on-dark,railscasts,rubyblue,seti,solarized,the-matrix,tomorrow-night-bright,tomorrow-night-eighties,ttcn,twilight,vibrant-ink,xq-dark,xq-light,yeti,zenburn', # themes for codemirror
'GSCODEEDITORTHEMES' => '3024-day,3024-night,abcdef,ambiance-mobile,ambiance,base16-dark,base16-light,bespin,blackboard,cobalt,colorforth,default,dracula,duotone-dark,duotone-light,eclipse,elegant,erlang-dark,hopscotch,icecoder,isotope,lesser-dark,liquibyte,material,mbo,mdn-like,midnight,monokai,neat,neo,night,panda-syntax,paraiso-dark,paraiso-light,pastel-on-dark,railscasts,rubyblue,seti,solarized light,solarized dark,the-matrix,tomorrow-night-bright,tomorrow-night-eighties,ttcn,twilight,vibrant-ink,xq-dark,xq-light,yeti,zenburn', # themes for codemirror
# DRAFTS -------------------------------------------------------------------------------------------------------------------------------------------
'GSUSEDRAFTS' => true, // (bool) use page drafts
'GSUSEPAGESTACK' => true, // (bool) use page stacks for drafts, else manually pass `nodraft` or `draft` qs
Expand Down
2 changes: 1 addition & 1 deletion admin/template/js/codemirror/theme/icecoder.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
ICEcoder default theme by Matt Pass, used in code editor available at https://icecoder.net
*/

.cm-s-icecoder { color: #666; background: #1d1d1b; }
.cm-s-icecoder.CodeMirror { color: #666; background: #1d1d1b; }

.cm-s-icecoder span.cm-keyword { color: #eee; font-weight:bold; } /* off-white 1 */
.cm-s-icecoder span.cm-atom { color: #e1c76e; } /* yellow */
Expand Down
2 changes: 1 addition & 1 deletion admin/template/js/codemirror/theme/panda-syntax.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Author: Siamak Mokhtari (http://github.com/siamak/)
CodeMirror template by Siamak Mokhtari (https://github.com/siamak/atom-panda-syntax)
*/
.cm-s-panda-syntax {
.cm-s-panda-syntax.CodeMirror {
background: #292A2B;
color: #E6E6E6;
line-height: 1.5;
Expand Down
2 changes: 1 addition & 1 deletion admin/template/js/codemirror/theme/solarized.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ http://ethanschoonover.com/solarized/img/solarized-palette.png
color-profile: sRGB;
rendering-intent: auto;
}
.cm-s-solarized.cm-s-dark {
.cm-s-solarized.cm-s-dark.CodeMirror {
color: #839496;
background-color: #002b36;
text-shadow: #002b36 0 1px;
Expand Down

0 comments on commit f8f2e18

Please sign in to comment.