preferences.less 511 B

1234567891011121314151617181920212223242526272829303132333435
  1. .frame {
  2. textarea {
  3. width: 300px;
  4. height: 80px;
  5. padding: 2px 4px;
  6. outline: none;
  7. border: solid 1px #ccc;
  8. }
  9. .current-version {
  10. float: right;
  11. margin-top: -60px;
  12. color: #999;
  13. a {
  14. color: #999;
  15. &:hover {
  16. color: #000;
  17. }
  18. }
  19. &.update-found {
  20. &:after {
  21. content: '';
  22. display: block;
  23. float: right;
  24. width: 6px;
  25. height: 6px;
  26. background: #f00;
  27. border-radius: 3px;
  28. }
  29. }
  30. }
  31. }