_recent.less 2.1 KB

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