Skip to content

Commit

Permalink
Merge pull request #500 from ryanblak/wavy-underline-repeat
Browse files Browse the repository at this point in the history
🐛 Fix wavy underline with non-standard line height #427
  • Loading branch information
Maxime Tyler committed Apr 21, 2015
2 parents d4a93d3 + 04db92f commit 83e1a64
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 83e1a64

Please sign in to comment.