blob: 8e882a27bcfc04be432fe30f86d32704a539126e (
plain)
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
|
:host{
display: block;
}
.content {
padding: 40px;
min-height: 937px;
height: 100vh;
.title{
font-size: 30px;
color: #3C4F8C;
margin-bottom: 0.5em;
.add{
float: right;
margin-top: 7px;
}
}
.anticon-edit,.anticon-delete,.anticon-menu-fold{
font-size: 18px;
margin-right: 10px;
cursor: pointer;
}
}
.intent-management-modal{
.add-expectation-container:after{
content: '';
display: block;
clear: both;
}
p{
position: relative;
}
.ant-input{
width: 300px;
}
.title{
height: 32px;
line-height: 32px;
margin-bottom: 15px;
.add{
float: right;
}
}
.required{
color: #ff0000;
}
.intent-required{
display: none;
}
.intent-error{
position: absolute;
color: #ff0000;
top: 32px;
left: 110px;
}
.anticon-edit,.anticon-delete,.anticon-menu-fold{
font-size: 18px;
margin-right: 10px;
cursor: pointer;
}
}
.intent-table{
margin-bottom: 15px;
::ng-deep ant-modal-body{
height: 300 !important;
overflow-y: auto !important;
}
}
.target-div{
float: left;
width: 100%;
}
.expectation-p{
position: relative;
float: left;
width: 50%;
.left{
float: left;
width: 40%;
height: 32px;
line-height: 32px;
text-align: right;
padding-right: 2%;
}
.ant-input{
float: left;
width: 58%;
}
.ant-select{
width: 58%;
}
}
.w50{
width: 50%;
}
.condition-type{
float: left;
width: 100%;
[nz-radio] {
display: block;
height: 32px;
line-height: 32px;
margin-left: 15%;
.ant-input{
width: 60%;
}
}
.ant-radio-group{
width: 50%;
}
}
.intent-condition-div{
width: 100%;
float: left;
}
.condition-operator-div{
margin-left: 50px;
}
.container{
display: flex;
align-items: center;
width: 700px;
}
.container angular2-date-picker{
margin-right: 10px;
margin-left: 10px;
}
|