Skip to content

Commit

Permalink
Adding basic support for chrome canary default dark theme; resolves #112
Browse files Browse the repository at this point in the history
  • Loading branch information
micjamking committed Feb 7, 2016
1 parent 6f6cab0 commit d651c3b
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
5 changes: 3 additions & 2 deletions app/styles/base/_theme-config.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@
*/
@import "modules/devtools";
@import "modules/common-styles";
@import "modules/elements-panel";
@import "modules/console-panel";
@import "modules/panel-elements";
@import "modules/panel-console";
@import "modules/panel-sources";
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ==========================================================================
Console Panel
Panel - Console
========================================================================== */

.console,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ==========================================================================
Elements Panel
Panel - Elements
========================================================================== */

::shadow {
Expand Down
19 changes: 19 additions & 0 deletions app/styles/modules/_panel-sources.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/* ==========================================================================
Panel - Sources
========================================================================== */


.-theme-with-dark-background {
.sources {

// Sources Left Panel
.split-view-sidebar,
.insertion-point-sidebar {
background: inherit !important;

.sidebar-pane-stack .sidebar-pane-title {
border-color: rgb(54, 54, 54) !important;
}
}
}
}

0 comments on commit d651c3b

Please sign in to comment.