Advertisement
Guest User

Untitled

a guest
Dec 18th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. /* Ref: https://github.com/atom/one-dark-ui/blob/master/styles/ui-variables.less */
  2. @import "ui-variables";
  3. atom-text-editor.editor .linter-highlight, .linter-highlight {
  4. &.norme {
  5. /* Style for Message Badges */
  6. &:not(.line-number) {
  7. background-color: @background-color-info;
  8. color: white;
  9. }
  10. /* Style for Gutter */
  11. .linter-gutter {
  12. color: @background-color-info;
  13. }
  14. /* Style for the text editor highlight */
  15. .region {
  16. border-bottom: 1px dashed @background-color-info;
  17. }
  18. }
  19. &.yan {
  20. /* Style for Message Badges */
  21. &:not(.line-number) {
  22. background-color: @background-color-info;
  23. color: white;
  24. }
  25. /* Style for Gutter */
  26. .linter-gutter {
  27. color: @background-color-info;
  28. }
  29. /* Style for the text editor highlight */
  30. .region {
  31. border-bottom: 1px dashed @background-color-info;
  32. }
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement