moduleManager.less 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. @import "./reset.less";
  2. body{
  3. background: @disColor;
  4. }
  5. .container{
  6. width: 100%;
  7. }
  8. h2{
  9. .h2;
  10. }
  11. .main-body{
  12. .main-body-com;
  13. padding-bottom: 20px;
  14. }
  15. .totalSumBox{
  16. margin: 0 0 10px 0;
  17. text-align: right;
  18. padding: 0 20px 0 0;
  19. .totalSum{
  20. color: red;
  21. }
  22. }
  23. table{
  24. .table;
  25. // min-width: 800px;
  26. th,td{
  27. padding: 0 20px;
  28. }
  29. .moduleNumber{
  30. text-align: center;
  31. width: 15%;
  32. min-width: 30px;
  33. }
  34. .moduleName{
  35. width: 55%;
  36. }
  37. .moduleScore{
  38. text-align: center;
  39. width: 15%;
  40. min-width: 30px;
  41. }
  42. .moduleOpera{
  43. text-align: center;
  44. width: 15%;
  45. min-width: 30px;
  46. }
  47. }
  48. .tableTitle{
  49. position: relative;
  50. }
  51. .tableTitle table{
  52. background: #EFF0F9;
  53. }
  54. .moduleScore, .totalSum{
  55. text-align: center;
  56. input{
  57. text-align: center ;
  58. height: 30px;
  59. }
  60. }
  61. .saveModuleBox{
  62. margin: 20px 0 0 0;
  63. }
  64. .saveModule{
  65. display: inline-block;
  66. float: right;
  67. background: @activeColor;
  68. color:#fff;
  69. padding: 9px 16px;
  70. border-radius: 5px;
  71. cursor: pointer;
  72. }
  73. .tableWrapper{
  74. }
  75. .tableInfo{
  76. overflow-y: auto;
  77. }
  78. .mask {
  79. position: fixed;
  80. width: 100%;
  81. height: 100%;
  82. background: #000;
  83. opacity: 0.5;
  84. left: 0;
  85. top: 0;
  86. }
  87. .textCenter{
  88. text-align: center;
  89. }
  90. .moduleOperaItem{
  91. color: @activeColor;
  92. cursor: pointer;
  93. }
  94. .moduleOperaItemDis{
  95. color: #aaa;
  96. cursor: not-allowed;
  97. }
  98. input::-webkit-outer-spin-button,
  99. input::-webkit-inner-spin-button {
  100. -webkit-appearance: none;
  101. }
  102. input[type="number"] {
  103. -moz-appearance: textfield;
  104. }
  105. .moduleSpan{
  106. background: #EFF0F9;
  107. display: inline-block;
  108. width: 17px;
  109. height: 31px;
  110. position: absolute;
  111. right: 1px;
  112. border: 1px solid #E2E5EF;
  113. box-sizing: border-box;
  114. border-left: none;
  115. display: none;
  116. }