index.less 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. @import '../../app.less';
  2. .icon {
  3. display: inline-block;
  4. vertical-align: middle;
  5. cursor: pointer;
  6. }
  7. .icon.sceen-full {
  8. width: 36px;
  9. height: 36px;
  10. background: url('/assets/screen_full_normal.png') no-repeat center;
  11. }
  12. .icon.sceen-full.active,
  13. .icon.sceen-full:hover {
  14. background-image: url('/assets/screen_full_highlight.png');
  15. }
  16. .icon.sceen-restore {
  17. width: 36px;
  18. height: 36px;
  19. background: url('/assets/screen_restore_normal.png') no-repeat center;
  20. }
  21. .icon.sceen-restore.active,
  22. .icon.sceen-restore:hover {
  23. background-image: url('/assets/screen_restore_highlight.png');
  24. }
  25. .icon.next {
  26. width: 36px;
  27. height: 36px;
  28. background: url('/assets/footer_next_normal.png') no-repeat center;
  29. }
  30. .icon.next.active,
  31. .icon.next:hover {
  32. background-image: url('/assets/footer_next_highlight.png');
  33. }
  34. .icon.prev {
  35. width: 36px;
  36. height: 36px;
  37. background: url('/assets/footer_previous_normal.png') no-repeat center;
  38. }
  39. .icon.prev.active,
  40. .icon.prev:hover {
  41. background-image: url('/assets/footer_previous_highlight.png');
  42. }
  43. .icon.more {
  44. width: 16px;
  45. height: 16px;
  46. background: url('/assets/header_more_normal.png') no-repeat center;
  47. }
  48. .icon.more.active,
  49. .icon.more:hover {
  50. background-image: url('/assets/header_more_highlight.png');
  51. }
  52. .icon.question {
  53. width: 16px;
  54. height: 16px;
  55. background: url('/assets/header_question_normal.png') no-repeat center;
  56. }
  57. .icon.question.active,
  58. .icon.question:hover {
  59. background-image: url('/assets/header_question_highlight.png');
  60. }
  61. .icon.star {
  62. width: 16px;
  63. height: 16px;
  64. background: url('/assets/header_star_normal.png') no-repeat center;
  65. }
  66. .icon.star.active,
  67. .icon.star:hover {
  68. background-image: url('/assets/header_star_select.png');
  69. }