123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- @import "./reset.less";
- .container{
- width: 100%;
- }
- h2{
- .h2;
- }
- .main-body{
- margin: 10px 40px;
- }
- .totalSumBox{
- margin: 0 0 10px 0;
- text-align: right;
- padding: 0 20px 0 0;
- .totalSum{
- color: red;
- }
- }
- table{
- width: 100%;
- border:1px solid #E2E5EF;
- border-collapse: collapse;/*关键代码*/
- min-width: 800px;
- thead{
- background: #EFF0F9;
-
- }
- th,td{
- height: 32px;
- box-sizing: border-box;
- padding: 0 20px;
- border:1px solid #E2E5EF;
- border-collapse: collapse;/*关键代码*/
- }
- th{
- font-size: 14px;
- font-weight: 500;
- }
- td{
- font-size: 14px;
- font-weight: 400
- }
- .moduleNumber{
- text-align: center;
- width: 15%;
- min-width: 30px;
- }
- .moduleName{
- width: 55%;
- }
- .moduleScore{
- text-align: center;
- width: 15%;
- min-width: 30px;
- }
- .moduleOpera{
- text-align: center;
- width: 15%;
- min-width: 30px;
- }
-
- }
- .tableTitle table{
- background: #EFF0F9;
- }
- .moduleScore, .totalSum{
- text-align: center;
- input{
- text-align: center ;
- height: 30px;
- }
- }
- .saveModuleBox{
- margin: 20px 0 0 0;
- }
- .saveModule{
- display: inline-block;
- float: right;
- background: @activeColor;
- color:#fff;
- padding: 9px 16px;
- border-radius: 5px;
- cursor: pointer;
- }
- .tableWrapper{
-
- }
- .tableInfo{
- overflow-y: auto;
- }
- .mask {
- position: fixed;
- width: 100%;
- height: 100%;
- background: #000;
- opacity: 0.5;
- left: 0;
- top: 0;
- }
- .textCenter{
- text-align: center;
- }
- .moduleOperaItem{
- color: @activeColor;
- cursor: pointer;
- }
- .moduleOperaItemDis{
- color: #aaa;
- cursor: not-allowed;
- }
- input::-webkit-outer-spin-button,
- input::-webkit-inner-spin-button {
- -webkit-appearance: none;
- }
-
- input[type="number"] {
- -moz-appearance: textfield;
- }
|