1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
| .tb-edit .el-input,.tb-edit .el-autocomplete, .tb-edit .el-select, .tb-edit .el-input-number {
| display: none;
| }
|
| .tb-edit .current-row .el-input,.tb-edit .current-row .el-autocomplete, .tb-edit .current-row .el-select, .tb-edit .current-row .el-input-number {
| display: block;
| }
|
| .tb-edit .current-row .el-input + span, .tb-edit .current-row .el-autocomplete + span, .tb-edit .current-row .el-select + span, .tb-edit .current-row .el-input-number + span {
| display: none;
| }
|
| ::-webkit-scrollbar {
| width: 7px;
| height: 7px;
| }
|
| ::-webkit-scrollbar-thumb {
| background-color: #a1a3a9;
| border-radius: 8px;
| }
|
| .el-input--suffix .el-input__suffix i {
| padding-right: 3px;
| cursor: pointer;
| }
|
| .el-input-number--mini {
| line-height: 23px;
| }
|
|