PreferencesPrompt.less 779 B

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