Skip to content

Commit

Permalink
tuning details and colors
Browse files Browse the repository at this point in the history
  • Loading branch information
jasesmith committed Oct 13, 2016
1 parent 7efbc27 commit 170a41a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
1 change: 1 addition & 0 deletions index.less
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@
@import "styles/tooltips";
@import "styles/tree-view";
@import "styles/utilities";
@import "styles/plugins";
7 changes: 0 additions & 7 deletions styles/editor.less
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,3 @@ atom-text-editor[mini].is-focused, atom-text-editor[mini].is-focused::shadow {
background-color: lighten(@input-background-color, 5%);
.selection .region { background-color: desaturate(@background-color-info, 50%); }
}

// FIXME: these should go in syntax themes?
atom-text-editor, atom-text-editor::shadow {
.gutter.drop-shadow {
-webkit-box-shadow: -2px 0 10px 2px #222;
}
}
6 changes: 5 additions & 1 deletion styles/panes.less
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ atom-pane-container {
background-color: @app-background-color;
}
.item-views {
box-shadow: 0 0 0 .1em @tab-border-color;
box-shadow: -0.1em 0 0 0 @pane-item-shadow-color, 0.1em 0 0 0 @pane-item-shadow-color;
z-index: 2;
&:not(:empty) {
&:before {
Expand Down Expand Up @@ -56,4 +56,8 @@ atom-pane-container {
border-bottom: 1px solid @pane-item-border-color;
&:last-child { border-bottom: none; }
}

&.footer {
box-shadow: 0 -0.1em 0 0 @pane-item-shadow-color;
}
}
5 changes: 5 additions & 0 deletions styles/plugins.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Minimap
atom-text-editor::shadow atom-text-editor-minimap,
atom-text-editor atom-text-editor-minimap {
background: @background-color-highlight;
}
3 changes: 2 additions & 1 deletion styles/ui-variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
@background-color-success: #94ca3d;
@background-color-warning: #ff7f36;
@background-color-error: #fc1770;
@background-color-highlight: rgba(255, 255, 255, 0.07);
@background-color-highlight: rgba(255, 255, 255, 0.05);
@background-color-selected: #15c5ec;

@app-background-color: #313333;
Expand All @@ -30,6 +30,7 @@

@pane-item-background-color: @base-background-color;
@pane-item-border-color: rgba(0, 0, 0, 0.5);
@pane-item-shadow-color: #000000;

@input-background-color: #212323;
@input-border-color: @base-border-color;
Expand Down

0 comments on commit 170a41a

Please sign in to comment.