You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

148 lines
2.1 KiB

  1. @import "variables.less";
  2. .module-head {
  3. padding: 15px 30px;
  4. border-bottom: 1px solid @light-border-color;
  5. }
  6. .module-head h1 {
  7. padding: 0px;
  8. margin: 0px;
  9. }
  10. .module-body {
  11. padding: 0px 15px;
  12. .section-head {
  13. margin-bottom: 15px;
  14. margin-top: 0px;
  15. }
  16. }
  17. .module-section {
  18. border-bottom: 1px solid @light-border-color;
  19. .module-section-link {
  20. line-height: 1.5em;
  21. // font-size: 14px;
  22. }
  23. }
  24. .module-section-column {
  25. padding: 30px;
  26. }
  27. @media(min-width: @screen-xs) {
  28. .module-section:nth-child(even) {
  29. background-color: @light-bg;
  30. }
  31. .module-section:last-child {
  32. border-bottom: none;
  33. }
  34. }
  35. @media(max-width: @screen-sm) {
  36. .module-body {
  37. margin-top: 15px;
  38. border-top: 1px solid @border-color;
  39. }
  40. }
  41. @media(max-width: @screen-xs) {
  42. .module-body {
  43. margin-top: 0;
  44. border-top: 1px solid transparent;
  45. }
  46. }
  47. @media(max-width: @screen-xs) {
  48. .module-section {
  49. border: none;
  50. }
  51. .module-section-column {
  52. border-bottom: 1px solid @light-border-color;
  53. }
  54. .module-section-column:nth-child(even) {
  55. background-color: @light-bg;
  56. }
  57. .module-section:last-child .module-section-column:last-child {
  58. border-bottom: none;
  59. }
  60. }
  61. .module-item {
  62. margin: 0px;
  63. padding: 7px;
  64. font-weight: 400;
  65. border-bottom: 1px solid @border-color;
  66. cursor: pointer;
  67. transition: 0.2s;
  68. -webkit-transition: 0.2s;
  69. }
  70. .module-item h4 {
  71. display: inline-block;
  72. }
  73. .module-item .module-item-description {
  74. margin-top: -5px;
  75. }
  76. .module-item .badge {
  77. margin-top: -2px;
  78. margin-left: 3px;
  79. }
  80. .module-item:hover, .module-item:focus {
  81. background-color: @panel-bg;
  82. }
  83. .module-item:last-child {
  84. border: none;
  85. }
  86. .module-link.active .icon-chevron-right {
  87. margin-top: 4px;
  88. display: block !important;
  89. }
  90. .module-item-progress {
  91. margin-bottom: 10px;
  92. height: 17px;
  93. }
  94. .module-item-progress-total {
  95. height: 7px;
  96. background-color: #999999;
  97. width: 0px;
  98. }
  99. .module-item-progress-open {
  100. height: 7px;
  101. background-color: red;
  102. width: 0px;
  103. }
  104. @media(max-width: @screen-xs) {
  105. body[data-route^="Module"] {
  106. .page-title {
  107. width: 100%;
  108. }
  109. .page-actions {
  110. display: none !important;
  111. }
  112. .layout-main-section {
  113. border-bottom: 0px;
  114. }
  115. }
  116. }