_draft.less 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .draft-panel {
  2. h2 {
  3. &:before {
  4. content: ' ';
  5. display: block;
  6. width: 25px;
  7. height: 25px;
  8. position: absolute;
  9. left: 0;
  10. background: url(../images/icons.png) no-repeat 0 -570px;
  11. }
  12. }
  13. & > .clear-draft {
  14. position: absolute;
  15. right: 0;
  16. top: 0;
  17. }
  18. & > .draft-list {
  19. margin: 0;
  20. padding: 0;
  21. list-style: none;
  22. &:empty:after {
  23. content: '这是个空虚寂寞的草稿箱!';
  24. display: block;
  25. text-align: center;
  26. font-size: 18px;
  27. height: 50px;
  28. line-height: 50px;
  29. color: #CCC;
  30. }
  31. .draft-list-item {
  32. font-size: 14px;
  33. line-height: 20px;
  34. padding: 10px 20px 10px 40px;
  35. cursor: default;
  36. position: relative;
  37. &:hover {
  38. background-color: lighten(@tab-hover, 55%);
  39. }
  40. &:active {
  41. background-color: lighten(@tab-hover, 50%);
  42. }
  43. .draft-title {
  44. margin: 0;
  45. font-weight: normal;
  46. height: 20px;
  47. line-height: 20px;
  48. &:after {
  49. content: ' ';
  50. display: block;
  51. position: absolute;
  52. width: 25px;
  53. height: 25px;
  54. background: url(../images/icons.png) no-repeat 0 -445px;
  55. left: 5px;
  56. top: 10px;
  57. }
  58. }
  59. .file-time {
  60. position: absolute;
  61. right: 5px;
  62. top: 10px;
  63. font-size: 12px;
  64. color: #999;
  65. }
  66. }
  67. }
  68. }