_mainmenu.new.less 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .new-file-template-select {
  2. margin: 0;
  3. padding: 0;
  4. list-style: none;
  5. li {
  6. display: inline-block;
  7. position: relative;
  8. width: 120px;
  9. height: 120px;
  10. margin-right: 20px;
  11. margin-bottom: 20px;
  12. cursor: pointer;
  13. a {
  14. display: block;
  15. text-align: center;
  16. position: absolute;
  17. bottom: 0;
  18. left: 0;
  19. right: 0;
  20. }
  21. &:before {
  22. content: ' ';
  23. display: block;
  24. position: absolute;
  25. .dock(0, 0, 24px, 0);
  26. border: 1px solid #ddd;
  27. }
  28. &:after {
  29. content: ' ';
  30. display: block;
  31. position: absolute;
  32. width: 100px;
  33. height: 80px;
  34. left: 50%;
  35. top: 10px;
  36. margin-left: -50px;
  37. background: url(../images/template_large.png) no-repeat;
  38. }
  39. &.default:after {
  40. background-position: 0 0;
  41. }
  42. &.structure:after {
  43. background-position: -100px 0;
  44. }
  45. &.filetree:after {
  46. background-position: -200px 0;
  47. }
  48. &.right:after {
  49. background-position: -300px 0;
  50. }
  51. &.fish-bone:after {
  52. background-position: -400px 0;
  53. }
  54. &.tianpan:after {
  55. background-position: -500px 0;
  56. }
  57. &:hover {
  58. a {
  59. color: @main-menu-theme-color;
  60. }
  61. &:before {
  62. border: 1px solid @main-menu-theme-color;
  63. }
  64. }
  65. &:active:before {
  66. background-color: lighten(@main-menu-theme-color, 20%);
  67. }
  68. }
  69. }