Note that whenever you upgrade umbraco, you'd have to make this customization again. We don't officially support changing the theme.
Also make sure to change the version in ClientDependency.config so that client cache gets cleared (as well as clearing your browser cache).
First of all thanks for taking the time to respond.
I cleared my cache and it still displays the default theme.
I looked into the ClientDependency.config file in the Config folder but I can't find anything that pertains to Codemirror or the theme it uses.
This is what my ClientDependency.config looks like.
<?xmlversion="1.0"encoding="utf-8"?><!-- For full details of the client dependency framework, visit https://github.com/Shandem/ClientDependency It manages CSS and JS file dependencies per control without having to worry about duplicates. It also manages the combination, compression and minification of all JS & CSS files. NOTES: * Compression/Combination/Minification is not enabled unless debug="false" is specified on the 'compiliation' element in the web.config * A new version will invalidate both client and server cache and create new persisted files --><clientDependencyversion="209273982"fileDependencyExtensions=".js,.css"loggerType="Umbraco.Web.UI.CdfLogger, umbraco"><!-- This section is used for Web Forms only, the enableCompositeFiles="true" is optional and by default is set to true. The LoaderControlProvider is set to default, the javascriptPlaceHolderId, cssPlaceHolderId attributes are optional and default to what is listed below. If using this provider, then you must specify both PlaceHolder controls on your page in order to render the JS/CSS. --><fileRegistrationdefaultProvider="PlaceHolderProvider"><providers><addname="PageHeaderProvider"type="ClientDependency.Core.FileRegistration.Providers.PageHeaderProvider, ClientDependency.Core"/><addname="LazyLoadProvider"type="ClientDependency.Core.FileRegistration.Providers.LazyLoadProvider, ClientDependency.Core"/><addname="LoaderControlProvider"type="ClientDependency.Core.FileRegistration.Providers.LoaderControlProvider, ClientDependency.Core"/><addname="PlaceHolderProvider"type="ClientDependency.Core.FileRegistration.Providers.PlaceHolderProvider, ClientDependency.Core"javascriptPlaceHolderId="JavaScriptPlaceHolder"cssPlaceHolderId="CssPlaceHolder"/></providers></fileRegistration><!-- This section is used for MVC only --><mvcdefaultRenderer="StandardRenderer"><renderers><addname="StandardRenderer"type="ClientDependency.Core.FileRegistration.Providers.StandardRenderer, ClientDependency.Core"/><addname="LazyLoadRenderer"type="ClientDependency.Core.FileRegistration.Providers.LazyLoadRenderer, ClientDependency.Core"/></renderers></mvc><!-- The composite file section configures the compression/combination/minification of files. You can enable/disable minification of either JS/CSS files and you can enable/disable the persistence of composite files. By default, minification and persistence is enabled. Persisting files means that the system is going to save the output of the compressed/combined/minified files to disk so that on any subsequent request (when output cache expires) that these files don't have to be recreated again and will be based on the persisted file on disk. This saves on processing time. --><compositeFilesdefaultProvider="defaultFileProcessingProvider"compositeFileHandlerPath="~/DependencyHandler.axd"><fileProcessingProviders><addname="CompositeFileProcessor"type="ClientDependency.Core.CompositeFiles.Providers.CompositeFileProcessingProvider, ClientDependency.Core"enableCssMinify="true"enableJsMinify="true"persistFiles="true"compositeFilePath="~/App_Data/TEMP/ClientDependency"bundleDomains="localhost:123456"urlType="Base64QueryStrings"pathUrlFormat="{dependencyId}/{version}/{type}"/></fileProcessingProviders><!-- A file map provider stores references to dependency files by an id to be used in the handler URL when using the MappedId Url type --><fileMapProviders><addname="XmlFileMap"type="ClientDependency.Core.CompositeFiles.Providers.XmlFileMapper, ClientDependency.Core"mapPath="~/App_Data/TEMP/ClientDependency"/></fileMapProviders></compositeFiles></clientDependency>
Is there somewhere else I should looking, is that the right directoy for ClientDependency.config?
How to change Codemirror theme
New Umbraco 7 user here and I'm trying to figure out how to change codemirrors default theme.
I went ahead and edited the theme setting in: UmbracoClient > CodeMirror > JS > Lib > codemirror.js
Restarted the site but any editor fields are still displaying the default theme, do I have to change it somewhere else? Is this possible in Umbraco?
Thanks for your help and my apologies if this is the wrong section to post this.
Have you cleared or disabled your browser cache? If not, give that a whirl.
Note that whenever you upgrade umbraco, you'd have to make this customization again. We don't officially support changing the theme. Also make sure to change the version in ClientDependency.config so that client cache gets cleared (as well as clearing your browser cache).
First of all thanks for taking the time to respond.
I cleared my cache and it still displays the default theme.
I looked into the ClientDependency.config file in the Config folder but I can't find anything that pertains to Codemirror or the theme it uses.
This is what my ClientDependency.config looks like.
Is there somewhere else I should looking, is that the right directoy for ClientDependency.config?
Thanks again.
Change
clientDependency version="209273982"
to something else.. likeclientDependency version="213512"
Sebastian that doesn't seem to work either, no worries I guess I will have to stick with the default theme.
Thanks again for your help.
is working on a reply...