1
0

EditPrompt.less 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. :global {
  2. @keyframes loading {
  3. from {
  4. transform: rotate(0deg);
  5. }
  6. to {
  7. transform: rotate(360deg);
  8. }
  9. }
  10. .frame {
  11. label {
  12. padding: 0 4em 0 0.5em;
  13. }
  14. .spiner {
  15. transform-origin: right center;
  16. animation: spin 1s;
  17. animation-iteration-count: 1;
  18. -webkit-animation-iteration-count: 1;
  19. }
  20. .ln {
  21. i.icon-refresh {
  22. display: inline-block;
  23. color: #999;
  24. margin: 0 5px;
  25. cursor: pointer;
  26. width: 20px;
  27. height: 20px;
  28. overflow: hidden;
  29. text-align: center;
  30. line-height: 20px;
  31. vertical-align: middle;
  32. &:hover {
  33. color: #333;
  34. }
  35. &.loading {
  36. animation: loading 1s infinite linear;
  37. }
  38. &.invisible {
  39. visibility: hidden;
  40. }
  41. }
  42. }
  43. .last-refresh {
  44. //padding-left: 1em;
  45. color: #999;
  46. }
  47. a.del {
  48. color: red;
  49. span {
  50. padding-left: 0.5em;
  51. }
  52. }
  53. }
  54. }