Skip to content

Commit

Permalink
GHI-#49 Fix too bright text color in active text fields
Browse files Browse the repository at this point in the history
This was broken due to the new syntax theme API prefix class "syntax--".
  • Loading branch information
arcticicestudio committed Jan 23, 2017
1 parent 2d3530e commit 030b970
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions styles/atom.less
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ atom-text-editor[mini] {
color: @text-color-highlight;
}

.text,
.source {
.syntax--text,
.syntax--source {
color: @text-color;
}

Expand All @@ -159,8 +159,8 @@ atom-text-editor[mini].is-focused {
border: 1px solid @input-border-color-active;
background-color: @input-background-color-active;

.text,
.source {
.syntax--text,
.syntax--source {
color: @input-text-color-active;
}

Expand Down
4 changes: 2 additions & 2 deletions styles/ui-theme-settings.less
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ copyright Copyright (C) 2016 +
border: 1px solid @theme-setting-formfocuseffect-border-color;
background-color: @theme-setting-formfocuseffect-background-color;

.text,
.source {
.syntax--text,
.syntax--source {
color: @text-color;

.regexp {
Expand Down

0 comments on commit 030b970

Please sign in to comment.