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
| .tab-manage-form-field {
| position: relative;
| padding: 0px 24px 20px;
| .ant-form-item {
| display: flex;
| }
| .ant-form-item-control-wrapper {
| flex: 1;
| }
| .ant-form-item-label {
| overflow: hidden;
| display: inline-block;
| text-overflow: ellipsis;
| white-space: nowrap;
| }
| .textarea-row {
| .ant-col-sm-3 {
| width: 10.5%;
| }
| .ant-col-sm-21 {
| width: 89.5%;
| }
| }
| .ant-form-explain {
| overflow:hidden;
| text-overflow:ellipsis;
| white-space:nowrap;
| }
| p {
| color: #1890ff;
| border-bottom: 1px solid #d9d9d9;
| }
| .ant-input-disabled {
| color: rgba(0, 0, 0, 0.65)!important;
| cursor: default!important;
| }
| .ant-input-number-input {
| color: rgba(0, 0, 0, 0.65)!important;
| cursor: default!important;
| }
| .ant-select-disabled {
| color: rgba(0, 0, 0, 0.65)!important;
| .ant-select-selection--multiple .ant-select-selection__choice {
| color: rgba(0, 0, 0, 0.65)!important;
| }
| }
| }
|
|