category.less 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. // Category view
  2. // -------------------------
  3. .category-forums-list {
  4. background-color: @categoryBackground;
  5. border: 1px solid @categoryBorder;
  6. border-radius: @borderRadiusSmall;
  7. .box-shadow(0px 0px 0px 3px @categoryShadow);
  8. margin-bottom: @baseLineHeight;
  9. table {
  10. margin: 0px;
  11. tr:first-child {
  12. td {
  13. border-top: none;
  14. }
  15. }
  16. td {
  17. padding: ((@fontSizeLarge / 2) + 3px) (@fontSizeSmall - 2px);
  18. }
  19. .forum-icon {
  20. padding-right: (@fontSizeSmall / 2) - 3px;
  21. width: 1%;
  22. .forum-icon-wrap {
  23. background-color: @itemOldColor;
  24. border: 1px solid darken(@itemOldColor, 10%);
  25. border-radius: @baseBorderRadius;
  26. padding: (@forumIconSize - 1px) @forumIconSize;
  27. &.forum-icon-new {
  28. background-color: @itemNewColor;
  29. border: 1px solid darken(@itemNewColor, 10%);
  30. }
  31. &.forum-icon-redirect {
  32. background-color: @itemMovedColor;
  33. border: 1px solid darken(@itemMovedColor, 10%);
  34. }
  35. }
  36. }
  37. .forum-main {
  38. h3 {
  39. float: left;
  40. margin: 0px;
  41. padding: 0px;
  42. font-size: @fontSizeLarge;
  43. font-weight: normal;
  44. line-height: @baseLineHeight;
  45. a:link, a:visited {
  46. color: @textColor;
  47. }
  48. }
  49. .forum-details {
  50. float: right;
  51. margin-top: ((@baseFontSize - @fontSizeSmall) * -1) + 1px;
  52. color: @grayLight;
  53. font-size: @fontSizeSmall;
  54. strong, a {
  55. color: @gray;
  56. font-weight: normal
  57. }
  58. a:hover, a:active {
  59. color: @textColor;
  60. }
  61. strong.stat-increment {
  62. color: @green;
  63. }
  64. }
  65. .forum-description {
  66. clear: both;
  67. margin: 0px;
  68. margin-bottom: (@baseFontSize - @fontSizeSmall) * -1;
  69. padding: 0px;
  70. color: lighten(@textColor, 35%);
  71. font-size: @fontSizeSmall;
  72. }
  73. }
  74. }
  75. &.category-forums-important {
  76. border: 1px solid darken(@red, 15%);
  77. .box-shadow(0px 0px 0px 3px @red);
  78. }
  79. &.category-forums-inverse {
  80. border: 1px solid @grayDark;
  81. .box-shadow(0px 0px 0px 3px @gray);
  82. }
  83. &.category-forums-info {
  84. border: 1px solid darken(@bluePale, 15%);
  85. .box-shadow(0px 0px 0px 3px @bluePale);
  86. }
  87. }