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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
| .common-table-board {
| position: fixed;
| z-index: 1070;
| padding-top: 48px;
| top: 0px;
| left: 0px;
| right: 0px;
| bottom: 0px;
| background: rgba(0, 0, 0, 0.35);
| display: flex;
| .tools {
| flex: 1;
| background: #ffffff;
| border-right: 1px solid #d9d9d9;
| }
| .setting {
| position: relative;
| width: calc(100vw - 235px);
| height: 100%;
| overflow-y: auto;
| background: #ffffff;
|
| .ant-card-head-title {
| padding: 10px 0;
| color: #1890ff;
| }
| .ant-card-extra {
| padding: 10px 0;
| button {
| margin-left: 20px;
| }
| }
| .ant-card-body {
| padding: 0;
|
| .search-list {
| padding: 1px 24px 20px;
| min-height: 50px;
| border-bottom: 1px solid #d9d9d9;
| .ant-row .ant-col-6 {
| padding: 0 12px!important;
| }
| .ant-row.ant-form-item .ant-col {
| padding: 0;
| }
| .page-card {
| cursor: move;
| position: relative;
| background: #ffffff;
| border-radius: 2px;
| padding-top: 15px;
| .ant-form-item {
| display: flex;
| margin-bottom: 10px;
| .ant-form-item-label {
| width: 100px;
| label {
| cursor: move;
| }
| }
| .ant-form-item-control-wrapper {
| flex: 1 1;
| input {
| cursor: move;
| }
| input:hover {
| border-color: #d9d9d9;
| }
| input:active {
| border-color: #d9d9d9;
| }
| input:focus {
| border-color: #d9d9d9;
| box-shadow: none;
| }
| }
| }
| // .close {
| // position: absolute;
| // right: 0;
| // top: 0;
| // cursor: pointer;
| // :hover {
| // color: #ffffff;
| // }
| // }
| .edit {
| position: absolute;
| left: 0;
| top: 5px;
| cursor: pointer;
| display: none;
| }
| }
| .page-card:hover {
| .edit {
| display: inline-block;
| }
| }
| }
| .action-list {
| padding: 0px 20px 5px;
| min-height: 50px;
| .page-card {
| display: inline-block;
| margin: 0px 15px 20px 0px;
| padding-top: 15px;
| cursor: move;
| position: relative;
| .edit {
| position: absolute;
| left: 0;
| top: 0px;
| cursor: pointer;
| display: none;
| }
| button {
| cursor: move;
| }
| }
| .page-card:hover {
| .edit {
| display: inline-block;
| }
| }
| }
| .element-add {
| font-size: 20px;
| padding: 10px 20px;
| cursor: pointer;
| }
| }
| }
| }
| .commontable-edit-modal {
| width: 650px!important;
| }
|
|