moduleManager.less 1.5 KB

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