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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
| .model-custom-header-search-list {
| padding: 0px;
|
| >.ant-row {
| text-align: right;
| >.ant-col {
| display: inline-block;
| float: none;
| padding: 0 6px;
| text-align: left;
| }
| }
|
| .page-card {
| position: relative;
| border-radius: 2px;
| height: 45px;
| .ant-form-item {
| position: relative;
| cursor: move;
| display: flex;
| margin-bottom: 0px;
|
| .ant-select {
| width: 100%;
| }
| .ant-select-selection--single {
| height: 28px;
| }
| .ant-input {
| height: 28px;
| }
| .ant-btn {
| height: 28px;
| }
| .data-range .ant-calendar-picker-input {
| padding: 4px 20px 4px 5px;
| font-size: 13px;
| }
| .model-date-group {
| line-height: 28px;
| text-align: right;
| width: 100%;
| }
| }
| .ant-form-item::after {
| display: block;
| content: ' ';
| position: absolute;
| top: 0;
| left: 0;
| right: 0;
| bottom: 0;
| opacity: 0;
| z-index: 2;
| }
| .ant-form-item-label {
| float: left;
| }
| .ant-form-item-control-wrapper {
| float: left;
| }
| }
| .page-card.range-wrap {
| .ant-form-item-control-wrapper {
| .ant-form-item-control {
| .ant-form-item-children {
| display: flex;
| line-height: 40px;
| .ant-input:first-child {
| margin-right: 5px;
| }
| .ant-input:last-child {
| margin-left: 5px;
| }
| }
| }
| }
| }
| .page-card.false {
| .ant-form-item-label {
| display: none;
| }
| .ant-form-item-control-wrapper {
| width: 100%;
| }
| }
| .ant-calendar-picker {
| min-width: 100px!important;
| width: 100%;
| }
| }
|
|