preferences.less 691 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. @import "../cfg.less";
  2. .frame {
  3. .current-version {
  4. float: right;
  5. margin-top: -50px;
  6. margin-right: 30px;
  7. color: #999;
  8. a {
  9. color: #999;
  10. &:hover {
  11. color: #000;
  12. }
  13. }
  14. &.update-found {
  15. &:after {
  16. content: '';
  17. display: block;
  18. float: right;
  19. width: 6px;
  20. height: 6px;
  21. background: #f00;
  22. border-radius: 3px;
  23. }
  24. }
  25. }
  26. .pref-cm {
  27. border: 1px solid #d9d9d9;
  28. width: 95%;
  29. box-sizing: border-box;
  30. .CodeMirror {
  31. height: 160px;
  32. line-height: 20px;
  33. font-family: @font-editor;
  34. }
  35. .cm-s-default .cm-comment {
  36. color: #090;
  37. }
  38. }
  39. }