Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/extensions/default/ThorDarkTheme/main.less
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,6 @@
border-bottom: 9px solid transparent;
}

.inline-widget {
color: #333;
}

.inline-widget .CodeMirror, .inline-widget .CodeMirror-gutters {
background: transparent;
}
9 changes: 9 additions & 0 deletions src/styles/brackets_theme_default.less
Original file line number Diff line number Diff line change
Expand Up @@ -165,5 +165,14 @@

}

/* Dark theme styling
*
* These are overrides to make the UI look better when the editor theme is dark.
* Eventually, these will likely be replaced by full-featured UI themes.
*/
.dark .inline-widget {
color: #333;
}

/* Variables and Mixins for non-code UI elements that can be styled */

14 changes: 7 additions & 7 deletions src/view/ThemeManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*
*/

/*jslint vars: true, plusplus: true, devel: true, nomen: true, indent: 4, maxerr: 50 */
/*jslint vars: true, plusplus: true, devel: true, regexp: true, nomen: true, indent: 4, maxerr: 50 */
/*global $, define, require, less */

define(function (require, exports, module) {
Expand All @@ -43,7 +43,7 @@ define(function (require, exports, module) {
styleNode = $(ExtensionUtils.addEmbeddedStyleSheet("")),
defaultTheme = "thor-light-theme",
commentRegex = /\/\*([\s\S]*?)\*\//mg,
scrollbarsRegex = /::-webkit-scrollbar(?:[\s\S]*?)\{(?:[\s\S]*?)\}/mg,
scrollbarsRegex = /((?:[^}|,]*)::-webkit-scrollbar(?:[^{]*)[{](?:[^}]*?)[}])/mgi,
stylesPath = FileUtils.getNativeBracketsDirectoryPath() + "/styles/",
validExtensions = ["css", "less"];

Expand Down Expand Up @@ -87,7 +87,7 @@ define(function (require, exports, module) {
this.file = file;
this.name = options.name || (options.title || fileName).toLocaleLowerCase().replace(/[\W]/g, '-');
this.displayName = options.title || toDisplayName(fileName);
this.dark = options.theme && options.theme.dark === true;
this.dark = options.theme !== undefined && options.theme.dark === true;
}


Expand All @@ -107,7 +107,6 @@ define(function (require, exports, module) {
// Go through and extract out scrollbar customizations so that we can
// enable/disable via settings.
content = content
.replace(commentRegex, "")
.replace(scrollbarsRegex, function (match) {
scrollbar.push(match);
return "";
Expand Down Expand Up @@ -231,15 +230,16 @@ define(function (require, exports, module) {
var theme = getCurrentTheme();

var pending = theme && FileUtils.readAsText(theme.file)
.then(function (lessContent) {
return lessifyTheme(lessContent.replace(commentRegex, ""), theme);
})
.then(function (content) {
var result = extractScrollbars(content);
theme.scrollbar = result.scrollbar;
return result.content;
})
.then(function (lessContent) {
return lessifyTheme(lessContent, theme);
})
.then(function (cssContent) {
$("body").toggleClass("dark", theme.dark);
styleNode.text(cssContent);
return theme;
});
Expand Down