Skip to content

Commit

Permalink
🐛 Fix wavy underline with non-standard line height steelbrain#427
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanblak committed Apr 13, 2015
1 parent 2690b53 commit 04db92f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions styles/highlights.atom-text-editor.less
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@
&.linter-info .region {
background-color: @background-color-info;
-webkit-mask-image: url(atom://linter/images/wave.svg);
-webkit-mask-repeat: repeat;
-webkit-mask-repeat: repeat-x;
-webkit-mask-size: .9em 1.3em;
-webkit-mask-position: bottom left;
}
&.linter-warning .region {
background-color: darken(@background-color-warning, 15%);
-webkit-mask-image: url(atom://linter/images/wave.svg);
-webkit-mask-repeat: repeat;
-webkit-mask-repeat: repeat-x;
-webkit-mask-size: .9em 1.3em;
-webkit-mask-position: bottom left;
}
&.linter-error .region {
background-color: @background-color-error;
-webkit-mask-image: url(atom://linter/images/wave.svg);
-webkit-mask-repeat: repeat;
-webkit-mask-repeat: repeat-x;
-webkit-mask-size: .9em 1.3em;
-webkit-mask-position: bottom left;
}
Expand Down

0 comments on commit 04db92f

Please sign in to comment.